Skip to content

Commit 43ab7e4

Browse files
committed
report pytest coverage in terminal output
1 parent c9589a0 commit 43ab7e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test_helper.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,19 +197,19 @@ jobs:
197197
- name: dcpy main pytests
198198
run: |
199199
docker exec -u 0 de \
200-
python3 -m pytest dcpy/test --ignore dcpy/test/library -svv --cov-config=pyproject.toml --cov=dcpy --cov-report=xml
200+
python3 -m pytest dcpy/test --ignore dcpy/test/library -svv --cov-config=pyproject.toml --cov=dcpy --cov-report=term --cov-report=xml
201201
202202
# separate because of issues w/ gdal and pyarrow
203203
# errors occur when writing/reading parquet files after importing gdal
204204
- name: dcpy library pytests
205205
run: |
206206
docker exec -u 0 de \
207-
python3 -m pytest dcpy/test/library -svv --cov-config=pyproject.toml --cov=dcpy --cov-report=xml --cov-append
207+
python3 -m pytest dcpy/test/library -svv --cov-config=pyproject.toml --cov=dcpy --cov-report=term --cov-report=xml --cov-append
208208
209209
- name: dcpy integration pytests
210210
run: |
211211
docker exec -u 0 de \
212-
python3 -m pytest dcpy/test_integration -svv --cov-config=pyproject.toml --cov=dcpy --cov-report=xml --cov-append
212+
python3 -m pytest dcpy/test_integration -svv --cov-config=pyproject.toml --cov=dcpy --cov-report=term --cov-report=xml --cov-append
213213
214214
- name: Upload dcpy test coverage to Codecov
215215
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)