Skip to content

Commit 71888ac

Browse files
committed
parallel_spec_standalone: use --format progress
For the past decade, people used a .rspec_parallel to configure this. We can set it directly in the rake task. That enables us to remove the .rspec_parallel and ultimately reduces the number of files required for pdk update/modulesync.
1 parent e7173ab commit 71888ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/puppetlabs_spec_helper/rake_tasks.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
warn 'No files for parallel_spec to run against'
112112
else
113113

114-
args = ['-t', 'rspec']
114+
args = ['--format', 'progress', '-t', 'rspec']
115115
args.push('--').concat(ENV['CI_SPEC_OPTIONS'].strip.split).push('--') unless ENV['CI_SPEC_OPTIONS'].nil? || ENV['CI_SPEC_OPTIONS'].strip.empty?
116116
args.concat(Rake::FileList[pattern].to_a)
117117

0 commit comments

Comments
 (0)