From 00f27770a2857013f342093ca8e571c4b0119b9c Mon Sep 17 00:00:00 2001
From: schottenhamml <helen.schottenhamml@fau.de>
Date: Tue, 18 Jul 2023 09:27:20 +0200
Subject: [PATCH] Also exclude database file if blitzdb not found.

---
 conftest.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/conftest.py b/conftest.py
index ce403a87..ebd72bdc 100644
--- a/conftest.py
+++ b/conftest.py
@@ -62,7 +62,8 @@ except ImportError:
                        os.path.join(SCRIPT_FOLDER,
                                     "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")]
+                       os.path.join(SCRIPT_FOLDER, "lbmpy_tests/test_json_serializer.py"),
+                       os.path.join(SCRIPT_FOLDER, "lbmpy/db.py")]
 
 if platform.system().lower() == 'windows':
     collect_ignore += [os.path.join(SCRIPT_FOLDER, "lbmpy_tests/test_quicktests.py")]
-- 
GitLab