From b193b13ca1a08d553992e2368318127569f91dd0 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 19 Feb 2019 01:22:17 +0800 Subject: [PATCH] fix unittest invokation --- extended-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extended-tests.py b/extended-tests.py index 039d2e7..10d039e 100644 --- a/extended-tests.py +++ b/extended-tests.py @@ -31,4 +31,4 @@ with open(hydra_log, "w") as log: "ARTIQ_LOW_LATENCY": "1" } env.update(os.environ) - run("python", "-m", "unittest", "-v", "artiq.test.coredevice", env=env) + run("python", "-m", "unittest", "discover", "-v", "artiq.test.coredevice", env=env)