Bump apipkg from 2.1.0 to 3.0.2 #408
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: run qcodes.pytest() | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'release/*' | |
- 'staging' | |
- 'trying' | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
pytestnonlocal: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.7] | |
env: | |
DISPLAY: ':99.0' | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
- name: setup ubuntu-latest xvfb | |
uses: ./.github/actions/setup-ubuntu-latest-xvfb | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: prepare pip cache | |
id: prepare-cache-pip | |
uses: ./.github/actions/prepare-cache-pip | |
- name: pip cache | |
uses: actions/[email protected] | |
with: | |
path: ${{ steps.prepare-cache-pip.outputs.cache-dir }} | |
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/test_requirements.txt') }}-${{ hashFiles('**/setup.cfg') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.python-version }}-pip- | |
- name: install requirements.txt | |
run: | | |
pip install -r requirements.txt | |
- name: install test_requirements.txt | |
run: | | |
pip install -r test_requirements.txt | |
- name: install qcodes | |
run: | | |
pip install . | |
- name: Test with pytest | |
run: | | |
cd .. | |
mkdir empty | |
cd empty | |
cp ../Qcodes/pyproject.toml . | |
python -c "import sys; import qcodes; ec = qcodes.test(); sys.exit(ec)" |