-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issue with hypothesis profile discover
- Loading branch information
1 parent
c0c66ce
commit adf2a78
Showing
1 changed file
with
2 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 |
---|---|---|
|
@@ -82,11 +82,11 @@ jobs: | |
if: ${{ !matrix.min-version }} | ||
- name: Run parallel tests | ||
run: | | ||
pytest -m "not serial" --cov=qcodes --cov-report xml --hypothesis-profile ci --durations=20 src | ||
pytest -m "not serial" --cov=qcodes --cov-report xml --hypothesis-profile ci --durations=20 src/qcodes | ||
# a subset of the tests fails when run in parallel on Windows so run those in serial here | ||
- name: Run serial tests | ||
run: | | ||
pytest -m "serial" -n 0 --dist no --cov=qcodes --cov-report xml --cov-append --hypothesis-profile ci src | ||
pytest -m "serial" -n 0 --dist no --cov=qcodes --cov-report xml --cov-append --hypothesis-profile ci src/qcodes | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
|