aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/run_tests.py')
-rwxr-xr-xscripts/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run_tests.py b/scripts/run_tests.py
index b9a048b..f839953 100755
--- a/scripts/run_tests.py
+++ b/scripts/run_tests.py
@@ -29,7 +29,7 @@ suites = []
# getting the test suites from the python modules (files that ends whit .py)
for f in os.listdir(tests_dir):
- if not f.endswith('.py'):
+ if not f.endswith('.py') or not f.startswith('test_'):
continue
try:
my_test = __import__(f[:-len('.py')])