Skip to content

Commit 2f7110b

Browse files
committed
fix(verify): exit with status 0 if all pacts are in pending state
1 parent 26e2baa commit 2f7110b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

lib/pact/provider/pact_spec_runner.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def run_specs
9191
::RSpec::Core::CommandLine.new(NoConfigurationOptions.new)
9292
.run(::RSpec.configuration.output_stream, ::RSpec.configuration.error_stream)
9393
end
94-
options[:ignore_failures] ? 0 : exit_code
94+
(all_pacts_pending? || options[:ignore_failures]) ? 0 : exit_code
9595
end
9696

9797
def rspec_runner_options
@@ -159,6 +159,10 @@ def ordered_pact_json(pact_json)
159159
consumer_contract.to_json
160160
end
161161

162+
def all_pacts_pending?
163+
pact_urls.all?{ | pact_url| pact_url.metadata[:pending] }
164+
end
165+
162166
def class_exists? name
163167
Kernel.const_get name
164168
rescue NameError

lib/pact/provider/rspec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def describe_interaction interaction, options
7676
pact_interaction: interaction,
7777
pact_interaction_example_description: interaction_description_for_rerun_command(interaction),
7878
pact_uri: options[:pact_uri],
79-
pact_ignore_failures: options[:pact_uri].metadata[:pending]
79+
pact_ignore_failures: options[:pact_uri].metadata[:pending] || options[:ignore_failures]
8080
}
8181

8282
describe description_for(interaction), metadata do

0 commit comments

Comments
 (0)