Update test_core.py #10
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: CI | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '**/*.md' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**/*.md' | |
jobs: | |
Ruff: | |
name: Ruff & mypy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chartboost/ruff-action@v1 | |
name: ruff check | |
with: | |
args: 'check --output-format=github' | |
- uses: chartboost/ruff-action@v1 | |
name: ruff format | |
with: | |
args: 'format --check' | |
# - name: mypy | |
# run: | | |
# pip install mypy | |
# mypy --package mypackage $(qtpy mypy-args) | |
Testing: | |
needs: [Ruff] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up PDM | |
uses: pdm-project/setup-pdm@v4 | |
with: | |
cache: true | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pdm install -dG test | |
- name: Install libgl1 (Ubuntu only) | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get install -y libegl1 | |
- name: Run Tests | |
run: pdm run tox | |
- name: coveralls.io | |
uses: coverallsapp/github-action@v2 | |
with: | |
flag-name: ${{ matrix.os }} | |
parallel: true | |
file: coverage.xml | |
compare-ref: main | |
Finish: | |
needs: [Testing] | |
if: ${{ always() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@v2 | |
with: | |
parallel-finished: true |