summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2016-11-09 20:42:28 -0200
committerBruno Oliveira <nicoddemus@gmail.com>2016-11-09 20:42:28 -0200
commit84d70687237edab585c807fc81836da56a493921 (patch)
tree07ccaf0fa2aae64a3ddeab29f0ef5641b2d8dce3 /CONTRIBUTING.rst
parentfc304b8b44dd87e28e055f20966e19b780661070 (diff)
downloadpytest-84d70687237edab585c807fc81836da56a493921.tar.gz
Add "check-manifest" to linting and remove unused scripts from root
Fix #1
Diffstat (limited to 'CONTRIBUTING.rst')
-rw-r--r--CONTRIBUTING.rst11
1 files changed, 4 insertions, 7 deletions
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index 947d4e655..19b31c7f4 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -199,13 +199,10 @@ but here is a simple overview:
You need to have Python 2.7 and 3.5 available in your system. Now
running tests is as simple as issuing this command::
- $ python3 runtox.py -e linting,py27,py35
+ $ tox -e linting,py27,py35
This command will run tests via the "tox" tool against Python 2.7 and 3.5
- and also perform "lint" coding-style checks. ``runtox.py`` is
- a thin wrapper around ``tox`` which installs from a development package
- index where newer (not yet released to PyPI) versions of dependencies
- (especially ``py``) might be present.
+ and also perform "lint" coding-style checks.
#. You can now edit your local working copy.
@@ -214,11 +211,11 @@ but here is a simple overview:
To run tests on Python 2.7 and pass options to pytest (e.g. enter pdb on
failure) to pytest you can do::
- $ python3 runtox.py -e py27 -- --pdb
+ $ tox -e py27 -- --pdb
Or to only run tests in a particular test module on Python 3.5::
- $ python3 runtox.py -e py35 -- testing/test_config.py
+ $ tox -e py35 -- testing/test_config.py
#. Commit and push once your tests pass and you are happy with your change(s)::