summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-tenacity
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-tenacity')
-rw-r--r--meta-python/recipes-devtools/python/python3-tenacity/0001-ptest-skip-a-test-that-does-not-pass-on-qemu.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-tenacity/0001-ptest-skip-a-test-that-does-not-pass-on-qemu.patch b/meta-python/recipes-devtools/python/python3-tenacity/0001-ptest-skip-a-test-that-does-not-pass-on-qemu.patch
new file mode 100644
index 0000000000..7fb9458a32
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-tenacity/0001-ptest-skip-a-test-that-does-not-pass-on-qemu.patch
@@ -0,0 +1,27 @@
1From 8895af81a672bb8aad2aa8e32b93cb9ca96cac63 Mon Sep 17 00:00:00 2001
2From: Jan Vermaete <jan.vermaete@oip.be>
3Date: Tue, 25 Nov 2025 10:52:15 +0100
4Subject: [PATCH 1/1] ptest: skip a test that does not pass on qemu
5
6Upstream-Status: Inappropriate [oe specific]
7
8Signed-off-by: Jan Vermaete <jan.vermaete@oip.be>
9---
10 tests/test_asyncio.py | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/tests/test_asyncio.py b/tests/test_asyncio.py
14index 0b74476..2da0784 100644
15--- a/tests/test_asyncio.py
16+++ b/tests/test_asyncio.py
17@@ -192,6 +192,7 @@ class TestContextManager(unittest.TestCase):
18 else:
19 raise Exception
20
21+ @unittest.skip("Failing in ptest with qemu")
22 @asynctest
23 async def test_sleeps(self):
24 start = current_time_ms()
25--
262.43.0
27