Skip to content

Instrument Measurement and dond with opentelemetry #11931

Instrument Measurement and dond with opentelemetry

Instrument Measurement and dond with opentelemetry #11931

Workflow file for this run

name: Run mypy and pytest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'master'
- 'release/*'
tags:
- 'v*'
pull_request:
merge_group:
branches: ['master']
jobs:
pytestmypy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
exclude:
- os: windows-latest
python-version: "3.9"
- os: windows-latest
python-version: "3.11"
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3.5.3
with:
submodules: true
# we need full history with tags for the version number
fetch-depth: '0'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.3.1
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
pyproject.toml
requirements.txt
- name: upgrade pip setuptools wheel
run: python -m pip install --upgrade pip setuptools wheel
shell: bash
- name: install qcodes
run: |
pip install .[test] -c requirements.txt
- uses: jakebailey/pyright-action@v1.6.0
with:
version: 1.1.318
- name: Run Mypy
run: mypy -p qcodes
- name: Run parallel tests
run: |
pytest -m "not serial" --cov=qcodes --cov-report xml --hypothesis-profile ci --durations=20 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 qcodes
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.4
with:
file: ./coverage.xml
env_vars: OS,PYTHON