summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-07-04 18:44:48 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-07-04 18:44:48 -0400
commitb7db905248b0149445791ca8afebec0749ff9589 (patch)
treead9afb8a6ff9511f295e625884a3ff98502a475c
parent7f561024b27fcbd91a4de6a4445535ea14938c51 (diff)
downloadpython-coveragepy-git-b7db905248b0149445791ca8afebec0749ff9589.tar.gz
Fix some checking configurations
-rw-r--r--igor.py1
-rw-r--r--tox.ini2
2 files changed, 2 insertions, 1 deletions
diff --git a/igor.py b/igor.py
index a742cb8e..3d51e576 100644
--- a/igor.py
+++ b/igor.py
@@ -254,6 +254,7 @@ def do_check_eol():
'*.egg-info',
'_build',
'_spell',
+ 'tmp',
]
checked = set()
diff --git a/tox.ini b/tox.ini
index fbdc2132..e84341d9 100644
--- a/tox.ini
+++ b/tox.ini
@@ -79,7 +79,7 @@ setenv =
commands =
python -m tabnanny {env:LINTABLE}
python igor.py check_eol
- check-manifest --ignore 'lab*,perf*,doc/sample_html*,.treerc,.github*'
+ check-manifest --ignore 'lab/*,perf/*,doc/sample_html/*,.treerc,.github*'
python setup.py -q sdist bdist_wheel
twine check dist/*
python -m pylint --notes= -j 4 {env:LINTABLE}