Skip to content

Commit

Permalink
Modify workflow to exclude python 3.9 and inlude test QOKIT_PYTHON_ON…
Browse files Browse the repository at this point in the history
…LY=False
  • Loading branch information
bgupt committed Jan 9, 2025
1 parent cb0d14a commit 4d201c5
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
50 changes: 50 additions & 0 deletions .github/workflows/qokit-python-c.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Run tests (python simulator only, Mac/Linux)

on: # workflow_dispatch
push:
branches: [ "main", "**" ]
pull_request:
branches: [ "main" ]

jobs:
build:

name: Python ${{matrix.python-version}} on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipreqs black addheader pytest-cov pip-licenses types-pkg-resources==0.1.3
- name: black check
run: |
black --check .
- name: pip install
run: |
export QOKIT_PYTHON_ONLY=False
pip install .
- name: Run tests and coverage
run: |
pytest --cov=qokit -rs tests --cov-fail-under=70
- name: License check
run: |
pip-licenses --format=markdown --order=license
- name: SPDX check
run: |
addheader -t header.txt .
grep -L -f header.txt */*.py
2 changes: 1 addition & 1 deletion .github/workflows/qokit-python-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 4d201c5

Please sign in to comment.