Skip to content

Commit 98d1c19

Browse files
committed
chore(deps): update dependency pytest to v9
1 parent fb5dd23 commit 98d1c19

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

examples/http/aiohttp_and_flask/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ pact-python = { path = "../../../" }
1818
extend = "../../../pyproject.toml"
1919

2020
[tool.pytest]
21-
addopts = ["--import-mode=importlib"]
21+
addopts = ["--import-mode=importlib"]
22+
2223
asyncio_default_fixture_loop_scope = "session"
2324

2425
log_date_format = "%H:%M:%S"

examples/http/requests_and_fastapi/pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ pact-python = { path = "../../../" }
1919
extend = "../../../pyproject.toml"
2020

2121
[tool.pytest]
22-
addopts = ["--import-mode=importlib"]
22+
addopts = ["--import-mode=importlib"]
23+
24+
asyncio_default_fixture_loop_scope = "session"
25+
2326
log_date_format = "%H:%M:%S"
2427
log_format = "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)s: %(message)s"
2528
log_level = "NOTSET"
26-
27-
asyncio_default_fixture_loop_scope = "session"

pact-python-ffi/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dependencies = ["cffi~=2.0"]
4242

4343
[dependency-groups]
4444
dev = ["ruff==0.14.5", { include-group = "test" }, { include-group = "types" }]
45-
test = ["pytest-cov~=7.0", "pytest~=8.0"]
45+
test = ["pytest-cov~=7.0", "pytest~=9.0"]
4646
types = ["mypy==1.18.2", "typing-extensions~=4.0"]
4747

4848
################################################################################

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ example = [
104104
"protobuf~=6.0",
105105
"pydantic~=2.0",
106106
"pytest-cov~=7.0",
107-
"pytest~=8.0",
107+
"pytest~=9.0",
108108
"testcontainers~=4.0",
109109
"uvicorn[standard]~=0.0",
110110
]
@@ -116,7 +116,7 @@ test = [
116116
"pytest-bdd~=8.0",
117117
"pytest-cov~=7.0",
118118
"pytest-rerunfailures~=16.0",
119-
"pytest~=8.0",
119+
"pytest~=9.0",
120120
"requests~=2.0",
121121
"testcontainers~=4.0",
122122
]
@@ -134,7 +134,7 @@ example-v2 = [
134134
"fastapi~=0.0",
135135
"flask[async]~=3.0",
136136
"pytest-cov~=7.0",
137-
"pytest~=8.0",
137+
"pytest~=9.0",
138138
"testcontainers~=4.0",
139139
"uvicorn[standard]~=0.0",
140140
]
@@ -143,7 +143,7 @@ test-v2 = [
143143
"httpx~=0.0",
144144
"mock~=5.0",
145145
"pytest-cov~=7.0",
146-
"pytest~=8.0",
146+
"pytest~=9.0",
147147
"uvicorn[standard]~=0.0",
148148
]
149149

@@ -291,7 +291,9 @@ addopts = [
291291
"--cov-report=xml",
292292
"--cov=pact",
293293
]
294+
294295
asyncio_default_fixture_loop_scope = "session"
296+
295297
filterwarnings = [
296298
"ignore::DeprecationWarning:examples",
297299
"ignore::DeprecationWarning:pact",

0 commit comments

Comments
 (0)