Skip to content

Commit d96acf9

Browse files
ci: Stop testing with Postgres 12 (#481)
Closes #475
1 parent b8b9bbe commit d96acf9

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci_workflow.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ jobs:
4343
postgres-version:
4444
- "17"
4545
include:
46-
- python-version: "3.13"
47-
postgres-version: "12"
4846
- python-version: "3.13"
4947
postgres-version: "13"
5048
- python-version: "3.13"
@@ -81,7 +79,7 @@ jobs:
8179
pipx install tox
8280
- name: Run pytest
8381
run: |
84-
tox -e $(echo py${{ matrix.python-version }} | tr -d .)
82+
tox -e ${{ matrix.python-version }}
8583
- name: Run lint
8684
run: |
8785
tox -e lint

tox.ini

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy
22

33
[tox]
4-
envlist = py312
4+
envlist =
5+
3.{9,10,11,12,13}
6+
format
7+
lint
58
isolated_build = true
69
min_version = 4
710

811
[testenv]
912
# Run the python tests.
10-
# To execute, run `tox -e py313`
11-
envlist = py3{9,10,11,12,13}
13+
# To execute, run `tox -e 3.13`
14+
envlist = 3.{9,10,11,12,13}
1215
deps =
1316
pytest
1417
commands =

0 commit comments

Comments
 (0)