From 508e9849ffd1491b8f3ac9aaaad507e84f57fed3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 11 Jun 2019 11:11:12 -0400 Subject: [PATCH] Move TestFmt to end of tests (#2491) --- tools/test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index 262a05f1fc..b864713421 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()