summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-08-26 10:57:14 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-08-26 14:56:42 -0400
commit7ff67017f2153eeed393da670777ff85df2801ca (patch)
tree35c7dbf40c4040e664f26276e224dd4d9cb45c74 /tools/test.py
parenta6f6209f5277f2737bc67efad5c91ab168aff6b5 (diff)
Move TestFmt to the end of tests, because slow
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py4
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)