summaryrefslogtreecommitdiff
path: root/tools/integration_tests.py
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2019-08-09 16:33:59 -0700
committerRyan Dahl <ry@tinyclouds.org>2019-08-09 16:33:59 -0700
commit286ee1d8b68b54d39e698f3b78e3ce9e257fa674 (patch)
tree550ee67d44d9a1e920e5010bb7b1551943c008ff /tools/integration_tests.py
parent83d5362f1d7d8589b862de57912135067a8278c7 (diff)
Fix dynamic import base path problem for REPL and eval (#2757)
Diffstat (limited to 'tools/integration_tests.py')
-rwxr-xr-xtools/integration_tests.py1
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')