-
Notifications
You must be signed in to change notification settings - Fork 193
60 lines (54 loc) · 1.42 KB
/
pr-pytest-apps.yml
File metadata and controls
60 lines (54 loc) · 1.42 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
53
54
55
56
57
58
59
60
name: pull-request-pytest-apps
on:
pull_request:
branches: [ main ]
jobs:
pydicom-dev:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
id: setup-python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e .[tests]
- name: Switch to development pydicom
run: |
pip install git+https://github.com/pydicom/pydicom
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
pytest -x --ignore=pynetdicom/tests
pydicom-release:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
id: setup-python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -e .[tests]
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
pytest -x --ignore=pynetdicom/tests