From 12be70500b0dd24954416ea97945cbab0a712501 Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Thu, 2 Apr 2026 18:13:39 +0200 Subject: [PATCH] fixed bug that caused quman test to fail because the temporary directory is missing work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3093] --- test/test_quman.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_quman.py b/test/test_quman.py index 561fad4..acfbd8a 100644 --- a/test/test_quman.py +++ b/test/test_quman.py @@ -17,6 +17,7 @@ class QumanTestCase(unittest.TestCase): def test_quman(self): logging.info('test_quman') db_path = Path('./quman_test/quman.sqlite') + db_path.parent.mkdir(exist_ok=True) if db_path.exists(): db_path.unlink() db_backend = SqliteDb(db_path)