##// END OF EJS Templates
run-tests: filter out non-tests from default list
Matt Mackall -
r19240:b4ecdc45 default
parent child Browse files
Show More
@@ -1244,7 +1244,9 b' def main():'
1244 1244 checktools()
1245 1245
1246 1246 if len(args) == 0:
1247 args = sorted(os.listdir("."))
1247 args = sorted(t for t in os.listdir(".")
1248 if t.startswith("test-")
1249 and (t.endswith(".py") or t.endswith(".t")))
1248 1250
1249 1251 tests = args
1250 1252
General Comments 0
You need to be logged in to leave comments. Login now