We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1477671 commit 0e3da12Copy full SHA for 0e3da12
Makefile
@@ -45,7 +45,7 @@ pytest_lite:
45
46
pylint:
47
pylint --disable=C allensdk > htmlcov/pylint.txt || exit 0
48
- grep import-error htmlcov/pylint.txt > htmlcov/pylint_imports.txt
+ egrep '(import-error)|(Unable to import)|(Undefined variable)' htmlcov/pylint.txt > htmlcov/pylint_imports.txt
49
50
flake8:
51
flake8 --ignore=E201,E202,E226 --max-line-length=200 allensdk | grep -v "local variable '_' is assigned to but never used" > htmlcov/flake8.txt
0 commit comments