Skip to content

Commit e8d4a55

Browse files
committed
fix: show pending test output in yellow instead of red
1 parent f09de86 commit e8d4a55

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/pact/provider/pact_spec_runner.rb

+6-2
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-
(all_pacts_pending? || options[:ignore_failures]) ? 0 : exit_code
94+
pending_mode? ? 0 : exit_code
9595
end
9696

9797
def rspec_runner_options
@@ -148,7 +148,7 @@ def configure_output
148148

149149
::RSpec.configuration.full_backtrace = @options[:full_backtrace]
150150

151-
::RSpec.configuration.failure_color = :yellow if @options[:ignore_failures]
151+
::RSpec.configuration.failure_color = :yellow if pending_mode?
152152
end
153153

154154
def ordered_pact_json(pact_json)
@@ -169,6 +169,10 @@ def class_exists? name
169169
false
170170
end
171171

172+
def pending_mode?
173+
(all_pacts_pending? || options[:ignore_failures])
174+
end
175+
172176
def executing_with_ruby?
173177
ENV['PACT_EXECUTING_LANGUAGE'] == 'ruby'
174178
end

0 commit comments

Comments
 (0)