-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pytest-cov to generate coverage reports
- Loading branch information
Showing
3 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,9 +29,9 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.txt | ||
- name: Test with pytest | ||
- name: Test with pytest and generate coverage reports | ||
run: | | ||
python -m pytest | ||
python -m pytest --cov | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,5 +10,6 @@ pyarrow>=15.0.0 | |
pykml>=0.2.0 | ||
pyproj>=3.4.1 | ||
pytest>=7.2.2 | ||
pytest-cov>=4.1.0 | ||
scipy>=1.10.1 | ||
shapely>=2.0.1 |