Merge pull request #358 from jabagawee/patch-4

Added one more folder to the pylint ignore
This commit is contained in:
Arun Prakash Jana 2019-02-23 05:25:26 +00:00 committed by GitHub
commit 554f0853d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,5 +31,5 @@ commands =
pip install -r requirements.txt
python -m flake8
pylint --rcfile tests/.pylintrc buku
find . -iname "*.py" -not -path "./.tox/*" -exec pylint --rcfile tests/.pylintrc \{\} +
find . -iname "*.py" -not -path "./.tox/*" -not -path "./build/*" -exec pylint --rcfile tests/.pylintrc \{\} +
pytest --cov buku -vv {posargs}