-
Notifications
You must be signed in to change notification settings - Fork 23
52 lines (48 loc) · 1.86 KB
/
Copy pathpython_package_testing.yaml
File metadata and controls
52 lines (48 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Testing
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# Every supported Python on Linux, where the runners are cheapest and a
# version-specific break would show up anyway. Windows and macOS run the
# newest one only: they are here for the behaviour that differs by
# operating system, such as the process start method and the numba
# threading layer, which does not vary with the Python version.
include:
- {os: ubuntu-latest, python-version: "3.11"}
- {os: ubuntu-latest, python-version: "3.12"}
- {os: ubuntu-latest, python-version: "3.13"}
- {os: windows-latest, python-version: "3.13"}
- {os: macos-latest, python-version: "3.13"}
steps:
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install system libraries for Qt
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libegl1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 sdypy-io
pip install -e ".[dev,qt]"
- name: Lint with flake8
if: runner.os == 'Linux' && matrix.python-version == '3.13'
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest