File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ but here is a simple overview:
211
211
You need to have Python 2.7 and 3.5 available in your system. Now
212
212
running tests is as simple as issuing this command::
213
213
214
- $ python runtox.py -e linting,py27,py35
214
+ $ python3 runtox.py -e linting,py27,py35
215
215
216
216
This command will run tests via the "tox" tool against Python 2.7 and 3.5
217
217
and also perform "lint" coding-style checks. ``runtox.py `` is
@@ -226,11 +226,11 @@ but here is a simple overview:
226
226
To run tests on py27 and pass options to pytest (e.g. enter pdb on failure)
227
227
to pytest you can do::
228
228
229
- $ python runtox.py -e py27 -- --pdb
229
+ $ python3 runtox.py -e py27 -- --pdb
230
230
231
231
or to only run tests in a particular test module on py35::
232
232
233
- $ python runtox.py -e py35 -- testing/test_config.py
233
+ $ python3 runtox.py -e py35 -- testing/test_config.py
234
234
235
235
#. Commit and push once your tests pass and you are happy with your change(s)::
236
236
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ commands=
104
104
make html
105
105
106
106
[testenv:doctesting]
107
- basepython = python3
107
+ basepython = python
108
108
changedir =doc/en
109
109
deps =PyYAML
110
110
commands = py.test -rfsxX {posargs}
You can’t perform that action at this time.
0 commit comments