diff options
Diffstat (limited to 'bin/test')
-rwxr-xr-x | bin/test | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ if [[ $(python -V 2>&1) =~ "Python 2" ]] then nosetests --nocapture --with-doctest --doctest-tests -I ^test.py $* && \ - pep8 --ignore=E402 screenplain tests + pycodestyle --ignore=E402,W504 screenplain tests else - python test.py && pep8 --ignore=E402 screenplain tests + python test.py && pycodestyle --ignore=E402,W504 screenplain tests fi |