[MRG] Switch to the newly released Python 3.12 #193
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pull-request-pytest-apps | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
pydicom-dev: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10'] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest sqlalchemy pyfakefs | |
pip install git+https://github.com/pydicom/pydicom | |
pip install -e . | |
- name: Test with pytest | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
run: | | |
pytest --ignore=pynetdicom/tests | |
# pydicom-release: | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 30 | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# python-version: ['3.9'] | |
# | |
# steps: | |
# - uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: 2 | |
# - name: Set up Python ${{ matrix.python-version }} | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: ${{ matrix.python-version }} | |
# - name: Install dependencies | |
# run: | | |
# python -m pip install --upgrade pip | |
# pip install pytest pydicom sqlalchemy pyfakefs | |
# - name: Test with pytest | |
# env: | |
# PYTHON_VERSION: ${{ matrix.python-version }} | |
# run: | | |
# pytest --ignore=pynetdicom/tests |