Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pact Consumer #410

Merged
merged 6 commits into from
Oct 12, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ linux_arm64_task:
image: $IMAGE
install_script:
- apt update --yes
- apt install --yes gcc make
- apt install --yes gcc make g++
- python -m pip install --upgrade pip pipx
- pipx install hatch
<<: *TEST_TEMPLATE
Expand Down
7 changes: 4 additions & 3 deletions conftest.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
"""
Global Pytest configuration.
Global PyTest configuration.

This file is used to define global Pytest configuration. In this case, we use it
to define additional command line options to customise the examples.
This file is automatically loaded by PyTest before running any tests and is used
to define global fixtures and command line options. Command line options can
only be defined in this file.
"""

import pytest
Expand Down
7 changes: 7 additions & 0 deletions pact/v3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,10 @@
library is moved to the `pact.v2` scope. The `pact.v2` module will be
considered deprecated, and will be removed in a future release.
"""

from .pact import Interaction, Pact

__all__ = [
"Pact",
"Interaction",
]