Alpha stage commit

This commit is contained in:
2026-07-01 23:29:51 +02:00
parent b583bb1233
commit e23387738b
84 changed files with 40807 additions and 326 deletions

13
tests/conftest.py Normal file
View File

@@ -0,0 +1,13 @@
from __future__ import annotations
import os
import shutil
from pathlib import Path
TEST_DATA_DIR = Path("./data/test-runtime")
shutil.rmtree(TEST_DATA_DIR, ignore_errors=True)
os.environ["QUEUE_WORKER_AUTOSTART"] = "false"
os.environ["DATA_DIR"] = str(TEST_DATA_DIR)
os.environ["DATABASE_URL"] = f"sqlite:///{TEST_DATA_DIR / 'test_workbench.sqlite'}"