From 43c6c1a9f58a8d423a2d55092609e620f9765bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 3 Jun 2019 18:35:55 +0200 Subject: Refactor test infrastructure (#2432) * use subclass of unittest.TestCase for all test cases * allow to run single test file (eg. python tools/integration_tests.py) * test filtering (via --pattern/-p CLI flag) * use common CLI parser for all tests: usage: test.py [-h] [--failfast] [--verbose] [--executable EXECUTABLE] [--release] [--pattern PATTERN] [--build-dir BUILD_DIR] optional arguments: -h, --help show this help message and exit --failfast, -f Stop on first failure --verbose, -v Verbose output --executable EXECUTABLE Use external executable of Deno --release Test against release executable --pattern PATTERN, -p PATTERN Run tests that match provided pattern --build-dir BUILD_DIR Deno build directory * respect NO_COLOR variable --- tools/deno_dir_test.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'tools/deno_dir_test.py') diff --git a/tools/deno_dir_test.py b/tools/deno_dir_test.py index 7133d02d7..052516d0e 100755 --- a/tools/deno_dir_test.py +++ b/tools/deno_dir_test.py @@ -3,10 +3,9 @@ # Check deno dir is created properly # Usage: deno_dir_test.py [path to deno dir] import os -import subprocess -import sys -from util import DenoTestCase, mkdtemp, rmtree, run, test_main +from test_util import DenoTestCase, run_tests +from util import mkdtemp, rmtree, run class TestDenoDir(DenoTestCase): @@ -43,4 +42,4 @@ class TestDenoDir(DenoTestCase): if __name__ == '__main__': - test_main() + run_tests() -- cgit v1.2.3