Skip to content

Commit

Permalink
coverage: log missing lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ebonnal committed Jan 6, 2025
1 parent 0ec84c7 commit ca18f96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
coverage run -m unittest
- name: Generate coverage report
run: coverage report --fail-under=100 # Adjust minimum coverage threshold as needed
run: coverage report -m --fail-under=100 # Adjust minimum coverage threshold as needed

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ venv:

test:
$(VENV_DIR)/bin/python -m coverage run -m unittest --failfast
$(VENV_DIR)/bin/coverage report
$(VENV_DIR)/bin/coverage report -m
$(VENV_DIR)/bin/coverage html

type-check:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

***Pythonic Stream-like manipulation of iterables***

[![codecov](https://codecov.io/gh/ebonnal/streamable/graph/badge.svg?token=S62T0JQK9N)](https://codecov.io/gh/ebonnal/streamable)
[![coverage](https://codecov.io/gh/ebonnal/streamable/graph/badge.svg?token=S62T0JQK9N)](https://codecov.io/gh/ebonnal/streamable)
[![unittest](https://github.com/ebonnal/streamable/actions/workflows/unittest.yml/badge.svg?branch=main)](https://github.com/ebonnal/streamable/actions)
[![typing](https://github.com/ebonnal/streamable/actions/workflows/typing.yml/badge.svg?branch=main)](https://github.com/ebonnal/streamable/actions)
[![lint](https://github.com/ebonnal/streamable/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/ebonnal/streamable/actions)
Expand Down

0 comments on commit ca18f96

Please sign in to comment.