diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-08-09 16:33:59 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-09 16:33:59 -0700 |
commit | 286ee1d8b68b54d39e698f3b78e3ce9e257fa674 (patch) | |
tree | 550ee67d44d9a1e920e5010bb7b1551943c008ff /tools/integration_tests.py | |
parent | 83d5362f1d7d8589b862de57912135067a8278c7 (diff) |
Fix dynamic import base path problem for REPL and eval (#2757)
Diffstat (limited to 'tools/integration_tests.py')
-rwxr-xr-x | tools/integration_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/integration_tests.py b/tools/integration_tests.py index 56f430d76..dd65feaf9 100755 --- a/tools/integration_tests.py +++ b/tools/integration_tests.py @@ -60,6 +60,7 @@ class TestIntegrations(DenoTestCase): if not args: return + # TODO(kevinkassimo): better args parsing with quotation marks. args = args.split(" ") check_stderr = str2bool(test.get("check_stderr", "false")) stderr = subprocess.STDOUT if check_stderr else open(os.devnull, 'w') |