File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,11 @@ def run_specs
56
56
57
57
def run_with_pact_url_string
58
58
pact_repository_uri_options = { }
59
+ pact_repository_uri_options [ :username ] = ENV [ 'PACT_BROKER_USERNAME' ] if ENV [ 'PACT_BROKER_USERNAME' ]
60
+ pact_repository_uri_options [ :password ] = ENV [ 'PACT_BROKER_PASSWORD' ] if ENV [ 'PACT_BROKER_PASSWORD' ]
61
+ pact_repository_uri_options [ :token ] = ENV [ 'PACT_BROKER_TOKEN' ]
59
62
pact_repository_uri_options [ :username ] = options [ :pact_broker_username ] if options [ :pact_broker_username ]
60
63
pact_repository_uri_options [ :password ] = options [ :pact_broker_password ] if options [ :pact_broker_password ]
61
- pact_repository_uri_options [ :token ] = ENV [ 'PACT_BROKER_TOKEN' ]
62
64
pact_uri = ::Pact ::Provider ::PactURI . new ( options [ :pact_uri ] , pact_repository_uri_options )
63
65
Pact ::Provider ::PactSpecRunner . new ( [ pact_uri ] , pact_spec_options ) . run
64
66
end
You can’t perform that action at this time.
0 commit comments