diff --git a/tests/runtests.py b/tests/runtests.py index 4a908ff10ac6a8d9798b894cf2acec31abe7bed5..391a149733cbf0dfe30ccc046ad79062068076aa 100644 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -39,6 +39,9 @@ def one_test_run(): if not os.path.exists(binary): continue + if os.path.exists(d + "/.no" + backend): + continue + p = run_spectrum(backend, d) if backend.find("purple") >= 0: @@ -62,7 +65,6 @@ def one_test_run(): os.system("killall spectrum 2> /dev/null") -while True: - one_test_run() +one_test_run()