Update h5netcdf requirement from ~=0.15.0 to ~=1.4.0 #413
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: Install all deps from conda-forge and run pytest | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'release/*' | |
- 'staging' | |
- 'trying' | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
pytestconda: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
env: | |
DISPLAY: ':99.0' | |
OS: ${{ matrix.os }} | |
steps: | |
- name: checkout source code | |
uses: actions/[email protected] | |
with: | |
submodules: true | |
- name: setup ubuntu-latest xvfb | |
uses: ./.github/actions/setup-ubuntu-latest-xvfb | |
if: runner.os == 'Linux' | |
- name: install dependencies | |
uses: conda-incubator/[email protected] | |
with: | |
activate-environment: qcodesforge | |
environment-file: .github/static/environment_forge_full.yml | |
auto-activate-base: false | |
- name: conda info | |
shell: bash -l {0} | |
run: | | |
conda info | |
- name: install qcodes | |
shell: bash -l {0} | |
run: | | |
pip install . --no-deps | |
- name: Run Mypy | |
shell: bash -l {0} | |
run: mypy qcodes | |
- name: run parallel tests | |
shell: bash -l {0} | |
run: | | |
pytest -m "not serial" --hypothesis-profile ci qcodes | |
- name: run serial tests | |
shell: bash -l {0} | |
run: | | |
pytest -m "serial" -n 0 --dist no --hypothesis-profile ci qcodes |