Skip to content

Commit

Permalink
Run more requests, celery, falcon tests (#2414)
Browse files Browse the repository at this point in the history
Run our requests and falcon test suites on newer Python versions, too.
Run the celery test suite for Celery 5.3.
  • Loading branch information
sentrivana authored Oct 4, 2023
1 parent b31d498 commit fb39f22
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-integration-celery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.5","3.6","3.7","3.8","3.9","3.10"]
python-version: ["3.5","3.6","3.7","3.8","3.9","3.10","3.11"]
# python3.6 reached EOL and is no longer being supported on
# new versions of hosted runners on Github Actions
# ubuntu-20.04 is the last version that supported python3.6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration-falcon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.5","3.6","3.7","3.8","3.9"]
python-version: ["3.5","3.6","3.7","3.8","3.9","3.10","3.11"]
# python3.6 reached EOL and is no longer being supported on
# new versions of hosted runners on Github Actions
# ubuntu-20.04 is the last version that supported python3.6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8","3.9"]
python-version: ["3.8","3.9","3.10","3.11"]
# python3.6 reached EOL and is no longer being supported on
# new versions of hosted runners on Github Actions
# ubuntu-20.04 is the last version that supported python3.6
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ envlist =
{py2.7,py3.5,py3.6,py3.7,py3.8}-celery-v{4.3,4.4}
{py3.6,py3.7,py3.8}-celery-v{5.0}
{py3.7,py3.8,py3.9,py3.10}-celery-v{5.1,5.2}
# TODO: enable when celery is ready {py3.7,py3.8,py3.9,py3.10,py3.11}-celery-v{5.3}
{py3.8,py3.9,py3.10,py3.11}-celery-v{5.3}

# Chalice
{py3.6,py3.7,py3.8}-chalice-v{1.18,1.20,1.22,1.24}
Expand All @@ -80,7 +80,7 @@ envlist =
# Falcon
{py2.7,py3.5,py3.6,py3.7}-falcon-v{1.4}
{py2.7,py3.5,py3.6,py3.7}-falcon-v{2.0}
{py3.5,py3.6,py3.7,py3.8,py3.9}-falcon-v{3.0}
{py3.5,py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-falcon-v{3.0}

# FastAPI
{py3.7,py3.8,py3.9,py3.10,py3.11}-fastapi
Expand Down Expand Up @@ -142,7 +142,7 @@ envlist =
{py2.7,py3.7,py3.8,py3.9}-rediscluster-v{1,2.1.0,2}

# Requests
{py2.7,py3.8,py3.9}-requests
{py2.7,py3.8,py3.9,py3.10,py3.11}-requests

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

{py3.5}-celery: newrelic<6.0.0
{py3.7}-celery: importlib-metadata<5.0
Expand Down

0 comments on commit fb39f22

Please sign in to comment.