-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only upload test coverage for aiida-workgraph
- Loading branch information
1 parent
a464882
commit f8e772d
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -102,9 +102,9 @@ jobs: | |
AIIDA_WARN_v3: 1 | ||
run: | | ||
# Have to split tests into see issue #225 | ||
pytest -m "not frontend and not backend" -v --cov --durations=0 | ||
pytest -m backend -v --cov-append --durations=0 | ||
pytest -m frontend -v --cov-append --durations=0 | ||
pytest -m "not frontend and not backend" -v --cov=aiida_workgraph --durations=0 | ||
pytest -m backend -v --cov=aiida_workgraph --cov-append --durations=0 | ||
pytest -m frontend -v --cov=aiida_workgraph --cov-append --durations=0 | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
|