Skip to content

Commit 40ae088

Browse files
committed
Add latest flask 2.x release to CI runs
1 parent 02b2f63 commit 40ae088

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
python-version: ${{ matrix.python }}
2121
- name: Install Dependencies
2222
run: pip install tox
23-
- name: Run Tox
23+
- name: Run Tox Flask==3.x
2424
run: tox -e py
2525
- name: Run Tox Flask==2.1
2626
run: tox -e flask21
27+
- name: Run Tox Flask==2.x
28+
run: tox -e flask2x

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py37,py38,py39,py310,py311,py312,pypy3.9,flask21,mypy,coverage,style,docs
7+
envlist = py37,py38,py39,py310,py311,py312,pypy3.9,flask21,flask2x,mypy,coverage,style,docs
88

99
[testenv]
1010
commands =
@@ -15,6 +15,8 @@ deps =
1515
python-dateutil
1616
flask21: Flask>=2.1,<2.2
1717
flask21: Werkzeug>=2,<3
18+
flask2x: Flask<3.0
19+
flask2x: Werkzeug>=2,<3
1820

1921
[testenv:mypy]
2022
commands =

0 commit comments

Comments
 (0)