Skip to content

Commit 66ad53e

Browse files
committed
[travis-ci] ~~actually its "pre-release" version gem loading on 1.7.22?~~
1 parent dea9934 commit 66ad53e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
- TEST_PROFILE=test-1.7.4
1212
- TEST_PROFILE=test-1.7.13
1313
- 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
1515
- TEST_PROFILE=test-9.0.1.0
1616
- TEST_PROFILE=test-9.0.4.0
1717

Rakefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ namespace :integration do
5858
end
5959
loader = "ARGV.each { |f| require f }"
6060
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(' ')}"
6263
end
6364
end

0 commit comments

Comments
 (0)