Skip to content

Commit f708bb8

Browse files
committed
disable multiprocess mechanism
1 parent 1ba5746 commit f708bb8

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
]
2525
dynamic = ["version"]
2626
dependencies = [
27-
"httpdbg>=0.32.0",
27+
"httpdbg>=1.2.5",
2828
"pytest>=7.0.0"
2929
]
3030

pytest_httpdbg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
from pytest_httpdbg.plugin import httpdbg_record_filename # noqa F401
33

4-
__version__ = "0.8.1"
4+
__version__ = "0.9.0"

pytest_httpdbg/plugin.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ def pytest_runtest_protocol(item: pytest.Item, nextitem: Optional[pytest.Item]):
171171
def pytest_sessionstart(session):
172172
if session.config.option.httpdbg_allure:
173173
session.httpdbg_recorder = httprecord(
174-
initiators=session.config.option.httpdbg_initiator
174+
initiators=session.config.option.httpdbg_initiator,
175+
multiprocess=False,
175176
)
176177
session.httpdbg_records = session.httpdbg_recorder.__enter__()
177178

0 commit comments

Comments
 (0)