|
38 | 38 | 'username', '--pact-broker-username', |
39 | 39 | envvar='PACT_BROKER_USERNAME', |
40 | 40 | help='Username for Pact Broker basic authentication. Can also be specified' |
41 | | - ' via the environment variable PACT_BROKER_USERNAME') |
| 41 | + ' via the environment variable PACT_BROKER_USERNAME.') |
42 | 42 | @click.option( |
43 | 43 | 'broker_base_url', '--pact-broker-url', |
44 | 44 | default='', |
45 | 45 | envvar='PACT_BROKER_BASE_URL', |
46 | 46 | help='Base URl for the Pact Broker instance to publish pacts to. Can also be specified' |
47 | | - ' via the environment variable PACT_BROKER_BASE_URL') |
| 47 | + ' via the environment variable PACT_BROKER_BASE_URL.') |
48 | 48 | @click.option( |
49 | 49 | 'consumer_version_tag', '--consumer-version-tag', |
50 | 50 | default='', |
|
67 | 67 | 'password', '--pact-broker-password', |
68 | 68 | envvar='PACT_BROKER_PASSWORD', |
69 | 69 | help='Password for Pact Broker basic authentication. Can also be specified' |
70 | | - ' via the environment variable PACT_BROKER_PASSWORD') |
| 70 | + ' via the environment variable PACT_BROKER_PASSWORD.') |
71 | 71 | @click.option( |
72 | 72 | 'token', '--pact-broker-token', |
73 | 73 | envvar='PACT_BROKER_TOKEN', |
74 | 74 | help='Bearer token for Pact Broker authentication. Can also be specified' |
75 | | - ' via the environment variable PACT_BROKER_TOKEN') |
| 75 | + ' via the environment variable PACT_BROKER_TOKEN.') |
76 | 76 | @click.option( |
77 | 77 | 'provider', '--provider', |
78 | 78 | default='', |
79 | | - help='Retrieve the latest pacts for this provider') |
| 79 | + help='Retrieve the latest pacts for this provider.') |
80 | 80 | @click.option( |
81 | 81 | 'headers', '--custom-provider-header', |
82 | 82 | envvar='CUSTOM_PROVIDER_HEADER', |
|
93 | 93 | type=int) |
94 | 94 | @click.option( |
95 | 95 | 'provider_app_version', '-a', '--provider-app-version', |
96 | | - help='The provider application version, ' |
97 | | - 'required for publishing verification results') |
| 96 | + help='The provider application version. ' |
| 97 | + 'Required for publishing verification results.') |
98 | 98 | @click.option( |
99 | 99 | 'publish_verification_results', '-r', '--publish-verification-results', |
100 | 100 | default=False, |
101 | | - help='Publish verification results to the broker', |
| 101 | + help='Publish verification results to the broker.', |
102 | 102 | is_flag=True) |
103 | 103 | @click.option( |
104 | 104 | '--verbose/--no-verbose', |
|
0 commit comments