From 81e37c08162124854822581e23ac2cd81fa43d4a Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 14 Aug 2019 23:45:58 +0300 Subject: Drop the dot https://twitter.com/pytestdotorg/status/753767547866972160 --- docs/contributing.rst | 4 ++-- tox.ini | 2 +- 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. -- cgit v1.2.1