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 f6b45e3 + a00aabb commit 4b98af8Copy full SHA for 4b98af8
lib/puppetlabs_spec_helper/rake_tasks.rb
@@ -95,8 +95,8 @@
95
else
96
begin
97
args = ['-t', 'rspec']
98
- args.push('--').concat(ENV['CI_SPEC_OPTIONS'].strip.split(' ')).push('--') unless ENV['CI_SPEC_OPTIONS'].nil? || ENV['CI_SPEC_OPTIONS'].strip.empty?
99
- args.concat(Rake::FileList[pattern].to_a)
+ args += ENV['CI_SPEC_OPTIONS'].strip.split(' ') unless ENV['CI_SPEC_OPTIONS'].nil? || ENV['CI_SPEC_OPTIONS'].strip.empty?
+ args += Rake::FileList[pattern].to_a
100
101
ParallelTests::CLI.new.run(args)
102
end
0 commit comments