Skip test_data_frames_with_timestamp_columns on s390x until Pandas is fixed

The test fails on big endian, see https://github.com/HypothesisWorks/hypothesis/issues/2894

When https://github.com/pandas-dev/pandas/commit/95a86a9884e is released, we can revert this.
epel9
Miro Hrončok 4 years ago
parent 3c2d0806b4
commit 4d952df4b6

@ -1,6 +1,6 @@
Name: python-hypothesis
Version: 6.6.0
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Library for property based testing
License: MPLv2.0
@ -87,7 +87,11 @@ install -Dpm0644 -t %{buildroot}%{_mandir}/man1 docs/_build/man/hypothesis.1
%if %{with tests}
%check
%pytest -v -n auto \
%if "%{_arch}" == "s390x" %dnl # https://github.com/pandas-dev/pandas/commit/95a86a9884e
-k "not test_registered_from_entrypoint and not test_data_frames_with_timestamp_columns" \
%else
-k "not test_registered_from_entrypoint" \
%endif
--ignore tests/codemods \
--ignore tests/dpcontracts \
--ignore tests/redis \
@ -110,6 +114,9 @@ install -Dpm0644 -t %{buildroot}%{_mandir}/man1 docs/_build/man/hypothesis.1
%changelog
* Thu Mar 11 2021 Miro Hrončok <mhroncok@redhat.com> - 6.6.0-2
- Skip test_data_frames_with_timestamp_columns on s390x until Pandas is fixed
* Mon Mar 08 2021 Miro Hrončok <mhroncok@redhat.com> - 6.6.0-1
- Update to 6.6.0
- Add subpackages with extras

Loading…
Cancel
Save