-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify workflow to exclude python 3.9 and inlude test QOKIT_PYTHON_ON…
…LY=False
- Loading branch information
Showing
2 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
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
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 |
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