summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-09-05 23:45:55 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-09-06 10:22:15 -0400
commit7784b0e17e2d54fd130e274bdb3aba4a2d1b2e9a (patch)
tree5a593878d2a4820e45e518c46e8cf4179a2c0a97 /tools/test.py
parent59f3fca166e7d3bd3095f9df0f7040defe3239e1 (diff)
Move installer to its own repo.
https://github.com/denoland/deno_install 1. This allows the installer to use a more aggressive CI build matrix with different version of python. 2. Running the installer during tools/test.py artificially inflates our download stats. 3. Running the installer during tools/test.py makes the test script dependent on having an internet connection. 4. Running the installer during tools/test.py introduces a race condition during release - where it tries and fails to download the latest release in build process that should be uploading that release.
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/test.py b/tools/test.py
index c06c9a28b..6e5cb548b 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -4,7 +4,6 @@
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
@@ -52,8 +51,6 @@ 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))