Skip to content

Commit 4d8766e

Browse files
authored
Merge pull request andialbrecht#406 from scop/master
Use pytest instead of py.test per upstream recommendation, #dropthedot
2 parents be35dbf + a2b5921 commit 4d8766e

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ Bug Fixes
363363
Other
364364

365365
* Documentation updates.
366-
* Test suite now uses tox and py.test.
366+
* Test suite now uses tox and pytest.
367367
* py3k fixes (by vthriller).
368368
* py3k fixes in setup.py (by Florian Bauer).
369369
* setup.py now requires distribute (by Florian Bauer).
@@ -379,7 +379,7 @@ Bug Fixes
379379
* Improve grouping and formatting of concatenated strings (issue53).
380380
* Improve handling of varchar() (by Mike Amy).
381381
* Clean up handling of various SQL elements.
382-
* Switch to py.test and clean up tests.
382+
* Switch to pytest and clean up tests.
383383
* Several minor fixes.
384384

385385
Other

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test:
1313
tox
1414

1515
coverage:
16-
py.test --cov=sqlparse --cov-report=html --cov-report=term
16+
pytest --cov=sqlparse --cov-report=html --cov-report=term
1717

1818
clean:
1919
$(PYTHON) setup.py clean

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ passenv =
1818
TRAVIS
1919
commands =
2020
sqlformat --version
21-
py.test --cov=sqlparse {posargs}
21+
pytest --cov=sqlparse {posargs}
2222

2323
[testenv:flake8]
2424
deps =

0 commit comments

Comments
 (0)