diff --git a/.gitignore b/.gitignore index 4222d64..64c4382 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ wheels/ .pytest_cache .coverage coverage.xml +junit/ # venv .venv diff --git a/pyproject.toml b/pyproject.toml index 8813aae..7ef31a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dev-dependencies = [ fmt = "rye fmt" lint = "rye lint --fix" check = "pyright" -test = "rye test -- --cov sadel --cov-report term-missing --cov-report xml:coverage.xml" +test = "rye test -- --cov sadel --cov-report term-missing --cov-report xml:coverage.xml --junitxml=junit/report.xml" all = { chain = ["fmt", "lint", "check", "test"] }