started tests

This commit is contained in:
John Lancaster
2026-02-21 09:32:15 -06:00
parent 8e45257744
commit b8d7478f2b
6 changed files with 584 additions and 8 deletions

View File

@@ -20,8 +20,20 @@ build-backend = "uv_build"
dev = [
"ipykernel>=7.2.0",
"pre-commit>=4.5.1",
"rich>=14.3.3",
"ruff>=0.15.2",
]
test = [
"pytest>=9.0.2",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--strict-config",
]