Skip to content

Commit f2ae915

Browse files
committed
leave pep8/flakes to prospector, only
1 parent d12182e commit f2ae915

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

tox.ini

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff 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)
1211
deps = pytest
13-
pytest-pep8
14-
pytest-flakes
1512

1613
setenv = PYTHONIOENCODING=utf-8
1714

1815
commands = {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
4037
commands = {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
4643
commands = {envbindir}/py.test \
47-
-rs --strict --pep8 --flakes \
44+
-rs --strict \
4845
wcwidth/tests {posargs}
4946

5047
[testenv:py34]
5148
# for python34, measure coverage
5249
usedevelop = True
5350
deps = pytest
5451
pytest-cov
55-
pytest-pep8
56-
pytest-flakes
5752

5853
commands = {envbindir}/py.test -v \
59-
-x --strict --pep8 --flakes \
54+
-x --strict \
6055
--cov wcwidth {posargs}
6156
coverage report -m
6257

0 commit comments

Comments
 (0)