File: dont-require-selenium-statistics.patch

package info (click to toggle)
ruby-capybara 3.36.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,380 kB
  • sloc: ruby: 23,399; javascript: 748; makefile: 11
file content (31 lines) | stat: -rw-r--r-- 943 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From: Daniel Leidert <dleidert@debian.org>
Date: Wed, 17 Nov 2021 20:18:01 +0100
Subject: Don't require selenium_statistics

This gem has not yet been packaged and is optional.

Forwarded: not-needed
---
 spec/spec_helper.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 1e6b68b..c738295 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -2,7 +2,7 @@
 
 require 'rspec/expectations'
 require 'webdrivers' if ENV['CI'] || ENV['WEBDRIVERS']
-require 'selenium_statistics'
+#require 'selenium_statistics'
 if ENV['TRAVIS']
   require 'coveralls'
   Coveralls.wear! do
@@ -96,5 +96,5 @@ RSpec.configure do |config|
   end
   config.filter_run_including focus_: true unless ENV['CI']
   config.run_all_when_everything_filtered = true
-  config.after(:suite) { SeleniumStatistics.print_results }
+  #config.after(:suite) { SeleniumStatistics.print_results }
 end