aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMartin Vilcans <martin@librador.com>2020-02-12 23:00:44 +0100
committerMartin Vilcans <martin@librador.com>2020-02-12 23:07:17 +0100
commita45b649c175c12be9fb6f8b51854cf3076b5e1bc (patch)
tree250c2bec5256068f79102980197cfaa581db118f /bin
parent53d0566d054c59004aba8f2705ba85a30e7776ac (diff)
downloadscreenplain-a45b649c175c12be9fb6f8b51854cf3076b5e1bc.tar.gz
Replace pep8 with pycodestyle, get rid of warnings
pep8 recommended that change
Diffstat (limited to 'bin')
-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