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

@@ -13,7 +13,7 @@ import sys
def find_tests():
tests = []
for test in glob.glob("*.t") + glob.glob("*.t.exe"):
for test in glob.glob("*.test.sh") + glob.glob("*.test.py"):
if os.access(test, os.X_OK):
# Executables only
tests.append(test)