From 1fc458b5a3ec002f51bcac58f09ec77493d8c8c0 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 3 Feb 2015 18:32:00 -0500 Subject: [PATCH] Removed a useless check in runtests.py Added in 3e97535907baa7b57c9bf322871ef6243e2045a9, this check appears to never be triggered today. --- tests/runtests.py | 1 - 1 file changed, 1 deletion(-) 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'))):