- Skip test_raw_roundtrip on i586

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-pandas?expand=0&rev=44
This commit is contained in:
Matej Cepl 2020-06-30 13:04:03 +00:00 committed by Git OBS Bridge
parent 66527359b3
commit ca2342b165
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jun 30 13:03:14 UTC 2020 - Matej Cepl <mcepl@suse.com>
- Skip test_raw_roundtrip on i586
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jun 24 01:52:29 UTC 2020 - Todd R <toddrme2178@gmail.com> Wed Jun 24 01:52:29 UTC 2020 - Todd R <toddrme2178@gmail.com>

View File

@ -123,10 +123,15 @@ export http_proxy=http://1.2.3.4 https_proxy=http://1.2.3.4;
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8 export LC_ALL=en_US.UTF-8
export PYTHONDONTWRITEBYTECODE=1 export PYTHONDONTWRITEBYTECODE=1
export SKIP_TESTS="test_oo_optimizable or test_encode_non_c_locale or test_maybe_promote_int_with_int"
# Skip test_raw_roundtrip on i586, gh#pandas-dev/pandas#29712
%ifarch %{ix86}
SKIP_TESTS="$SKIP_TESTS or test_raw_roundtrip"
%endif
mv pandas pandas_temp mv pandas pandas_temp
%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch} %{python_expand export PYTHONPATH=%{buildroot}%{$python_sitearch}
$python -c 'import pandas; print(pandas.show_versions())' $python -c 'import pandas; print(pandas.show_versions())'
xvfb-run py.test-%{$python_version} -n auto -v %{buildroot}%{$python_sitearch}/pandas/tests -k 'not test_oo_optimizable and not test_encode_non_c_locale and not test_maybe_promote_int_with_int' xvfb-run py.test-%{$python_version} -n auto -v %{buildroot}%{$python_sitearch}/pandas/tests -k "not ($SKIP_TESTS)"
} }
mv pandas_temp pandas mv pandas_temp pandas