We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98caafd commit e216165Copy full SHA for e216165
1 file changed
Rakefile
@@ -49,8 +49,9 @@ namespace :integration do
49
unless File.exist?(File.join(it_path, 'Gemfile.lock'))
50
raise "bundle not installed, run `rake integration:install'"
51
end
52
- loader = "ARGV.each { |f| require f }" ; lib = [ 'lib', it_path ]
+ loader = "ARGV.each { |f| require f }"
53
+ lib = [ File.expand_path('../lib', __FILE__), it_path ]
54
test_files = FileList['src/test/integration/*_test.rb'].map { |path| path.sub('src/test/integration/', '') }
- ruby "-I#{lib.join(':')} -C src/test/integration -rbundler/setup -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
55
+ ruby "-I#{lib.join(':')} -C src/test/integration -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
56
57
0 commit comments