File: dont-try-to-launch-mongod.patch

package info (click to toggle)
libmongodb-perl 2.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,292 kB
  • sloc: perl: 14,421; python: 299; makefile: 20; sh: 11
file content (17 lines) | stat: -rw-r--r-- 502 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: don't wait for MongoDB: no more part of Debian
 This increase test speed
Author: Yadd <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2025-04-03

--- a/t/lib/MongoDBTest.pm
+++ b/t/lib/MongoDBTest.pm
@@ -130,6 +130,8 @@
 sub skip_unless_mongod {
     my $min_version = shift;
     my $conn;
+    plan skip_all => "MongoDB is no more part of Debian";
+    return;
     eval {
         $conn = build_client( server_selection_timeout_ms => 10000 );
         my $topo = $conn->_topology;