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
24 changes: 11 additions & 13 deletions pact-python-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ requires-python = ">=3.10"
# Linting and formatting tools use a more narrow specification to ensure
# developper consistency. All other dependencies are as above.
dev = ["ruff==0.14.4", { include-group = "test" }, { include-group = "types" }]
test = ["pytest-cov~=7.0", "pytest~=8.0"]
test = ["pytest-cov~=7.0", "pytest~=9.0"]
types = ["mypy==1.18.2"]

################################################################################
Expand Down Expand Up @@ -134,19 +134,17 @@ requires = ["hatch-vcs", "hatchling", "packaging"]
## PyTest Configuration
################################################################################
[tool.pytest]
addopts = [
"--import-mode=importlib",
# Coverage options
"--cov-config=pyproject.toml",
"--cov-report=xml",
"--cov=pact_cli",
]

[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
# Coverage options
"--cov-config=pyproject.toml",
"--cov-report=xml",
"--cov=pact_cli",
]

log_date_format = "%H:%M:%S"
log_format = "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)s: %(message)s"
log_level = "NOTSET"
log_date_format = "%H:%M:%S"
log_format = "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)s: %(message)s"
log_level = "NOTSET"

################################################################################
## Coverage
Expand Down
22 changes: 10 additions & 12 deletions pact-python-ffi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,19 +131,17 @@ requires = ["hatch-vcs", "hatchling", "packaging", "cffi"]
## PyTest Configuration
################################################################################
[tool.pytest]
addopts = [
"--import-mode=importlib",
# Coverage options
"--cov-config=pyproject.toml",
"--cov-report=xml",
"--cov=pact_ffi",
]

[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
# Coverage options
"--cov-config=pyproject.toml",
"--cov-report=xml",
"--cov=pact_ffi",
]

log_date_format = "%H:%M:%S"
log_format = "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)s: %(message)s"
log_level = "NOTSET"
log_date_format = "%H:%M:%S"
log_format = "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)s: %(message)s"
log_level = "NOTSET"

################################################################################
## Coverage
Expand Down
53 changes: 26 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -284,36 +284,35 @@ requires = ["hatch-vcs", "hatchling"]
################################################################################
[tool.pytest]

[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
# Coverage options
"--cov-config=pyproject.toml",
"--cov-report=xml",
"--cov=pact",
]
asyncio_default_fixture_loop_scope = "session"
filterwarnings = [
"ignore::DeprecationWarning:examples",
"ignore::DeprecationWarning:pact",
"ignore::DeprecationWarning:tests",
]
pythonpath = "."
reruns = 3
addopts = [
"--import-mode=importlib",
# Coverage options
"--cov-config=pyproject.toml",
"--cov-report=xml",
"--cov=pact",
]
asyncio_default_fixture_loop_scope = "session"
filterwarnings = [
"ignore::DeprecationWarning:examples",
"ignore::DeprecationWarning:pact",
"ignore::DeprecationWarning:tests",
]
pythonpath = "."
reruns = 3

log_date_format = "%H:%M:%S"
log_format = "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)s: %(message)s"
log_level = "NOTSET"
log_date_format = "%H:%M:%S"
log_format = "%(asctime)s.%(msecs)03d [%(levelname)-8s] %(name)s: %(message)s"
log_level = "NOTSET"

markers = [
# Marker for tests that require a container
"container",
markers = [
# Marker for tests that require a container
"container",

# Markers for the compatibility suite
"consumer",
"message",
"provider",
]
# Markers for the compatibility suite
"consumer",
"message",
"provider",
]

################################################################################
## Coverage
Expand Down
Loading