diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-26 10:57:14 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-26 14:56:42 -0400 |
commit | 7ff67017f2153eeed393da670777ff85df2801ca (patch) | |
tree | 35c7dbf40c4040e664f26276e224dd4d9cb45c74 /tools/test.py | |
parent | a6f6209f5277f2737bc67efad5c91ab168aff6b5 (diff) |
Move TestFmt to the end of tests, because slow
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test.py b/tools/test.py index b86471342..3f8e74ecd 100755 --- a/tools/test.py +++ b/tools/test.py @@ -46,11 +46,11 @@ def main(): TestDenoDir, TestBenchmark, TestIsTty, - # It is very slow, so do TestFmt at the end. - TestFmt, ] test_cases += permission_prompt_tests() test_cases += complex_permissions_tests() + # It is very slow, so do TestFmt at the end. + test_cases += [TestFmt] with http_server.spawn(): run_tests(test_cases) |