We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa657c5 commit 5acb2c7Copy full SHA for 5acb2c7
2 files changed
.github/workflows/build.yml
@@ -41,7 +41,11 @@ jobs:
41
run: pip install ".[dev]" pytest pytest-cov
42
43
- name: Run tests with coverage
44
- run: pytest
+ run: |
45
+ pytest
46
+ --cov ./tests
47
+ --cov-report=xml
48
+ --cov-report=term-missing:skip-covered
49
50
- name: Upload coverage to Codecov
51
uses: codecov/codecov-action@v4
pyproject.toml
@@ -70,6 +70,5 @@ addopts = [
70
"--maxfail=1",
71
"--disable-warnings",
72
"--cov=biped_walking_controller",
73
- "--cov-report=term-missing:skip-covered",
74
"--cov-report=xml",
75
]
0 commit comments