Skip to content

Commit

Permalink
Ignore flake8 warning on unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
balasankarc committed Jul 12, 2016
1 parent 7a8733b commit 32f793d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions Makefile
@@ -1,10 +1,7 @@
travis:
python setup.py test --coverage \
--coverage-package-name=libindic.stemmer
flake8 --max-complexity 10 libindic/stemmer
python setup.py test --coverage \
--coverage-package-name=libindic.inflector
flake8 --max-complexity 10 libindic/inflector
--coverage-package-name=stemmer
flake8 --max-complexity 10 --ignore F401 libindic/stemmer

clean:
find . -iname "*.pyc" -exec rm -vf {} \;
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -17,4 +17,4 @@ deps=
-rrequirements.txt
-rtest-requirements.txt
commands=
flake8 libindic
flake8 --ignore F401 libindic

0 comments on commit 32f793d

Please sign in to comment.