File: disable-ssl-test.patch

package info (click to toggle)
ruby-redis 5.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,168 kB
  • sloc: ruby: 11,501; makefile: 117; sh: 24
file content (19 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (2)
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