Skip to content

Commit

Permalink
ci: Stop testing with Postgres 12 (#481)
Browse files Browse the repository at this point in the history
Closes #475
  • Loading branch information
edgarrmondragon authored Nov 14, 2024
1 parent b8b9bbe commit d96acf9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ jobs:
postgres-version:
- "17"
include:
- python-version: "3.13"
postgres-version: "12"
- python-version: "3.13"
postgres-version: "13"
- python-version: "3.13"
Expand Down Expand Up @@ -81,7 +79,7 @@ jobs:
pipx install tox
- name: Run pytest
run: |
tox -e $(echo py${{ matrix.python-version }} | tr -d .)
tox -e ${{ matrix.python-version }}
- name: Run lint
run: |
tox -e lint
Expand Down
9 changes: 6 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy

[tox]
envlist = py312
envlist =
3.{9,10,11,12,13}
format
lint
isolated_build = true
min_version = 4

[testenv]
# Run the python tests.
# To execute, run `tox -e py313`
envlist = py3{9,10,11,12,13}
# To execute, run `tox -e 3.13`
envlist = 3.{9,10,11,12,13}
deps =
pytest
commands =
Expand Down

0 comments on commit d96acf9

Please sign in to comment.