We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b4cd44 commit 0b9f847Copy full SHA for 0b9f847
.github/workflows/validate.yml
@@ -47,4 +47,4 @@ jobs:
47
uses: codecov/test-results-action@v1
48
with:
49
token: ${{ secrets.CODECOV_TOKEN }}
50
- directory: ./build/coverage
+ directory: ./build/test-results
Makefile
@@ -27,7 +27,7 @@ test: install
27
@( \
28
source $(PROJECT_VENV)/bin/activate; \
29
python -m pip install ".[dev]"; \
30
- coverage run -m pytest -v --junitxml=build/junit.xml -o junit_family=legacy && coverage report && coverage xml && coverage html; \
+ coverage run -m pytest -v --junitxml=build/test-results/junit.xml -o junit_family=legacy && coverage report && coverage xml && coverage html; \
31
)
32
33
docs: install
0 commit comments