feat: mv data folder to root

This commit is contained in:
qixinbo
2026-03-27 15:59:23 +08:00
parent 37070d7896
commit 5d479bed68
18 changed files with 175 additions and 39 deletions
+2 -1
View File
@@ -3,11 +3,12 @@ from pathlib import Path
import pytest
from fastapi.testclient import TestClient
from app.core.data_root import get_data_root
from main import app
def _backend_data_root() -> Path:
return Path(__file__).resolve().parents[1] / "data"
return get_data_root()
def test_download_artifact_within_whitelist() -> None: