File: tests_skip_capturer.patch

package info (click to toggle)
humanfriendly 10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 940 kB
  • sloc: python: 3,206; makefile: 67; sh: 33
file content (18 lines) | stat: -rw-r--r-- 786 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- a/humanfriendly/tests.py
+++ b/humanfriendly/tests.py
@@ -1094,6 +1094,7 @@
             self.assertEqual([], capturer.stdout.get_lines())
             self.assertEqual([text], capturer.stderr.get_lines())
 
+    @unittest.skip("Debian: skip until #954115 - RFP: capturer is resolved")
     def test_generate_warning(self):
         """Test the :func:`humanfriendly.terminal.warning()` function."""
         from capturer import CaptureOutput
@@ -1171,6 +1172,7 @@
             sys.stdout = saved_stdout
             sys.stderr = saved_stderr
 
+    @unittest.skip("Debian: skip until #954115 - RFP: capturer is resolved")
     def test_terminal_capabilities(self):
         """Test the functions that check for terminal capabilities."""
         from capturer import CaptureOutput