[pre-commit.ci] pre-commit autoupdate #436
Workflow file for this run
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
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
py_ver: ["3.8", "3.9", "3.10", "3.11"] | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.py_ver }} | |
steps: | |
- uses: actions/checkout@master | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
channels: conda-forge,defaults | |
channel-priority: true | |
python-version: ${{ matrix.py_ver }} | |
environment-file: environment.yaml | |
activate-environment: gs | |
- name: Conda info | |
shell: bash -l {0} | |
run: | | |
conda info --all | |
conda list | |
- name: Running serial tests | |
shell: bash -l {0} | |
run: | | |
pytest tests \ | |
-vv \ | |
-n 0 \ | |
-m "serial" \ | |
--color=yes \ | |
--cov=./ \ | |
--cov-append \ | |
--cov-report html:coverage-serial-html \ | |
--cov-report xml:coverage-serial.xml \ | |
--cov-config=.coveragerc \ | |
--junit-xml=Linux-py${{ matrix.py_ver }}-serial.xml \ | |
--junit-prefix=Linux-py${{ matrix.py_ver }}-serial | |
- name: Running parallel tests | |
shell: bash -l {0} | |
run: | | |
pytest tests \ | |
-vv \ | |
-n 0 \ | |
-m "not serial" \ | |
--color=yes \ | |
--cov=./ \ | |
--cov-append \ | |
--cov-report html:coverage-parallel-html \ | |
--cov-report xml:coverage-parallel.xml \ | |
--cov-config=.coveragerc \ | |
--junit-xml=Linux-py${{ matrix.py_ver }}-parallel.xml \ | |
--junit-prefix=Linux-py${{ matrix.py_ver }}-parallel | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
files: ./coverage-serial.xml,./coverage-parallel.xml | |
directory: . | |
flags: unittests |