From b5ff17dbadb4ae4c7aaa9d35cfdf6ef633a9ccf3 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 16 Sep 2013 22:00:44 -0400 Subject: Find .pyw files when searching for source files. --- tests/test_files.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_files.py') 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", ]) -- cgit v1.2.1