diff options
Diffstat (limited to 'test/test_files.py')
-rw-r--r-- | test/test_files.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_files.py b/test/test_files.py index 565bbaa4..a00a9680 100644 --- a/test/test_files.py +++ b/test/test_files.py @@ -151,6 +151,7 @@ class FindPythonFilesTest(CoverageTest): self.make_file("sub/x.c") # nope: not .py self.make_file("sub/ssub/__init__.py") 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 py_files = set(find_python_files("sub")) self.assert_same_files(py_files, [ |