summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorMirko Jotic <joticmirko@gmail.com>2018-08-31 20:55:04 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-31 20:55:04 -0400
commit3d063223cc373beeaee41f64ac4c74555246ab89 (patch)
treeb42766926b4fc212486c7d6d4f23045616b136f2 /tools/test.py
parent9b7e5a25583c7b286d0655870c937c3a31921f0a (diff)
Add release installer (#639)
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py
index 6e5cb548b..c06c9a28b 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -4,6 +4,7 @@
import os
import sys
from check_output_test import check_output_test
+import install_test
from util import executable_suffix, run, build_path
from unit_tests import unit_tests
from util_test import util_test
@@ -51,6 +52,8 @@ def main(argv):
check_exists(deno_ns_exe)
check_output_test(deno_ns_exe)
+ install_test.main()
+
if __name__ == '__main__':
sys.exit(main(sys.argv))