File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def run_specs
91
91
::RSpec ::Core ::CommandLine . new ( NoConfigurationOptions . new )
92
92
. run ( ::RSpec . configuration . output_stream , ::RSpec . configuration . error_stream )
93
93
end
94
- ( all_pacts_pending? || options [ :ignore_failures ] ) ? 0 : exit_code
94
+ pending_mode? ? 0 : exit_code
95
95
end
96
96
97
97
def rspec_runner_options
@@ -148,7 +148,7 @@ def configure_output
148
148
149
149
::RSpec . configuration . full_backtrace = @options [ :full_backtrace ]
150
150
151
- ::RSpec . configuration . failure_color = :yellow if @options [ :ignore_failures ]
151
+ ::RSpec . configuration . failure_color = :yellow if pending_mode?
152
152
end
153
153
154
154
def ordered_pact_json ( pact_json )
@@ -169,6 +169,10 @@ def class_exists? name
169
169
false
170
170
end
171
171
172
+ def pending_mode?
173
+ ( all_pacts_pending? || options [ :ignore_failures ] )
174
+ end
175
+
172
176
def executing_with_ruby?
173
177
ENV [ 'PACT_EXECUTING_LANGUAGE' ] == 'ruby'
174
178
end
You can’t perform that action at this time.
0 commit comments