summaryrefslogtreecommitdiff
path: root/tools/target_test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-09-19 14:48:05 -0400
committerGitHub <noreply@github.com>2019-09-19 14:48:05 -0400
commit56ac638d93c96712d6c624e60dcfa4540d334b18 (patch)
treeb3b5b985cc5be83545d8883207ee614f23627ef8 /tools/target_test.py
parent1b1ae65a4a2acd55ead86c17e388f10a0e08938d (diff)
Remove test.py, use cargo test as test frontend (#2967)
Fixes #2933
Diffstat (limited to 'tools/target_test.py')
-rw-r--r--tools/target_test.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/target_test.py b/tools/target_test.py
index b4cb6996c..724dacdec 100644
--- a/tools/target_test.py
+++ b/tools/target_test.py
@@ -21,13 +21,6 @@ class TestTarget(DenoTestCase):
self.check_exists(bin_file)
run([bin_file], quiet=True)
- def test_cargo_test(self):
- cargo_test = ["cargo", "test", "--all", "--locked"]
- if build_mode() == "release":
- run(cargo_test + ["--release"])
- else:
- run(cargo_test)
-
def test_libdeno(self):
self._test("libdeno_test")