diff options
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/test.py b/tools/test.py index 9cd2f7a46..c3110c655 100755 --- a/tools/test.py +++ b/tools/test.py @@ -43,8 +43,12 @@ def main(): TestRepl, TestDenoDir, TestBenchmark, - TestIsTty, ] + + # TODO(ry) This test isn't working yet on github actions. + if "GH_ACTIONS" not in os.environ: + test_cases += [TestIsTty] + test_cases += permission_prompt_tests() test_cases += complex_permissions_tests() # It is very slow, so do TestFmt at the end. |