commit | 40c6d4051214c13e0c0640b55edadb0e5aa0ea0c | [log] [tgz] |
---|---|---|
author | Ville Skyttä <ville.skytta@iki.fi> | Sun May 13 16:23:49 2018 +0200 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Sun May 13 10:23:49 2018 -0400 |
tree | 375b800973d4585a1f6c201540bcb1cfafdd9fe5 | |
parent | 7548c63b5e70ed1b2e3e85cb56bb579441545048 [diff] |
Use pytest instead of py.test per upstream recommendation, #dropthedot (#4236) http://blog.pytest.org/2016/whats-new-in-pytest-30/ https://twitter.com/hashtag/dropthedot
diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst index 96b4b6d..953ae95 100644 --- a/docs/development/getting-started.rst +++ b/docs/development/getting-started.rst
@@ -61,7 +61,7 @@ .. code-block:: console - $ py.test + $ pytest ... 62746 passed in 220.43 seconds
diff --git a/tox.ini b/tox.ini index a1e97c5..86d23aa 100644 --- a/tox.ini +++ b/tox.ini
@@ -74,7 +74,7 @@ {[testenv]deps} pytest-random commands = - py.test --capture=no --strict --random {posargs} + pytest --capture=no --strict --random {posargs} [flake8] exclude = .tox,*.egg,.git,_build,.hypothesis