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
commitead0580703a1eea61623f7edb9009de0fb259c7a (patch)
treea2348336c9aea48974fb47b3014bad633a520bcb /igor.py
parent3bb9b6be85068ffabea5b8b805140e17b6817411 (diff)
downloadpython-coveragepy-git-ead0580703a1eea61623f7edb9009de0fb259c7a.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 c553d417..f9c7ad92 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):