diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-16 22:00:50 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-09-16 22:00:50 -0400 |
commit | 6157eb4ecbc2df45d739f4b656eab644ca628694 (patch) | |
tree | 9f70000b24625562f4d1b891c7990d71c2276074 /tests | |
parent | 0da975d03e30166a34bff3a1110ddf2204973db6 (diff) | |
parent | b5ff17dbadb4ae4c7aaa9d35cfdf6ef633a9ccf3 (diff) | |
download | python-coveragepy-git-6157eb4ecbc2df45d739f4b656eab644ca628694.tar.gz |
Automated merge with ssh://bitbucket.org/ned/coveragepy
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_files.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_files.py b/tests/test_files.py index eeb22643..d247a395 100644 --- a/tests/test_files.py +++ b/tests/test_files.py @@ -167,8 +167,10 @@ class FindPythonFilesTest(CoverageTest): self.make_file("sub/ssub/s.py") self.make_file("sub/ssub/~s.py") # nope: editor effluvia self.make_file("sub/lab/exp.py") # nope: no __init__.py + self.make_file("sub/windows.pyw") py_files = set(find_python_files("sub")) self.assert_same_files(py_files, [ "sub/a.py", "sub/b.py", "sub/ssub/__init__.py", "sub/ssub/s.py", + "sub/windows.pyw", ]) |