From 1adc53b86b2e3911a7f730383af5cc317a252cf5c31e7c471c7bcf2c9efc63b0 Mon Sep 17 00:00:00 2001 From: Daniel Garcia Date: Mon, 11 Mar 2024 17:12:13 +0000 Subject: [PATCH] - Skip problematic multprocessing test for ALP, bsc#1221034 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyenchant?expand=0&rev=38 --- python-pyenchant.changes | 5 +++++ python-pyenchant.spec | 10 ++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/python-pyenchant.changes b/python-pyenchant.changes index 26f8017..9fa45dd 100644 --- a/python-pyenchant.changes +++ b/python-pyenchant.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Mar 11 17:11:43 UTC 2024 - Daniel Garcia + +- Skip problematic multprocessing test for ALP, bsc#1221034 + ------------------------------------------------------------------- Sat Sep 30 09:49:17 UTC 2023 - Ben Greiner diff --git a/python-pyenchant.spec b/python-pyenchant.spec index f7f0538..0d8d6d9 100644 --- a/python-pyenchant.spec +++ b/python-pyenchant.spec @@ -1,7 +1,7 @@ # # spec file for package python-pyenchant # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -66,7 +66,13 @@ rm -rf website .github archive tools %check export LANG=en_US.UTF-8 %python_exec -c 'import enchant; print(vars(enchant.Dict()))' -%pytest +ignore="" +%if 0%{suse_version} == 1600 +# test_can_use_multiprocessing fails to build in OBS for ALP, +# bsc#1221034 +ignore="--ignore tests/test_multiprocessing.py" +%endif +%pytest $ignore %files %{python_files} %license LICENSE.txt