summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.rst
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2017-03-16 22:20:38 -0300
committerBruno Oliveira <nicoddemus@gmail.com>2017-03-16 22:20:38 -0300
commit7684b3af7b33fc02887d608029b1000b1ac286af (patch)
treeaf8db1d61e24f380237c2c1bf5eafe6c54176f0d /CONTRIBUTING.rst
parent5482dfe0f3cf313e69c83cdd21f661a8c05a64ac (diff)
downloadpytest-7684b3af7b33fc02887d608029b1000b1ac286af.tar.gz
Recommend using py36 for testing on CONTRIBUTING
Diffstat (limited to 'CONTRIBUTING.rst')
-rw-r--r--CONTRIBUTING.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index 71dc04d91..edf71dad7 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -206,12 +206,12 @@ but here is a simple overview:
#. Run all the tests
- You need to have Python 2.7 and 3.5 available in your system. Now
+ You need to have Python 2.7 and 3.6 available in your system. Now
running tests is as simple as issuing this command::
- $ tox -e linting,py27,py35
+ $ tox -e linting,py27,py36
- This command will run tests via the "tox" tool against Python 2.7 and 3.5
+ This command will run tests via the "tox" tool against Python 2.7 and 3.6
and also perform "lint" coding-style checks.
#. You can now edit your local working copy.
@@ -223,9 +223,9 @@ but here is a simple overview:
$ tox -e py27 -- --pdb
- Or to only run tests in a particular test module on Python 3.5::
+ Or to only run tests in a particular test module on Python 3.6::
- $ tox -e py35 -- testing/test_config.py
+ $ tox -e py36 -- testing/test_config.py
#. Commit and push once your tests pass and you are happy with your change(s)::