File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,13 @@ envlist = prospector,
77 pypy
88
99[testenv]
10- # for any python, run simple pytest
11- # with pep8 and pyflakes checking
10+ # for any python, run simple pytest (only)
1211deps = pytest
13- pytest-pep8
14- pytest-flakes
1512
1613setenv = PYTHONIOENCODING =utf-8
1714
1815commands = {envbindir}/py.test \
19- -rs --strict --pep8 --flakes \
16+ -rs --strict \
2017 wcwidth/tests {posargs}
2118# for most python, also compare our combining
2219 {toxinidir}/bin/wcwidth-combining-comparator.py
@@ -38,25 +35,23 @@ commands = prospector -t vulture \
3835[testenv:py26]
3936# python2.6 doesn't support/match all of our combining table
4037commands = {envbindir}/py.test \
41- -rs --strict --pep8 --flakes \
38+ -rs --strict \
4239 wcwidth/tests {posargs}
4340
4441[testenv:pypy]
4542# pypy doesn't support/match all of our combining table
4643commands = {envbindir}/py.test \
47- -rs --strict --pep8 --flakes \
44+ -rs --strict \
4845 wcwidth/tests {posargs}
4946
5047[testenv:py34]
5148# for python34, measure coverage
5249usedevelop = True
5350deps = pytest
5451 pytest-cov
55- pytest-pep8
56- pytest-flakes
5752
5853commands = {envbindir}/py.test -v \
59- -x --strict --pep8 --flakes \
54+ -x --strict \
6055 --cov wcwidth {posargs}
6156 coverage report -m
6257
You can’t perform that action at this time.
0 commit comments