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.
1 parent 6cdb48f commit e883cedCopy full SHA for e883ced
rake/common.rb
@@ -1,4 +1,10 @@
1
# Constants
2
BASEDIR = File.expand_path('..', File.dirname(__FILE__)).freeze
3
PUPPET_BINARY = File.join(BASEDIR, 'bin', 'puppet').freeze
4
-TEST_COMMAND = "parallel_rspec --suffix '_spec.rb$'".freeze
+TEST_COMMAND = begin
5
+ if ENV['TRAVIS']
6
+ "rspec --suffix '_spec.rb$'"
7
+ else
8
+ "parallel_rspec --suffix '_spec.rb$'"
9
+ end
10
+end.freeze
0 commit comments