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
commit2a412171f8474da8d44ba009dc70382ff6a57814 (patch)
tree18d700d560a5de71bca26b3c3cee2d22f80d54ef
parent6867ca287a3c9ece6ccf63077ff39b75da7c1807 (diff)
downloadpython-coveragepy-2a412171f8474da8d44ba009dc70382ff6a57814.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 462f24f..447f8ea 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 cf6c40e..4083ca5 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 4cec188..c471f71 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}