Renaming test files according to their language (#3407)

This commit is contained in:
mattsmida
2024-05-01 14:28:07 -04:00
committed by GitHub
parent 43ca74549d
commit ef9613e2d6
178 changed files with 171 additions and 169 deletions

View File

@@ -70,7 +70,7 @@ class TestRunner(object):
self._outputq = Queue()
def _find_tests(self):
for test in glob.glob("*.t"):
for test in glob.glob("*.test.sh") + glob.glob("*.test.py") + glob.glob("*.test.cpp"):
if os.access(test, os.X_OK):
# Executables only
if self._is_parallelizable(test):