-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (38 loc) · 1.15 KB
/
Copy pathpython-tests.yml
File metadata and controls
45 lines (38 loc) · 1.15 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
name: Python Package Tests
on:
pull_request:
branches: [main, master]
push:
branches: [main, master, 'feature/**', 'fix/**']
workflow_dispatch:
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: python/pyproject.toml
- name: Install package with test dependencies
run: |
python -m pip install --upgrade pip
pip install -e "./python[test,pypulseq]"
- name: Run tests
run: python -m pytest python/tests/ -v
- name: Upload test results
uses: actions/upload-artifact@v5
if: ${{ !cancelled() }}
with:
name: python-test-results-py${{ matrix.python-version }}
path: python/.pytest_results/
retention-days: 14