File: skip-flaky-tests.patch

package info (click to toggle)
rust-prometheus 0.13.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 740 kB
  • sloc: makefile: 25
file content (22 lines) | stat: -rw-r--r-- 633 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
Index: prometheus/src/registry.rs
===================================================================
--- prometheus.orig/src/registry.rs
+++ prometheus/src/registry.rs
@@ -371,7 +371,7 @@ mod tests {
         counter_vec.with_label_values(&["1", "2"]).inc();
     }
 
-    #[test]
+    /*#[test]
     fn test_default_registry() {
         let counter = Counter::new("test", "test help").unwrap();
 
@@ -386,7 +386,7 @@ mod tests {
             .unregister(Box::new(counter.clone()))
             .is_err());
         assert!(register(Box::new(counter.clone())).is_ok());
-    }
+    }*/
 
     #[test]
     fn test_gather_order() {