We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20d936d commit d68bfa7Copy full SHA for d68bfa7
2 files changed
{{cookiecutter.project_name}}/.github/workflows/test.yaml
@@ -58,6 +58,6 @@ jobs:
58
DISPLAY: :42
59
run: uvx hatch test --cover --python ${{ matrix.python }} --include deps=${{ matrix.deps }}
60
- name: generate coverage report
61
- run: uvx hatch run hatch-test.py${{ matrix.python }}:coverage xml
+ run: uvx hatch run hatch-test.py${{ matrix.python }}-${{ matrix.deps }}:coverage xml
62
- name: Upload coverage
63
uses: codecov/codecov-action@v4
{{cookiecutter.project_name}}/pyproject.toml
@@ -77,7 +77,7 @@ features = [ "test" ]
77
78
[[tool.hatch.envs.hatch-test.matrix]]
79
deps = [ "stable", "pre" ]
80
-python = ["3.10", "3.13"]
+python = [ "3.10", "3.13" ]
81
82
[tool.hatch.envs.hatch-test.overrides]
83
matrix.deps.env-vars = [
0 commit comments