summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-07 11:07:52 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-07 11:07:52 -0400
commit77ca1cf3f5cd5cbf1f2b4635c6d760109b60a77a (patch)
treefd0a2b2a70a293278247f406d6becd27366b986f /igor.py
parent4e312c9f5edfebe0ff6fa96523f5009047cc6e95 (diff)
downloadpython-coveragepy-77ca1cf3f5cd5cbf1f2b4635c6d760109b60a77a.tar.gz
Check more files for purity
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/igor.py b/igor.py
index c553d41..f9c7ad9 100644
--- a/igor.py
+++ b/igor.py
@@ -290,7 +290,8 @@ def do_check_eol():
for dir_name in ignored:
dirs.remove(dir_name)
- check_files("coverage", ["*.py", "*.c"])
+ check_files("coverage", ["*.py"])
+ check_files("coverage/ctracer", ["*.c", "*.h"])
check_files("coverage/htmlfiles", ["*.html", "*.css", "*.js"])
check_file("tests/farm/html/src/bom.py", crlf=False)
check_files("tests", ["*.py"])
@@ -301,8 +302,8 @@ def do_check_eol():
check_file("Makefile")
check_file(".hgignore")
check_file(".travis.yml")
- check_files("doc", ["*.rst"])
- check_files(".", ["*.txt"])
+ check_files(".", ["*.rst", "*.txt"])
+ check_files(".", ["*.pip"])
def print_banner(label):