diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-19 14:48:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-19 14:48:05 -0400 |
commit | 56ac638d93c96712d6c624e60dcfa4540d334b18 (patch) | |
tree | b3b5b985cc5be83545d8883207ee614f23627ef8 /tools/fetch_test.py | |
parent | 1b1ae65a4a2acd55ead86c17e388f10a0e08938d (diff) |
Remove test.py, use cargo test as test frontend (#2967)
Fixes #2933
Diffstat (limited to 'tools/fetch_test.py')
-rwxr-xr-x | tools/fetch_test.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/fetch_test.py b/tools/fetch_test.py index b4bf1836c..e6e5cb6a0 100755 --- a/tools/fetch_test.py +++ b/tools/fetch_test.py @@ -29,5 +29,4 @@ class TestFetch(DenoTestCase): if __name__ == "__main__": - with http_server.spawn(): - run_tests() + run_tests() |