mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-01 01:26:46 +00:00
✅ CI: 测试矩阵加入 Python 3.13 (#3605)
This commit is contained in:
2
.github/workflows/codecov.yml
vendored
2
.github/workflows/codecov.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.9", "3.10", "3.11", "3.12"]
|
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||||
env: [pydantic-v1, pydantic-v2]
|
env: [pydantic-v1, pydantic-v2]
|
||||||
env:
|
env:
|
||||||
|
@ -42,6 +42,10 @@ UNKNOWN_PARAM = "Unknown parameter"
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.anyio
|
@pytest.mark.anyio
|
||||||
|
@pytest.mark.xfail(
|
||||||
|
(3, 13) <= sys.version_info < (3, 14),
|
||||||
|
reason="CPython Bug, see python/cpython#137317, python/cpython#137862",
|
||||||
|
)
|
||||||
async def test_depend(app: App):
|
async def test_depend(app: App):
|
||||||
from plugins.param.param_depend import (
|
from plugins.param.param_depend import (
|
||||||
ClassDependency,
|
ClassDependency,
|
||||||
|
Reference in New Issue
Block a user