Skip to content

Commit 2b8a7fa

Browse files
authored
test: add SA 2.0 to test matrix (#693)
1 parent 2d5b205 commit 2b8a7fa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
matrix:
88
os: ['ubuntu-latest']
99
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
10-
tox_env: ['sqlalchemy14']
10+
tox_env: ['sqlalchemy14', 'sqlalchemy2']
1111
include:
1212
# Test against Python 3.7 and sqlalchemy 1.3
1313
- os: 'ubuntu-20.04'

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{37, 38, 39, 310, 311}-sqlalchemy{13, 14}
3+
py{37, 38, 39, 310, 311}-sqlalchemy{13, 14, 2}
44
flake8
55
isort
66

@@ -12,6 +12,7 @@ deps =
1212
pytest-cov
1313
sqlalchemy13: SQLAlchemy[postgresql_pg8000]>=1.3,<1.4
1414
sqlalchemy14: SQLAlchemy>=1.4,<1.5
15+
sqlalchemy2: SQLAlchemy>=2
1516
; It's sometimes necessary to test against specific sqlalchemy versions
1617
; to verify bug or feature behavior before or after a specific version.
1718
;

0 commit comments

Comments
 (0)