refactor: organize tests into unit/ and integration/ directories

Move unit tests from tests/ to tests/unit/ for clearer separation
from integration tests. Update pyproject.toml testpaths and Makefile
test target to reflect the new structure.
This commit is contained in:
2025-12-30 17:38:46 -05:00
parent c57e71b92a
commit e235e998e4
11 changed files with 2 additions and 2 deletions

View File

@@ -25,4 +25,4 @@ build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
testpaths = ["tests/unit", "tests/integration"]