-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from FarBo/update_ci
fix
- Loading branch information
Showing
3 changed files
with
5 additions
and
143 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
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 |
---|---|---|
|
@@ -37,7 +37,7 @@ jobs: | |
|
||
- name: download requirements | ||
run: | | ||
curl https://raw.githubusercontent.com/QCoDeS/Qcodes/master/environment.yml > environment.yml | ||
curl https://raw.githubusercontent.com/QCoDeS/Qcodes/master/requirements.txt > requirements.txt | ||
curl https://raw.githubusercontent.com/QCoDeS/Qcodes/master/test_requirements.txt > test_requirements.txt | ||
curl https://raw.githubusercontent.com/QCoDeS/Qcodes/master/docs_requirements.txt > docs_requirements.txt | ||
|
@@ -57,14 +57,14 @@ jobs: | |
- name: install test_requirements.txt | ||
run: | | ||
pip install -r test_requirements.txt | ||
- name: install qcodes | ||
- name: install package | ||
run: | | ||
pip install . | ||
- name: Run Mypy | ||
run: mypy qcodes | ||
run: mypy qcodes_contrib_drivers | ||
- name: Run tests | ||
run: | | ||
pytest --cov=qcodes --cov-report xml --cov-config=setup.cfg --hypothesis-profile ci qcodes | ||
pytest --cov=qcodes_contrib_drivers --cov-report xml --cov-config=setup.cfg qcodes_contrib_drivers | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
|
This file was deleted.
Oops, something went wrong.