Remove test.py, use cargo test as test frontend (#2967)

Fixes #2933
This commit is contained in:
Ryan Dahl 2019-09-19 14:48:05 -04:00 committed by GitHub
parent 1b1ae65a4a
commit 56ac638d93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 545 additions and 414 deletions

View file

@ -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")