1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: disable ssl tests
These tests started failing with openssl 1.1
Author: Pirate Praveen <praveen@debian.org>
---
Forwarded: not-needed
Last-Update: 2020-09-27
--- a/Rakefile
+++ b/Rakefile
@@ -11,7 +11,7 @@
Rake::TestTask.new(group) do |t|
t.libs << "test"
t.libs << "lib"
- t.test_files = FileList["test/#{group}/**/*_test.rb"]
+ t.test_files = FileList["test/#{group}/**/*_test.rb"] - FileList["test/#{group}/**/*ssl_test.rb"]
t.options = '-v' if ENV['CI'] || ENV['VERBOSE']
end
end
|