Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,13 @@
collect_ignore_glob.append("*test_spyne*")


if sys.version_info >= (3, 13):
# Currently not installable dependencies because of 3.13 incompatibilities
collect_ignore_glob.append("*test_sanic*")


if sys.version_info >= (3, 14):
# Currently not installable dependencies because of 3.14 incompatibilities
collect_ignore_glob.append("*test_fastapi*")
# aiohttp-server tests failing due to deprecated methods used
collect_ignore_glob.append("*test_aiohttp_server*")
# Currently Saniic does not support python >= 3.14
collect_ignore_glob.append("*test_sanic*")


@pytest.fixture(scope="session")
Expand Down
7 changes: 3 additions & 4 deletions tests/requirements-pre314.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ pytz>=2024.1
redis>=3.5.3
requests-mock
responses<=0.17.0
# Sanic is not installable on 3.13 because `httptools, uvloop` dependencies fail to compile:
# `too few arguments to function ‘_PyLong_AsByteArray’`
sanic>=19.9.0; python_version < "3.13"
sanic-testing>=24.6.0; python_version < "3.13"
Comment thread
GSVarsha marked this conversation as resolved.
# Sanic doesn't support python-3.14 yet
# sanic>=19.9.0
# sanic-testing>=24.6.0
starlette>=0.38.2
sqlalchemy>=2.0.0
tornado>=6.4.1
Expand Down
7 changes: 3 additions & 4 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,14 @@ pytz>=2024.1
redis>=3.5.3
requests-mock
responses<=0.17.0
# Sanic is not installable on 3.13 because `httptools, uvloop` dependencies fail to compile:
# `too few arguments to function ‘_PyLong_AsByteArray’`
sanic<=24.6.0; python_version < "3.9"
sanic>=19.9.0; python_version >= "3.9" and python_version < "3.13"
sanic-testing>=24.6.0; python_version < "3.13"
sanic>=19.9.0; python_version >= "3.9"
sanic-testing>=24.6.0
spyne>=2.14.0; python_version < "3.12"
sqlalchemy>=2.0.0
starlette>=0.38.2; python_version == "3.13"
tornado>=6.4.1
tracerite<=1.1.1
uvicorn>=0.13.4
urllib3>=1.26.5
httpx>=0.27.0
Loading