summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <jmccrae@chf.io>2022-03-15 09:48:45 -0700
committerJohn McCrae <jmccrae@chf.io>2022-03-15 09:48:45 -0700
commitf73c7cfaeeddbf0fb003edea5550843b62183b53 (patch)
treeb4066d9dfd87bcfd050eb5c64ab5d1ac47e8f09a
parentf4558233a68f7359909fe26e98a432df2997d8a1 (diff)
downloadchef-f73c7cfaeeddbf0fb003edea5550843b62183b53.tar.gz
Updated Rspec to add verbose logging to track down intermittent failures on Windows
Signed-off-by: John McCrae <jmccrae@chf.io>
-rw-r--r--tasks/rspec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/rspec.rb b/tasks/rspec.rb
index 18f3318e55..f6038d6b9a 100644
--- a/tasks/rspec.rb
+++ b/tasks/rspec.rb
@@ -77,7 +77,7 @@ begin
RSpec::Core::RakeTask.new(sub) do |t|
puts "--- Running chef #{sub} specs"
t.verbose = false
- t.rspec_opts = %w{--profile}
+ t.rspec_opts = %w{--profile --format doc}
t.pattern = FileList["spec/#{sub}/**/*_spec.rb"]
end
end