summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/contributing.rst4
-rw-r--r--tox.ini2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst
index 93f6a81..8244afd 100644
--- a/docs/contributing.rst
+++ b/docs/contributing.rst
@@ -144,7 +144,7 @@ the project root via:
.. sourcecode:: bash
- $ py.test
+ $ pytest
The first thing the core committers will do is run this command. Any pull
request that fails this test suite will be **rejected**.
@@ -299,7 +299,7 @@ First we pull the code into a local branch::
Then we run the tests::
- py.test
+ pytest
We finish with a non-fastforward merge (to preserve the branch history) and push
to GitHub::
diff --git a/tox.ini b/tox.ini
index e2731f3..1e325ae 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,7 @@ envlist = py34,py35,py36,py37,pypy,pypy3,docs,readme,bandit
deps=
-rrequirements-test.txt
commands=
- py.test --cov=oauthlib tests/
+ pytest --cov=oauthlib tests/
# tox -e docs to mimick readthedocs build.