From 2c11e7d504109170b61413413ced916a74bc26ca1f5aff5701236d7a02641324 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 30 May 2023 08:12:48 +0000 Subject: [PATCH 1/2] Accepting request 1089543 from home:mcalabkova:branches:devel:languages:python - Skip test_common_case because of SLE15 i586 precision issue OBS-URL: https://build.opensuse.org/request/show/1089543 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-regressions?expand=0&rev=9 --- python-pytest-regressions.changes | 5 +++++ python-pytest-regressions.spec | 2 ++ 2 files changed, 7 insertions(+) diff --git a/python-pytest-regressions.changes b/python-pytest-regressions.changes index dc79e99..c101d64 100644 --- a/python-pytest-regressions.changes +++ b/python-pytest-regressions.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 29 09:10:25 UTC 2023 - Markéta Machová + +- Skip test_common_case because of SLE15 i586 precision issue + ------------------------------------------------------------------- Thu May 25 09:34:08 UTC 2023 - Daniel Garcia diff --git a/python-pytest-regressions.spec b/python-pytest-regressions.spec index cf7577e..5b51a74 100644 --- a/python-pytest-regressions.spec +++ b/python-pytest-regressions.spec @@ -69,6 +69,8 @@ Python fixtures to write regression tests. donttest="test_image_regression" # Requires python-pandas donttest+=" or test_foo" +# Precision issues on i586 on SLE15 +donttest+=" or (test_common_case and not test_common_case_)" # Ignore tests that depends on python-pandas %pytest --ignore tests/test_num_regression.py --ignore tests/test_dataframe_regression.py -k "not ($donttest)" From 341fa220d8eac8138bece0bc5883c22bbe872991c6767f0c2510df623516a7db Mon Sep 17 00:00:00 2001 From: Daniel Garcia Date: Tue, 30 May 2023 12:08:43 +0000 Subject: [PATCH 2/2] - Skip test_different_data_types because of s390x architecture issue. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-regressions?expand=0&rev=10 --- python-pytest-regressions.changes | 5 +++++ python-pytest-regressions.spec | 2 ++ 2 files changed, 7 insertions(+) diff --git a/python-pytest-regressions.changes b/python-pytest-regressions.changes index c101d64..993484b 100644 --- a/python-pytest-regressions.changes +++ b/python-pytest-regressions.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 30 12:07:58 UTC 2023 - Daniel Garcia + +- Skip test_different_data_types because of s390x architecture issue. + ------------------------------------------------------------------- Mon May 29 09:10:25 UTC 2023 - Markéta Machová diff --git a/python-pytest-regressions.spec b/python-pytest-regressions.spec index 5b51a74..cfd8406 100644 --- a/python-pytest-regressions.spec +++ b/python-pytest-regressions.spec @@ -71,6 +71,8 @@ donttest="test_image_regression" donttest+=" or test_foo" # Precision issues on i586 on SLE15 donttest+=" or (test_common_case and not test_common_case_)" +# Failing test on s390x +donttest+=" or test_different_data_types" # Ignore tests that depends on python-pandas %pytest --ignore tests/test_num_regression.py --ignore tests/test_dataframe_regression.py -k "not ($donttest)"