File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
fastapi_provider/tests/provider
flask_provider/tests/provider Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ Example uploading to a Pact Broker
307307pact-broker publish /path/to/pacts/consumer-provider.json --consumer-app-version 1.0.0 --branch main --broker-base-url https://test.pactflow.io --broker-username someUsername --broker-password somePassword
308308```
309309
310- Example uploading to a Pactflow Broker
310+ Example uploading to a PactFlow Broker
311311
312312```
313313pact-broker publish /path/to/pacts/consumer-provider.json --consumer-app-version 1.0.0 --branch main --broker-base-url https://test.pactflow.io --broker-token SomeToken
@@ -465,7 +465,7 @@ assert success == 0
465465# Using a pact broker
466466
467467- For OSS Pact Broker, use broker_username / broker_password
468- - For Pactflow Pact Broker, use broker_token
468+ - For PactFlow Pact Broker, use broker_token
469469
470470success, logs = verifier.verify_with_broker(
471471 # broker_username=PACT_BROKER_USERNAME,
Original file line number Diff line number Diff line change 55from testcontainers .compose import DockerCompose
66
77
8- # This fixture is to simulate a managed Pact Broker or Pactflow account.
8+ # This fixture is to simulate a managed Pact Broker or PactFlow account.
99# For almost all purposes outside this example, you will want to use a real
1010# broker. See https://github.com/pact-foundation/pact_broker for further details.
1111@pytest .fixture (scope = "session" , autouse = True )
Original file line number Diff line number Diff line change 1414
1515# If publishing the Pact(s), they will be submitted to the Pact Broker here.
1616# For the purposes of this example, the broker is started up as a fixture defined
17- # in conftest.py. For normal usage this would be self-hosted or using Pactflow .
17+ # in conftest.py. For normal usage this would be self-hosted or using PactFlow .
1818PACT_BROKER_URL = "http://localhost"
1919PACT_BROKER_USERNAME = "pactbroker"
2020PACT_BROKER_PASSWORD = "pactbroker"
Original file line number Diff line number Diff line change 1010
1111
1212# For the purposes of this example, the broker is started up as a fixture defined
13- # in conftest.py. For normal usage this would be self-hosted or using Pactflow .
13+ # in conftest.py. For normal usage this would be self-hosted or using PactFlow .
1414PACT_BROKER_URL = "http://localhost"
1515PACT_BROKER_USERNAME = "pactbroker"
1616PACT_BROKER_PASSWORD = "pactbroker"
Original file line number Diff line number Diff line change 1010logging .basicConfig (level = logging .INFO )
1111
1212# For the purposes of this example, the broker is started up as a fixture defined
13- # in conftest.py. For normal usage this would be self-hosted or using Pactflow .
13+ # in conftest.py. For normal usage this would be self-hosted or using PactFlow .
1414PACT_BROKER_URL = "http://localhost"
1515PACT_BROKER_USERNAME = "pactbroker"
1616PACT_BROKER_PASSWORD = "pactbroker"
You can’t perform that action at this time.
0 commit comments