File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,9 @@ namespace :test do
61
61
Rake ::Task [ 'test:ci_reporter' ] . invoke if ENV [ 'CI' ]
62
62
subprojects . each do |project |
63
63
puts '-' *80
64
- sh "cd #{ __current__ . join ( project ) } && unset BUNDLE_GEMFILE && bundle exec rake test:integration"
64
+ sh "cd #{ __current__ . join ( project ) } && unset BUNDLE_GEMFILE &&" +
65
+ %Q| #{ ENV [ 'TEST_BUNDLE_GEMFILE' ] ? "BUNDLE_GEMFILE=#{ ENV [ 'TEST_BUNDLE_GEMFILE' ] } " : '' } | +
66
+ " bundle exec rake test:integration"
65
67
puts "\n "
66
68
end
67
69
Rake ::Task [ 'test:coveralls' ] . invoke if ENV [ 'CI' ] && defined? ( RUBY_VERSION ) && RUBY_VERSION > '1.9'
@@ -72,7 +74,9 @@ namespace :test do
72
74
Rake ::Task [ 'test:ci_reporter' ] . invoke if ENV [ 'CI' ]
73
75
subprojects . each do |project |
74
76
puts '-' *80
75
- sh "cd #{ __current__ . join ( project ) } && unset BUNDLE_GEMFILE && bundle exec rake test:all"
77
+ sh "cd #{ __current__ . join ( project ) } && unset BUNDLE_GEMFILE &&" +
78
+ %Q| #{ ENV [ 'TEST_BUNDLE_GEMFILE' ] ? "BUNDLE_GEMFILE=#{ ENV [ 'TEST_BUNDLE_GEMFILE' ] } " : '' } | +
79
+ " bundle exec rake test:all"
76
80
puts "\n "
77
81
end
78
82
end
You can’t perform that action at this time.
0 commit comments