-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add latest version of mfusg_gsi (v2.1.1). * Update test_request.py::test_latest_assets with latest asset list * Update pymake calls in GH Actions workflows to use working-directory
- Loading branch information
1 parent
a1e06f5
commit 8b8f6eb
Showing
4 changed files
with
23 additions
and
12 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 |
---|---|---|
|
@@ -47,25 +47,29 @@ jobs: | |
- name: test on Linux | ||
if: runner.os == 'Linux' | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -n=auto --dist=loadfile -m="base or regression" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -n=auto --dist=loadfile -m="base or regression" --durations=0 --cov=pymake --cov-report=xml | ||
- name: test on MacOS | ||
if: runner.os == 'macOS' | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -n=auto --dist=loadfile -m="base" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -n=auto --dist=loadfile -m="base" --durations=0 --cov=pymake --cov-report=xml | ||
- name: test on Windows | ||
if: runner.os == 'Windows' | ||
working-directory: ./autotest | ||
shell: cmd | ||
run: | | ||
pytest -v -m="base" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -m="base" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml |
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 |
---|---|---|
|
@@ -46,17 +46,19 @@ jobs: | |
.github/common/download-examples.sh | ||
- name: Run pytest | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v --dist=loadfile -n=auto -m="base or regression" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v --dist=loadfile -n=auto -m="base or regression" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml | ||
|
||
pymakeCI-gcc-prev: | ||
name: pymake CI GCC 9 and 8 | ||
|
@@ -102,17 +104,19 @@ jobs: | |
.github/common/download-examples.sh | ||
- name: Run pytest | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v --dist=loadfile -n=auto -m="base" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v --dist=loadfile -n=auto -m="base" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml | ||
|
||
pymakeCI-python-prev: | ||
name: pymake CI with previous python versions | ||
|
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 |
---|---|---|
|
@@ -31,19 +31,22 @@ jobs: | |
.github/common/install-python.sh | ||
- name: Run pytest | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -n=auto -m requests --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -n=auto -m requests --durations=0 --cov=pymake --cov-report=xml | ||
- name: Run scheduled tests | ||
if: ${{ github.event_name == 'schedule' }} | ||
working-directory: ./autotest | ||
run: | | ||
pytest -v -m="schedule" --durations=0 --cov=pymake --cov-report=xml autotest/ | ||
pytest -v -m="schedule" --durations=0 --cov=pymake --cov-report=xml | ||
- name: Print coverage report before upload | ||
working-directory: ./autotest | ||
run: | | ||
coverage report | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.xml | ||
file: ./autotest/coverage.xml |
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