Skip to content

Commit 2d7f30f

Browse files
committed
Pass CI python version
1 parent ce22809 commit 2d7f30f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ['3.9', '3.10', '3.11', '3.12']
15+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1616

1717
steps:
1818
- uses: actions/checkout@main
@@ -27,4 +27,4 @@ jobs:
2727
pip install -e .[dev]
2828
- name: Run unit tests with pytest / pytest-copie
2929
run: |
30-
python -m pytest
30+
python -m pytest --python_version ${{ matrix.python-version }}

.github/workflows/smoke-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ['3.9', '3.10', '3.11', '3.12']
23+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2424

2525
steps:
2626
- uses: actions/checkout@main
@@ -38,7 +38,7 @@ jobs:
3838
pip list
3939
- name: Run unit tests with pytest / pytest-copie
4040
run: |
41-
python -m pytest
41+
python -m pytest --python_version ${{ matrix.python-version }}
4242
- name: Send status to Slack app
4343
if: ${{ failure() && github.event_name != 'workflow_dispatch' }}
4444
id: slack

0 commit comments

Comments
 (0)