File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11
11
- TEST_PROFILE=test-1.7.4
12
12
- TEST_PROFILE=test-1.7.13
13
13
- TEST_PROFILE=test-1.7.18
14
- - TEST_PROFILE=test-1.7.21 # NOTE 1.7.22 has load-path issues - loads built-in openssl
14
+ - TEST_PROFILE=test-1.7.22
15
15
- TEST_PROFILE=test-9.0.1.0
16
16
- TEST_PROFILE=test-9.0.4.0
17
17
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ namespace :integration do
58
58
end
59
59
loader = "ARGV.each { |f| require f }"
60
60
test_files = FileList [ 'src/test/integration/*_test.rb' ] . to_a
61
- ruby "-Ilib:. -e \" #{ loader } \" #{ test_files . map { |f | "\" #{ f } \" " } . join ( ' ' ) } "
61
+ lib = [ 'lib' ] ; lib << '.' if RUBY_VERSION > '2.2'
62
+ ruby "-I#{ lib . join ( ':' ) } -e \" #{ loader } \" #{ test_files . map { |f | "\" #{ f } \" " } . join ( ' ' ) } "
62
63
end
63
64
end
You can’t perform that action at this time.
0 commit comments