Skip to content

Commit fb39f22

Browse files
authored
Run more requests, celery, falcon tests (#2414)
Run our requests and falcon test suites on newer Python versions, too. Run the celery test suite for Celery 5.3.
1 parent b31d498 commit fb39f22

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/test-integration-celery.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: ["3.5","3.6","3.7","3.8","3.9","3.10"]
34+
python-version: ["3.5","3.6","3.7","3.8","3.9","3.10","3.11"]
3535
# python3.6 reached EOL and is no longer being supported on
3636
# new versions of hosted runners on Github Actions
3737
# ubuntu-20.04 is the last version that supported python3.6

.github/workflows/test-integration-falcon.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: ["3.5","3.6","3.7","3.8","3.9"]
34+
python-version: ["3.5","3.6","3.7","3.8","3.9","3.10","3.11"]
3535
# python3.6 reached EOL and is no longer being supported on
3636
# new versions of hosted runners on Github Actions
3737
# ubuntu-20.04 is the last version that supported python3.6

.github/workflows/test-integration-requests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: ["3.8","3.9"]
34+
python-version: ["3.8","3.9","3.10","3.11"]
3535
# python3.6 reached EOL and is no longer being supported on
3636
# new versions of hosted runners on Github Actions
3737
# ubuntu-20.04 is the last version that supported python3.6

tox.ini

+4-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ envlist =
5353
{py2.7,py3.5,py3.6,py3.7,py3.8}-celery-v{4.3,4.4}
5454
{py3.6,py3.7,py3.8}-celery-v{5.0}
5555
{py3.7,py3.8,py3.9,py3.10}-celery-v{5.1,5.2}
56-
# TODO: enable when celery is ready {py3.7,py3.8,py3.9,py3.10,py3.11}-celery-v{5.3}
56+
{py3.8,py3.9,py3.10,py3.11}-celery-v{5.3}
5757

5858
# Chalice
5959
{py3.6,py3.7,py3.8}-chalice-v{1.18,1.20,1.22,1.24}
@@ -80,7 +80,7 @@ envlist =
8080
# Falcon
8181
{py2.7,py3.5,py3.6,py3.7}-falcon-v{1.4}
8282
{py2.7,py3.5,py3.6,py3.7}-falcon-v{2.0}
83-
{py3.5,py3.6,py3.7,py3.8,py3.9}-falcon-v{3.0}
83+
{py3.5,py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-falcon-v{3.0}
8484

8585
# FastAPI
8686
{py3.7,py3.8,py3.9,py3.10,py3.11}-fastapi
@@ -142,7 +142,7 @@ envlist =
142142
{py2.7,py3.7,py3.8,py3.9}-rediscluster-v{1,2.1.0,2}
143143

144144
# Requests
145-
{py2.7,py3.8,py3.9}-requests
145+
{py2.7,py3.8,py3.9,py3.10,py3.11}-requests
146146

147147
# RQ (Redis Queue)
148148
{py2.7,py3.5,py3.6}-rq-v{0.6,0.7,0.8,0.9,0.10,0.11}
@@ -251,6 +251,7 @@ deps =
251251
celery-v5.0: Celery>=5.0,<5.1
252252
celery-v5.1: Celery>=5.1,<5.2
253253
celery-v5.2: Celery>=5.2,<5.3
254+
celery-v5.3: Celery>=5.3,<5.4
254255

255256
{py3.5}-celery: newrelic<6.0.0
256257
{py3.7}-celery: importlib-metadata<5.0

0 commit comments

Comments
 (0)