Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit b8ae624

Browse files
committed
ci: use same coverage/test result filenames as other repos
1 parent 88ced51 commit b8ae624

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export CODECOV_TOKEN=${CODECOV_UPLOAD_TOKEN}
66
.ONESHELL:
77

88
test:
9-
docker compose exec shared uv run pytest --cov=./
9+
docker compose exec shared uv run pytest --cov-report=xml:unit.coverage.xml --junitxml=unit.junit.xml -o junit_family=legacy
1010

1111
test.path:
1212
docker compose exec shared uv run pytest $(TEST_PATH)
@@ -43,7 +43,7 @@ test_env.up:
4343
docker compose up -d
4444

4545
test_env.test:
46-
docker compose exec shared uv run pytest --cov=./ --junitxml=junit.xml
46+
docker compose exec shared uv run pytest --cov-report=xml:unit.coverage.xml --junitxml=unit.junit.xml -o junit_family=legacy
4747

4848
test_env.down:
49-
docker compose down
49+
docker compose down

0 commit comments

Comments
 (0)