summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2019-08-14 23:45:58 +0300
committerHugo <hugovk@users.noreply.github.com>2019-08-15 12:24:33 +0300
commit81e37c08162124854822581e23ac2cd81fa43d4a (patch)
tree9e5e95e8c3e3725774bf1f48feee1a844ab18335
parent2cec2adf8f54c9eda2a2674f565584aea709ef8a (diff)
downloadoauthlib-81e37c08162124854822581e23ac2cd81fa43d4a.tar.gz
Drop the dot https://twitter.com/pytestdotorg/status/753767547866972160
-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.