diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-06-23 22:14:44 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-06-23 22:14:44 -0400 |
commit | 663f44e94c22f8ac889a1d7608e6ab0e3cbf9ad3 (patch) | |
tree | 6105b69d3cd3efa9d6ba37a3878b32aca6cb31ef | |
parent | fcf93e3c5d31da9c8fea5fcb534b8f1bc687587f (diff) | |
download | python-coveragepy-git-663f44e94c22f8ac889a1d7608e6ab0e3cbf9ad3.tar.gz |
Check on the EOL chars in ,cover gold files.
-rw-r--r-- | checkeol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkeol.py b/checkeol.py index 65843eec..68efc2fa 100644 --- a/checkeol.py +++ b/checkeol.py @@ -20,5 +20,5 @@ def check_files(root, patterns): dirs.remove('.svn') check_files("coverage", ["*.py"]) -check_files("test", ["*.py"]) +check_files("test", ["*.py", "*,cover"]) check_file("setup.py") |