diff --git a/python-pytest-regressions.changes b/python-pytest-regressions.changes index dc79e99..993484b 100644 --- a/python-pytest-regressions.changes +++ b/python-pytest-regressions.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +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á + +- 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..cfd8406 100644 --- a/python-pytest-regressions.spec +++ b/python-pytest-regressions.spec @@ -69,6 +69,10 @@ 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_)" +# 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)"