summaryrefslogtreecommitdiffstats
path: root/debian/patches/0005-Skip-failing-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0005-Skip-failing-tests.patch')
-rw-r--r--debian/patches/0005-Skip-failing-tests.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/patches/0005-Skip-failing-tests.patch b/debian/patches/0005-Skip-failing-tests.patch
deleted file mode 100644
index 3dbe6e3..0000000
--- a/debian/patches/0005-Skip-failing-tests.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Skip a failing test
-Author: Unit 193 <unit193@debian.org>
-Bug: https://github.com/yt-dlp/yt-dlp/issues/9659
-Forwarded: not-needed
-
---- yt-dlp-2024.04.09.orig/test/test_networking.py
-+++ yt-dlp-2024.04.09/test/test_networking.py
-@@ -543,6 +543,7 @@ class TestHTTPRequestHandler(TestRequest
-
- @pytest.mark.parametrize('handler', ['Urllib', 'Requests', 'CurlCFFI'], indirect=True)
- def test_connect_timeout(self, handler):
-+ pytest.skip(f'Skipping failing test.')
- # nothing should be listening on this port
- connect_timeout_url = 'http://10.255.255.255'
- with handler(timeout=0.01) as rh: