diff options
-rw-r--r-- | test/import.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/import.py b/test/import.py index ff15e16..5bb4fcd 100644 --- a/test/import.py +++ b/test/import.py @@ -81,6 +81,9 @@ ignore = ('__init__.py', tools = [] for name in os.listdir(tooldir): if name in ignore: continue + if name[0] == '#': continue + if name[0:1] == '.': continue + if name[-1] == '~' : continue if name[-3:] == '.py': if name[-8:] not in ('Tests.py', 'ommon.py'): tools.append(name[:-3]) |