summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-02-03 18:32:00 -0500
committerTim Graham <timograham@gmail.com>2015-02-03 18:32:00 -0500
commit1fc458b5a3ec002f51bcac58f09ec77493d8c8c0 (patch)
tree2ae71071fc98d175277eb99f3ff8a4ec40b13c87
parentc0cc8f69e7abfa8578729031f97ae4b96c5cdafe (diff)
Removed a useless check in runtests.py
Added in 3e97535907baa7b57c9bf322871ef6243e2045a9, this check appears to never be triggered today.
-rwxr-xr-xtests/runtests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
index e3e118c908..2f9cefc8c5 100755
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -74,7 +74,6 @@ def get_test_modules():
for modpath, dirpath in discovery_paths:
for f in os.listdir(dirpath):
if ('.' in f or
- f.startswith('sql') or
os.path.basename(f) in SUBDIRS_TO_SKIP or
os.path.isfile(f) or
not os.path.exists(os.path.join(dirpath, f, '__init__.py'))):