From ff09af7d62733e4b4d54e0fc9d625dc36d93d918 Mon Sep 17 00:00:00 2001 From: Andrew Szeto Date: Fri, 22 Feb 2019 19:54:56 -0800 Subject: [PATCH] Added one more folder to the pylint ignore --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index fbcf3a3..c090a22 100644 --- a/tox.ini +++ b/tox.ini @@ -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}