diff options
| author | Ville Skyttä <ville.skytta@iki.fi> | 2018-05-13 13:20:50 +0200 |
|---|---|---|
| committer | Ville Skyttä <ville.skytta@iki.fi> | 2018-05-13 13:20:50 +0200 |
| commit | a2b5921d2d52fcba9d3fd3cc932b081f2d962285 (patch) | |
| tree | 246122b3500fb3934fc73e6bc2ba353792613fe1 | |
| parent | be35dbf136f676d0b8b89f8470ed448ac9966084 (diff) | |
| download | sqlparse-a2b5921d2d52fcba9d3fd3cc932b081f2d962285.tar.gz | |
Use pytest instead of py.test per upstream recommendation, #dropthedot
http://blog.pytest.org/2016/whats-new-in-pytest-30/
https://twitter.com/hashtag/dropthedot
| -rw-r--r-- | CHANGELOG | 4 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | tox.ini | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -363,7 +363,7 @@ Bug Fixes Other * Documentation updates. -* Test suite now uses tox and py.test. +* Test suite now uses tox and pytest. * py3k fixes (by vthriller). * py3k fixes in setup.py (by Florian Bauer). * setup.py now requires distribute (by Florian Bauer). @@ -379,7 +379,7 @@ Bug Fixes * Improve grouping and formatting of concatenated strings (issue53). * Improve handling of varchar() (by Mike Amy). * Clean up handling of various SQL elements. -* Switch to py.test and clean up tests. +* Switch to pytest and clean up tests. * Several minor fixes. Other @@ -13,7 +13,7 @@ test: tox coverage: - py.test --cov=sqlparse --cov-report=html --cov-report=term + pytest --cov=sqlparse --cov-report=html --cov-report=term clean: $(PYTHON) setup.py clean @@ -18,7 +18,7 @@ passenv = TRAVIS commands = sqlformat --version - py.test --cov=sqlparse {posargs} + pytest --cov=sqlparse {posargs} [testenv:flake8] deps = |
