2015-11-11 11:36:03 +01:00
|
|
|
#
|
2021-12-06 10:30:18 +01:00
|
|
|
# spec file
|
2015-11-11 11:36:03 +01:00
|
|
|
#
|
2022-01-10 21:28:02 +01:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2015-11-11 11:36:03 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-09-17 15:03:22 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-12-09 11:08:24 +01:00
|
|
|
#
|
2015-11-11 11:36:03 +01:00
|
|
|
|
|
|
|
|
2017-02-24 15:34:42 +01:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2020-08-14 23:42:04 +02:00
|
|
|
%define skip_python2 1
|
2022-01-10 21:28:02 +01:00
|
|
|
%define skip_python36 1
|
2020-08-14 23:42:04 +02:00
|
|
|
%bcond_with ringdisabled
|
2018-09-13 16:27:57 +02:00
|
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
|
|
%if "%{flavor}" == "test"
|
2019-04-30 15:27:39 +02:00
|
|
|
%define psuffix -test
|
2018-09-13 16:27:57 +02:00
|
|
|
%bcond_without test
|
2020-08-14 23:42:04 +02:00
|
|
|
# Magic for OBS Staging. Only build the flavors required by
|
|
|
|
# other packages in the ring.
|
|
|
|
%if %{with ringdisabled}
|
|
|
|
ExclusiveArch: do_not_build
|
|
|
|
%endif
|
2018-09-13 16:27:57 +02:00
|
|
|
%else
|
2019-04-30 15:27:39 +02:00
|
|
|
%define psuffix %{nil}
|
2018-09-05 13:17:34 +02:00
|
|
|
%bcond_with test
|
2018-09-13 16:27:57 +02:00
|
|
|
%endif
|
2019-04-30 15:27:39 +02:00
|
|
|
Name: python-hypothesis%{psuffix}
|
2022-01-10 21:28:02 +01:00
|
|
|
Version: 6.35.0
|
2015-11-11 11:36:03 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: A library for property based testing
|
2015-12-09 11:08:24 +01:00
|
|
|
License: MPL-2.0
|
2020-08-14 23:42:04 +02:00
|
|
|
URL: https://github.com/HypothesisWorks/hypothesis
|
|
|
|
# Source is the `hypothesis-python` subdir of the Github repository.
|
|
|
|
# Edit the `_service` file and run `osc service runall` for updates.
|
2021-03-25 08:53:05 +01:00
|
|
|
# See also https://hypothesis.readthedocs.io/en/latest/packaging.html
|
2022-01-10 21:28:02 +01:00
|
|
|
Source: hypothesis-python-%{version}.tar.gz
|
2021-03-25 08:53:05 +01:00
|
|
|
# PATCH-FIX-OPENSUSE dont import numpy and pandas and skip tests if these optional packages are not available.
|
|
|
|
Patch0: importorskip-numpy-pandas.patch
|
2020-08-14 23:42:04 +02:00
|
|
|
%if 0%{?suse_version} >= 1500
|
|
|
|
BuildRequires: %{pythons >= 3.5.2}
|
|
|
|
%else
|
|
|
|
BuildRequires: %{python_module base >= 3.5.2}
|
|
|
|
%endif
|
|
|
|
BuildRequires: %{python_module setuptools >= 36.2}
|
2017-06-30 09:30:34 +02:00
|
|
|
BuildRequires: fdupes
|
2017-02-24 15:34:42 +01:00
|
|
|
BuildRequires: python-rpm-macros
|
2020-08-14 23:42:04 +02:00
|
|
|
Requires: python-attrs >= 19.2.0
|
|
|
|
Requires: python-sortedcontainers >= 2.1.0
|
2020-11-11 13:23:09 +01:00
|
|
|
Requires(post): update-alternatives
|
2021-03-25 08:53:05 +01:00
|
|
|
Requires(preun):update-alternatives
|
2021-12-14 14:03:46 +01:00
|
|
|
# SECTION requires_extra
|
|
|
|
# consuming packages need to declare these optional dependencies explicitly
|
2020-08-14 23:42:04 +02:00
|
|
|
Recommends: python-Django >= 2.2
|
2021-12-14 14:03:46 +01:00
|
|
|
Recommends: python-black >= 19.10
|
|
|
|
Recommends: python-click >= 7.0
|
2020-08-14 23:42:04 +02:00
|
|
|
Recommends: python-dpcontracts >= 0.4
|
|
|
|
Recommends: python-lark-parser >= 0.6.5
|
2021-03-25 08:53:05 +01:00
|
|
|
Recommends: python-libcst >= 0.3.16
|
2018-08-31 13:55:52 +02:00
|
|
|
Recommends: python-numpy >= 1.9.0
|
2021-03-25 08:53:05 +01:00
|
|
|
Recommends: python-pandas >= 0.25
|
2021-12-14 14:03:46 +01:00
|
|
|
Recommends: python-pytest >= 4.6
|
2020-08-14 23:42:04 +02:00
|
|
|
Recommends: python-python-dateutil >= 1.4
|
2021-12-14 14:03:46 +01:00
|
|
|
Recommends: python-pytz >= 2014.1
|
2020-11-19 12:58:51 +01:00
|
|
|
Recommends: python-redis >= 3.0.0
|
2021-12-14 14:03:46 +01:00
|
|
|
Recommends: python-rich >= 9.0
|
|
|
|
Recommends: (python-importlib_metadata >= 3.6 if python-base < 3.8)
|
|
|
|
# /SECTION
|
2018-06-25 13:02:02 +02:00
|
|
|
BuildArch: noarch
|
2019-03-18 09:14:01 +01:00
|
|
|
%if %{with test}
|
2018-06-07 20:15:11 +02:00
|
|
|
# SECTION test requirements
|
2020-08-14 23:42:04 +02:00
|
|
|
BuildRequires: %{python_module Django >= 2.2}
|
|
|
|
BuildRequires: %{python_module attrs >= 19.2.0}
|
2021-12-14 14:03:46 +01:00
|
|
|
BuildRequires: %{python_module black >= 19.10}
|
2021-03-25 08:53:05 +01:00
|
|
|
BuildRequires: %{python_module dpcontracts >= 0.4}
|
2020-11-19 12:58:51 +01:00
|
|
|
BuildRequires: %{python_module fakeredis}
|
2018-06-07 20:15:11 +02:00
|
|
|
BuildRequires: %{python_module flaky}
|
2020-08-14 23:42:04 +02:00
|
|
|
BuildRequires: %{python_module hypothesis = %{version}}
|
2021-03-25 08:53:05 +01:00
|
|
|
BuildRequires: %{python_module importlib_resources >= 3.3.0 if %python-base < 3.7}
|
2020-08-14 23:42:04 +02:00
|
|
|
BuildRequires: %{python_module lark-parser >= 0.6.5}
|
2021-03-25 08:53:05 +01:00
|
|
|
BuildRequires: %{python_module libcst >= 0.3.16}
|
2020-08-14 23:42:04 +02:00
|
|
|
BuildRequires: %{python_module pexpect}
|
2021-03-25 08:53:05 +01:00
|
|
|
BuildRequires: %{python_module pytest >= 4.6}
|
2020-08-14 23:42:04 +02:00
|
|
|
BuildRequires: %{python_module pytest-xdist}
|
|
|
|
BuildRequires: %{python_module python-dateutil >= 1.4}
|
|
|
|
BuildRequires: %{python_module sortedcontainers >= 2.1.0}
|
2020-07-03 18:35:41 +02:00
|
|
|
BuildRequires: %{python_module typing_extensions}
|
2021-03-25 08:53:05 +01:00
|
|
|
BuildRequires: %{python_module numpy >= 1.9.0 if (%python-base without python36-base)}
|
|
|
|
BuildRequires: %{python_module pandas >= 0.25 if (%python-base without python36-base)}
|
2018-06-07 20:15:11 +02:00
|
|
|
# /SECTION
|
2021-12-14 14:03:46 +01:00
|
|
|
%endif
|
2017-02-24 15:34:42 +01:00
|
|
|
%python_subpackages
|
2015-11-11 11:36:03 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
Hypothesis is a library for testing your Python code against a much larger range
|
|
|
|
of examples than you would ever want to write by hand. It's based on the Haskell
|
|
|
|
library, Quickcheck, and is designed to integrate seamlessly into your existing
|
|
|
|
Python unit testing work flow.
|
|
|
|
|
|
|
|
Hypothesis works with most widely used versions of Python. It supports implementations
|
|
|
|
compatible with 2.6, 2.7 and 3.3+, and is known to work on CPython and PyPy (but not
|
|
|
|
PyPy3 until they support a 3.3 compatible version of the language). It does *not* currently
|
|
|
|
work on Jython or on Python 3.0 through 3.2.
|
|
|
|
|
|
|
|
%prep
|
2022-01-10 21:28:02 +01:00
|
|
|
%setup -q -n hypothesis-python-%{version}
|
|
|
|
%autopatch -p1
|
|
|
|
|
2020-08-14 23:42:04 +02:00
|
|
|
# gh#HypothesisWorks/hypothesis#2447: make sure arr==0.0 is an array on 32-bit
|
|
|
|
sed -i 's/assert (arr == 0.0)/assert np.asarray(arr == 0.0)/' tests/numpy/test_gen_data.py
|
2015-11-11 11:36:03 +01:00
|
|
|
|
|
|
|
%build
|
2020-08-14 23:42:04 +02:00
|
|
|
%if !%{with test}
|
2017-02-24 15:34:42 +01:00
|
|
|
%python_build
|
2020-08-14 23:42:04 +02:00
|
|
|
%endif
|
2015-11-11 11:36:03 +01:00
|
|
|
|
|
|
|
%install
|
2018-09-17 15:03:22 +02:00
|
|
|
%if !%{with test}
|
2017-02-24 15:34:42 +01:00
|
|
|
%python_install
|
2020-08-14 23:42:04 +02:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2018-09-05 13:17:34 +02:00
|
|
|
|
2020-11-11 13:23:09 +01:00
|
|
|
%python_clone -a %{buildroot}%{_bindir}/hypothesis
|
2020-11-19 12:58:51 +01:00
|
|
|
%endif
|
2020-11-11 13:23:09 +01:00
|
|
|
|
|
|
|
%post
|
|
|
|
%python_install_alternative hypothesis
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%python_uninstall_alternative hypothesis
|
|
|
|
|
2018-09-05 13:17:34 +02:00
|
|
|
%check
|
2019-04-30 15:27:39 +02:00
|
|
|
%if %{with test}
|
2020-08-14 23:42:04 +02:00
|
|
|
# theses tests try to write into global python_sitelib
|
|
|
|
# https://github.com/HypothesisWorks/hypothesis/issues/2546
|
2021-03-25 08:53:05 +01:00
|
|
|
donttest="test_updating_the_file_include_new_shrinkers"
|
|
|
|
donttest+=" or test_can_learn_to_normalize_the_unnormalized"
|
|
|
|
# extraneous encoding
|
|
|
|
python36_donttest+=" or (test_cli_python_equivalence and json)"
|
|
|
|
# typing_extension problem on python36 and Leap 15's python3
|
|
|
|
python36_donttest+=" or test_mutually_recursive_types_with_typevar"
|
|
|
|
python3_donttest+=" or test_mutually_recursive_types_with_typevar"
|
|
|
|
# requires backports.zoneinfo for python < 3.9
|
|
|
|
python36_ignoretests=" --ignore tests/datetime/test_zoneinfo_timezones.py"
|
|
|
|
python38_ignoretests=" --ignore tests/datetime/test_zoneinfo_timezones.py"
|
|
|
|
python3_ignoretests=" --ignore tests/datetime/test_zoneinfo_timezones.py"
|
2021-12-06 10:30:18 +01:00
|
|
|
# added for 6.24.x
|
|
|
|
# generic exclusion of array_api* in not possible :-(
|
|
|
|
# python3_ignoretests+=" --ignore tests/array_api/test_partial_adoptors.py"
|
|
|
|
# python3_ignoretests+=" --ignore tests/array_api/test_pretty.py"
|
|
|
|
# python3_ignoretests+=" --ignore tests/array_api/test_scalar_dtypes.py"
|
|
|
|
# python3_ignoretests+=" --ignore tests/array_api/test_arrays.py"
|
|
|
|
# python3_ignoretests+=" --tests/array_api/test_from_dtype.py"
|
|
|
|
# python3_ignoretests+=" --tests/array_api/test_argument_validation.py"
|
|
|
|
# python3_ignoretests+=" --tests/array_api/test_indices.py"
|
|
|
|
python3_ignoretests+=" --ignore tests/array_api*"
|
2021-03-25 08:53:05 +01:00
|
|
|
# not available for python36
|
|
|
|
python36_ignoretests+=" --ignore tests/numpy --ignore tests/pandas"
|
|
|
|
# adapted from pytest.ini in github repo toplevel dir (above hypothesis-python)
|
|
|
|
echo '[pytest]
|
|
|
|
addopts=
|
|
|
|
--strict-markers
|
|
|
|
--tb=native
|
|
|
|
-p pytester --runpytest=subprocess
|
|
|
|
-v
|
|
|
|
-n auto
|
|
|
|
-ra
|
|
|
|
filterwarnings =
|
|
|
|
ignore::hypothesis.errors.NonInteractiveExampleWarning
|
|
|
|
' > pytest.ini
|
|
|
|
%pytest -c pytest.ini -k "not ($donttest ${$python_donttest})" ${$python_ignoretests} tests
|
2018-09-05 13:17:34 +02:00
|
|
|
%endif
|
2015-11-11 11:36:03 +01:00
|
|
|
|
2019-04-30 15:27:39 +02:00
|
|
|
%if !%{with test}
|
2017-02-24 15:34:42 +01:00
|
|
|
%files %{python_files}
|
2020-08-14 23:42:04 +02:00
|
|
|
%license LICENSE.txt
|
|
|
|
%doc README.rst
|
2020-11-11 13:23:09 +01:00
|
|
|
%python_alternative %{_bindir}/hypothesis
|
2021-12-06 10:35:57 +01:00
|
|
|
%{python_sitelib}/*hypothesis*
|
2020-08-14 23:42:04 +02:00
|
|
|
%{python_sitelib}/hypothesis-%{version}-py*.egg-info
|
2021-12-06 10:35:57 +01:00
|
|
|
%pycache_only %{python_sitelib}/__pycache__/*hypothesis*
|
2018-09-13 16:27:57 +02:00
|
|
|
%endif
|
2015-11-11 11:36:03 +01:00
|
|
|
|
|
|
|
%changelog
|