diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-01-15 09:19:58 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-15 12:19:58 -0500 |
commit | c870cf40823a4900278f8ddf03489338c169878b (patch) | |
tree | 80c171f7bb36c988f459a4d0ee248a40d3feb34b /tools/integration_tests.py | |
parent | ac6ac5037ff53f4e7b9693aeed24f1e3ef1339ad (diff) |
Add --prefetch flag for deps prefetch without running (#1475)
Diffstat (limited to 'tools/integration_tests.py')
-rwxr-xr-x | tools/integration_tests.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/integration_tests.py b/tools/integration_tests.py index 67c6852d4..86638ce3f 100755 --- a/tools/integration_tests.py +++ b/tools/integration_tests.py @@ -11,10 +11,7 @@ import os import re import sys import subprocess -from util import pattern_match, green_ok, red_failed - -root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) -tests_path = os.path.join(root_path, "tests") +from util import root_path, tests_path, pattern_match, green_ok, red_failed def read_test(file_name): |