Accepting request 1089802 from devel:languages:python:pytest

- Skip test_different_data_types because of s390x architecture issue.
- Skip test_common_case because of SLE15 i586 precision issue

OBS-URL: https://build.opensuse.org/request/show/1089802
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pytest-regressions?expand=0&rev=5
This commit is contained in:
Dominique Leuenberger 2023-06-01 15:19:05 +00:00 committed by Git OBS Bridge
commit 0370322c10
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue May 30 12:07:58 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>
- Skip test_different_data_types because of s390x architecture issue.
-------------------------------------------------------------------
Mon May 29 09:10:25 UTC 2023 - Markéta Machová <mmachova@suse.com>
- Skip test_common_case because of SLE15 i586 precision issue
-------------------------------------------------------------------
Thu May 25 09:34:08 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>

View File

@ -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)"