From 7ff67017f2153eeed393da670777ff85df2801ca Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 26 Aug 2019 10:57:14 -0400 Subject: [PATCH] Move TestFmt to the end of tests, because slow --- tools/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test.py b/tools/test.py index b864713421..3f8e74ecdc 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)