-
Notifications
You must be signed in to change notification settings - Fork 11
187 lines (167 loc) · 4.84 KB
/
tests.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
name: Tests
on:
push:
branches:
- develop
- feature_prepare/**
- main
pull_request:
branches:
- '**'
workflow_dispatch:
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
download_data:
name: Download test data
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- shell: bash
run: bash build_utils/download_data.sh
- name: Upload test data
uses: actions/upload-artifact@v3
with:
name: test_data
path: test_data
retention-days: 5
base-test:
name: Base py${{ matrix.python_version }}
if: github.event_name == 'pull_request'
uses: ./.github/workflows/base_test_workflow.yml
needs: download_data
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10"]
os: ["ubuntu-20.04"]
qt_backend: ["PyQt5"]
tox_args: [ "" ]
include:
- python_version: "3.9"
os: "macos-11"
qt_backend: "PyQt5"
- python_version: "3.9"
os: "windows-2019"
qt_backend: "PyQt5"
- python_version: "3.9"
os: "ubuntu-20.04"
qt_backend: "PySide2"
- python_version: "3.9"
os: "ubuntu-22.04"
qt_backend: "PySide6"
- python_version: "3.9"
os: "ubuntu-22.04"
qt_backend: "PyQt6"
- python_version: "3.11"
os: "ubuntu-22.04"
qt_backend: "PyQt5"
tox_args: "-vv -e py311-PyQt5-all"
with:
test_data: True
python_version: ${{ matrix.python_version }}
os: ${{ matrix.os }}
qt_backend: ${{ matrix.qt_backend }}
tox_args: ${{ matrix.tox_args }}
base-test-main:
name: Base py${{ matrix.python_version }}
if: github.event_name == 'push'
uses: ./.github/workflows/base_test_workflow.yml
needs: download_data
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10"]
os: ["ubuntu-20.04", "macos-11", "windows-2019"]
qt_backend: ["PySide2", "PyQt5"]
include:
- python_version: "3.11"
qt_backend: "PyQt5"
os: "ubuntu-22.04"
- python_version: "3.9"
os: "ubuntu-22.04"
qt_backend: "PySide6"
- python_version: "3.9"
os: "ubuntu-22.04"
qt_backend: "PyQt6"
with:
test_data: True
python_version: ${{ matrix.python_version }}
os: ${{ matrix.os }}
qt_backend: ${{ matrix.qt_backend }}
test_coverage:
needs: download_data
uses: ./.github/workflows/base_test_workflow.yml
with:
test_data: True
python_version: "3.8"
tox_args: "-e py38-PyQt5-coverage"
coverage: true
test_minimal:
name: Test PartSeg minimal
needs: download_data
uses: ./.github/workflows/base_test_workflow.yml
with:
test_data: True
python_version: "3.8"
tox_args: "-e py38-PyQt5-minimal"
coverage: true
test_conda:
name: Test PartSeg conda
runs-on: ubuntu-20.04
needs: download_data
steps:
- uses: actions/checkout@v4
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
miniforge-variant: mambaforge
use-mamba: true
channels: conda-forge
channel-priority: strict
python-version: "3.9"
- uses: tlambert03/setup-qt-libs@v1
- name: Download test data
uses: actions/download-artifact@v3
with:
name: test_data
path: test_data
- name: Use mamba solver
shell: "bash -el {0}"
run: |
conda install -n base conda-libmamba-solver
conda config --set solver libmamba
- name: Install dependencies
shell: "bash -el {0}"
run: |
mamba install -y "tox-conda>=0.10.0"
- name: List environment packages
shell: "bash -el {0}"
run: conda list
- name: create environment
shell: "bash -el {0}"
run: bash build_utils/create_environment_yml.sh
- name: Upload environment file
uses: actions/upload-artifact@v3
with:
name: environment
path: environment.yml
retention-days: 5
- name: patch tox.ini
shell: "bash -el {0}"
run: sed -e "s/{sys_platform}/{platform}/g" tox.ini -i
- name: Test with tox
uses: aganders3/headless-gui@v2
with:
run: conda run -n test --no-capture-output tox -e py39-PySide2-conda
timeout-minutes: 60
check-package:
name: Build & inspect our package.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v1