From 77ca1cf3f5cd5cbf1f2b4635c6d760109b60a77a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 7 Sep 2015 11:07:52 -0400 Subject: Check more files for purity --- igor.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'igor.py') 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): -- cgit v1.2.1