From 56ac638d93c96712d6c624e60dcfa4540d334b18 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 19 Sep 2019 14:48:05 -0400 Subject: Remove test.py, use cargo test as test frontend (#2967) Fixes #2933 --- tools/target_test.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'tools/target_test.py') 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") -- cgit v1.2.3