Skip to content

Commit

Permalink
✔️ start testing on Python 3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret committed Nov 14, 2024
1 parent 986beb3 commit 04bdf81
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,27 +52,30 @@ jobs:
include:
- experimental: false
traefik-server: true
- experimental: true
python-version: "3.14"
os: ubuntu-22.04
- python-version: "pypy-3.7"
os: ubuntu-latest
os: ubuntu-22.04
experimental: false
nox-session: test-pypy
- python-version: "pypy-3.8"
os: ubuntu-latest
os: ubuntu-22.04
experimental: false
nox-session: test-pypy
traefik-server: true
- python-version: "pypy-3.9-v7.3.13" # urllib3#3308
os: ubuntu-latest
os: ubuntu-22.04
experimental: false
nox-session: test-pypy
traefik-server: true
- python-version: "pypy-3.10"
os: ubuntu-latest
os: ubuntu-22.04
experimental: false
nox-session: test-pypy
traefik-server: true
- python-version: "3.x"
os: ubuntu-latest
os: ubuntu-22.04
experimental: false
nox-session: test_brotlipy
# Test CPython with a broken hostname_checks_common_name (the fix is in 3.9.3)
Expand All @@ -85,8 +88,6 @@ jobs:
# https://github.com/python/cpython/issues/83001
- python-version: "3.7"
os: ubuntu-22.04
- python-version: "3.7"
os: macos-13
- python-version: "3.8"
os: ubuntu-22.04

Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,12 @@ def tests_impl(
)


@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy"])
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "pypy"])
def test(session: nox.Session) -> None:
tests_impl(session)


@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])
@nox.session(python=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"])
def tracemalloc(session: nox.Session) -> None:
tests_impl(session, tracemalloc_enable=True)

Expand Down

0 comments on commit 04bdf81

Please sign in to comment.