-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pytest ./src -s --cov=./src --cov-report=xml src/
- Loading branch information
Showing
1 changed file
with
1 addition
and
6 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 |
---|---|---|
|
@@ -38,12 +38,7 @@ jobs: | |
- name: Test and generate coverage report | ||
run: | | ||
# exlude anything that requires large data (it is not included in PyPi) | ||
# pytest --cov=./tests --cov-report=xml --ignore=tests/test_gen_example_notebook.py | ||
# need to specify tests/ folder because now we have a | ||
# MapManagerCore folder which has its own tests/ | ||
pytest ./src -s --cov=./src --cov-report=xml src/ | ||
# pytest tests/interface/test_app_tmp.py | ||
pytest ./src/pymapmanager -s --cov=./src/pymapmanager --cov-report=xml src/pymapmanager | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
|