Skip to content

Commit 5acb2c7

Browse files
committed
Update CI
1 parent aa657c5 commit 5acb2c7

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ jobs:
4141
run: pip install ".[dev]" pytest pytest-cov
4242

4343
- name: Run tests with coverage
44-
run: pytest
44+
run: |
45+
pytest
46+
--cov ./tests
47+
--cov-report=xml
48+
--cov-report=term-missing:skip-covered
4549
4650
- name: Upload coverage to Codecov
4751
uses: codecov/codecov-action@v4

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,5 @@ addopts = [
7070
"--maxfail=1",
7171
"--disable-warnings",
7272
"--cov=biped_walking_controller",
73-
"--cov-report=term-missing:skip-covered",
7473
"--cov-report=xml",
7574
]

0 commit comments

Comments
 (0)