From 47e753917bf4834f23dd91b66a7418850e466ce6984659e546b3c55bef30e314 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Mon, 20 Oct 2025 12:34:41 +0000 Subject: [PATCH] Accepting request 1312340 from home:nkrapp:branches:devel:languages:python - ignore testresults from test_numbits, fails sometimes because of slow hypothesis performance on i586 (bsc#1251955) OBS-URL: https://build.opensuse.org/request/show/1312340 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coverage?expand=0&rev=152 --- python-coverage.changes | 6 ++++++ python-coverage.spec | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/python-coverage.changes b/python-coverage.changes index 6aaebc0..cc12cbe 100644 --- a/python-coverage.changes +++ b/python-coverage.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Oct 20 08:45:59 UTC 2025 - Nico Krapp + +- ignore testresults from test_numbits, fails sometimes because of slow + hypothesis performance on i586 (bsc#1251955) + ------------------------------------------------------------------- Mon Oct 13 09:16:29 UTC 2025 - Dirk Müller diff --git a/python-coverage.spec b/python-coverage.spec index 9acc74a..c1e0dc6 100644 --- a/python-coverage.spec +++ b/python-coverage.spec @@ -130,6 +130,10 @@ donttest+=" or test_process" donttest+=" or test_plugins" # asserts PYTHONPATH is empty, which it can't be donttest+=" or test_report_wildcard or test_run_omit_vs_report_omit" +%ifarch i586 +# flaky due to bad hypothesis performance +donttest+=" or test_numbits.py" +%endif %pytest_arch -n auto --no-flaky-report -k "$donttest" -rp ||: %pytest_arch -n auto --no-flaky-report -k "not ($donttest)"