aboutsummaryrefslogtreecommitdiffstats
path: root/bin/test
diff options
context:
space:
mode:
Diffstat (limited to 'bin/test')
-rwxr-xr-xbin/test4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/test b/bin/test
index 025248e..4ffcb17 100755
--- a/bin/test
+++ b/bin/test
@@ -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