summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-05-14 16:29:40 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-05-14 16:29:40 -0400
commit1042a8202952948e1c8bbc59266f88d67c99db14 (patch)
treeb5fa08c6c050d4900ea4ecdd1cb5b1ea0410688f
parent3a564a0704a075e7b63897354fa630c57e3a354c (diff)
downloadpython-coveragepy-git-1042a8202952948e1c8bbc59266f88d67c99db14.tar.gz
Use check-manifest to check the manifest
-rw-r--r--MANIFEST.in1
-rw-r--r--requirements/dev.pip1
-rw-r--r--tox.ini3
3 files changed, 4 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 462f24ff..447f8ea9 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -22,6 +22,7 @@ include pylintrc
include setup.py
include tox.ini
include tox_wheels.ini
+include .editorconfig
recursive-include ci *.*
exclude ci/appveyor.token
diff --git a/requirements/dev.pip b/requirements/dev.pip
index cf6c40ea..4083ca54 100644
--- a/requirements/dev.pip
+++ b/requirements/dev.pip
@@ -15,6 +15,7 @@ PyContracts==1.8.3
pyenchant==2.0.0
pylint==1.8.4
unittest-mixins==1.4
+check-manifest==0.37
# for kitting.
requests==2.18.4
diff --git a/tox.ini b/tox.ini
index 4cec188b..c471f71d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -81,6 +81,7 @@ setenv =
LINTABLE = coverage tests igor.py setup.py __main__.py
commands =
- python -m pylint --notes= {env:LINTABLE}
python -m tabnanny {env:LINTABLE}
python igor.py check_eol
+ check-manifest --ignore 'lab*,perf*,doc/sample_html*,.treerc'
+ python -m pylint --notes= {env:LINTABLE}