From 91a2d0fc826bd01de83bad4d3a2070b949af076e Mon Sep 17 00:00:00 2001 From: schottenhamml <helen.schottenhamml@fau.de> Date: Tue, 18 Jul 2023 08:54:38 +0200 Subject: [PATCH] Exclude new tests when blitzdb not found. --- conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index e71dff56..ce403a87 100644 --- a/conftest.py +++ b/conftest.py @@ -60,7 +60,9 @@ try: except ImportError: collect_ignore += [os.path.join(SCRIPT_FOLDER, "lbmpy_tests/benchmark"), os.path.join(SCRIPT_FOLDER, - "lbmpy_tests/full_scenarios/kida_vortex_flow/scenario_kida_vortex_flow.py")] + "lbmpy_tests/full_scenarios/kida_vortex_flow/scenario_kida_vortex_flow.py"), + os.path.join(SCRIPT_FOLDER, "lbmpy_tests/full_scenarios/shear_wave/scenario_shear_wave.py"), + os.path.join(SCRIPT_FOLDER, "lbmpy_tests/test_json_serializer.py")] if platform.system().lower() == 'windows': collect_ignore += [os.path.join(SCRIPT_FOLDER, "lbmpy_tests/test_quicktests.py")] -- GitLab