summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gyptest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gyptest.py b/gyptest.py
index 6e6b41cd..a285fe1f 100644
--- a/gyptest.py
+++ b/gyptest.py
@@ -118,7 +118,7 @@ def find_all_gyptest_files(directory):
if '.svn' in dirs:
dirs.remove('.svn')
result.extend([ os.path.join(root, f) for f in files
- if f.startswith('gyptest') ])
+ if f.startswith('gyptest') and f.endswith('.py') ])
result.sort()
return result