Skip to content

Commit

Permalink
update paths and globing in run_all
Browse files Browse the repository at this point in the history
  • Loading branch information
felixschurk committed Apr 28, 2024
1 parent d093ce3 commit 6d514ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/run_all
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@ class TestRunner(object):
self._outputq = Queue()

def _find_tests(self):
<<<<<<< HEAD
for test in glob.glob("*.t"):
=======
for test in glob.glob("*.t") + glob.glob("*.t.py"):
>>>>>>> e73f4b821 (update paths and globing in run_all)
if os.access(test, os.X_OK):
# Executables only
if self._is_parallelizable(test):
Expand Down

0 comments on commit 6d514ac

Please sign in to comment.