summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-06-11 11:11:12 -0400
committerGitHub <noreply@github.com>2019-06-11 11:11:12 -0400
commit508e9849ffd1491b8f3ac9aaaad507e84f57fed3 (patch)
tree1b5050bc4d40b6e1ac8f692cc96cd2dead07d94e /tools/test.py
parentd82c1991cf0919c312b87501bc588cf17781b32f (diff)
Move TestFmt to end of tests (#2491)
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py
index 262a05f1f..b86471342 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -41,12 +41,13 @@ def main():
TestTarget,
JsUnitTests,
TestFetch,
- TestFmt,
TestIntegrations,
TestRepl,
TestDenoDir,
TestBenchmark,
TestIsTty,
+ # It is very slow, so do TestFmt at the end.
+ TestFmt,
]
test_cases += permission_prompt_tests()
test_cases += complex_permissions_tests()