summaryrefslogtreecommitdiff
path: root/tools/util.py
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2019-01-15 09:19:58 -0800
committerRyan Dahl <ry@tinyclouds.org>2019-01-15 12:19:58 -0500
commitc870cf40823a4900278f8ddf03489338c169878b (patch)
tree80c171f7bb36c988f459a4d0ee248a40d3feb34b /tools/util.py
parentac6ac5037ff53f4e7b9693aeed24f1e3ef1339ad (diff)
Add --prefetch flag for deps prefetch without running (#1475)
Diffstat (limited to 'tools/util.py')
-rw-r--r--tools/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/util.py b/tools/util.py
index 368294f45..a7370950b 100644
--- a/tools/util.py
+++ b/tools/util.py
@@ -12,6 +12,7 @@ FG_GREEN = "\x1b[32m"
executable_suffix = ".exe" if os.name == "nt" else ""
root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
+tests_path = os.path.join(root_path, "tests")
def make_env(merge_env=None, env=None):