-
Notifications
You must be signed in to change notification settings - Fork 73
64 lines (60 loc) · 1.6 KB
/
test.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
name: Test
on:
pull_request:
paths-ignore:
- 'docs/**'
jobs:
style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: pre-commit/action@v3.0.0
build-wheel:
needs: style
name: Build wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build wheel
run: |
pip install wheel
pip wheel -w ~/.wheelhouse .
- uses: actions/upload-artifact@v4
with:
name: mnelab-wheel
path: ~/.wheelhouse/mnelab*.whl
test:
needs: build-wheel
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
name: Run tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v4
with:
name: mnelab-wheel
- name: Install Linux packages
run: |
sudo apt update
sudo apt install libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \
libxkbcommon-x11-0 xvfb libxcb-randr0 \
libxcb-render-util0 libxcb-xinerama0 libegl1 \
libxcb-shape0 libxcb-cursor0
- name: Install Python packages
run: |
pip install $(echo mnelab*.whl)
pip install pytest pytest-qt pytest-xvfb
- name: Run tests
run: pytest