summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xruntest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtest.py b/runtest.py
index f9a99dd..b7cbdc6 100755
--- a/runtest.py
+++ b/runtest.py
@@ -706,10 +706,10 @@ else:
for tp in testpaths:
for path in glob.glob(tp):
if os.path.isdir(path):
- if path.endswith('src'):
+ if path.startswith('src'):
for p in find_Tests_py(path):
unittests.append(p)
- elif path.endswith('test'):
+ elif path.startswith('test'):
for p in find_py(path):
endtests.append(p)
else: