Skip to content

Commit 54a6515

Browse files
committed
Use pyflakes instead of pylint.
1 parent 73a6bcc commit 54a6515

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

test.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,11 @@ fi
1818

1919
# travis.yml should install FindSim
2020
$PYTHON -m pip install Jinja2 --upgrade
21-
$PYTHON -m pip install pylint --upgrade
21+
$PYTHON -m pip install pyflakes --upgrade
2222
# $PYTHON -m pip install mpld3
2323
# $PYTHON -m pip install pymoose --pre --upgrade
2424

25-
find . -type f -name "*.py" | xargs -I file $PYTHON -m pylint \
26-
--disable=no-member \
27-
--exit-zero \
28-
-E file
25+
find . -type f -name "*.py" | xargs -I file $PYTHON -m pyflakes file
2926

3027
# Run it in ./TestTSV directory.
3128
for _tsv in $(find ./TestTSV -name *.tsv -type f); do

0 commit comments

Comments
 (0)