summaryrefslogtreecommitdiffstats
path: root/debian/patches/0005-Skip-failing-tests.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:10:24 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:10:24 +0000
commitaeecf075f2a010ecfc40b387f8964d02f21bc6d2 (patch)
treebc334a37a8e7e3efca9b204664d8096513bb1e1a /debian/patches/0005-Skip-failing-tests.patch
parentMerging upstream version 2024.05.26. (diff)
downloadyt-dlp-aeecf075f2a010ecfc40b387f8964d02f21bc6d2.tar.xz
yt-dlp-aeecf075f2a010ecfc40b387f8964d02f21bc6d2.zip
Adding debian version 2024.05.26-1.debian/2024.05.26-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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: