We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e4f2eef + 20dd0d7 commit 77ecfebCopy full SHA for 77ecfeb
lib/puppetlabs_spec_helper/rake_tasks.rb
@@ -111,8 +111,9 @@
111
warn 'No files for parallel_spec to run against'
112
else
113
114
- args = ['-t', 'rspec']
115
- args.push('--').concat(ENV['CI_SPEC_OPTIONS'].strip.split).push('--') unless ENV['CI_SPEC_OPTIONS'].nil? || ENV['CI_SPEC_OPTIONS'].strip.empty?
+ args = ['--type', 'rspec']
+ additional_options = ['--format', 'progress'] + ENV['CI_SPEC_OPTIONS'].to_s.strip.split
116
+ args.push('--').concat(additional_options).push('--')
117
args.concat(Rake::FileList[pattern].to_a)
118
119
ParallelTests::CLI.new.run(args)
0 commit comments