summaryrefslogtreecommitdiffstats
path: root/uitest/test_main.py
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/test_main.py')
-rw-r--r--uitest/test_main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/test_main.py b/uitest/test_main.py
index 934b27790961..bbfb8ad57072 100644
--- a/uitest/test_main.py
+++ b/uitest/test_main.py
@@ -45,9 +45,9 @@ def find_test_files(dir_path):
if not os.path.isfile(file_path):
continue
- # ignore any non .py files
+ # fail on any non .py files
if not os.path.splitext(file_path)[1] == ".py":
- continue
+ raise Exception("file with an extension which is not .py: " + file_path)
# ignore the __init__.py file
# it is obviously not a test file