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
|