forked from pool/python-hypothesis
871ef1725c
- Update to version 5.19.0: * This release improves the randoms() strategy by adding support for Random instances where Hypothesis generates the random values rather than having them be “truly” random. - Update to version 5.18.3: * This patch adds some internal functions to support a new feature we’re working on. There is no user-visible change… yet. - Update to version 5.18.2: * This patch improves our docs for the derandomize setting. - Update to version 5.18.1: * This release consists of some internal refactoring to the shrinker in preparation for future work. It has no user visible impact. - Update to version 5.18.0: * This release teaches Hypothesis to shorten tracebacks for explicit examples, as we already do for generated examples, so that you can focus on your code rather than ours. * If you have multiple failing explicit examples, they will now all be reported. To report only the first failure, you can use the report_multiple_bugs=False setting as for generated examples. - Update to version 5.17.0: * This patch adds strategy inference for the Literal, NewType, Type, DefaultDict, and TypedDict types from the typing_extensions backport on PyPI. - Update to version 5.16.3: * This patch precomputes some of the setup logic for our experimental external fuzzer integration and sets deadline=None in fuzzing mode, saving around 150us on each iteration. * This is around two-thirds the runtime to fuzz an empty test with @given(st.none()), and nice to have even as a much smaller fraction of the runtime for non-trivial tests. OBS-URL: https://build.opensuse.org/request/show/818385 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hypothesis?expand=0&rev=131
119 lines
4.2 KiB
RPMSpec
119 lines
4.2 KiB
RPMSpec
#
|
|
# spec file for package python-hypothesis
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%define oldpython python
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -test
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
%define skip_python2 1
|
|
Name: python-hypothesis%{psuffix}
|
|
Version: 5.19.0
|
|
Release: 0
|
|
Summary: A library for property based testing
|
|
License: MPL-2.0
|
|
URL: https://github.com/HypothesisWorks/hypothesis-python
|
|
Source: https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-%{version}.tar.gz
|
|
# PATCH-FIX-UPSTREAM failing-test_array_values_are_unique_high_collision.patch gh#HypothesisWorks/hypothesis#2447 mcepl@suse.com
|
|
# Skip failing test on i586.
|
|
Patch0: failing-test_array_values_are_unique_high_collision.patch
|
|
BuildRequires: %{python_module setuptools >= 36}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-attrs >= 19.3.0
|
|
Requires: python-sortedcontainers >= 2.2.2
|
|
Recommends: python-Django >= 3.0.7
|
|
Recommends: python-dpcontracts >= 0.6.0
|
|
Recommends: python-lark-parser >= 0.8.9
|
|
Recommends: python-numpy >= 1.9.0
|
|
Recommends: python-pandas >= 0.19
|
|
Recommends: python-pytest >= 5.4.3
|
|
Recommends: python-python-dateutil >= 2.8.1
|
|
Recommends: python-pytz >= 2014.1
|
|
BuildArch: noarch
|
|
%if %{with test}
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module Django >= 3.0.7}
|
|
BuildRequires: %{python_module attrs >= 19.3.0}
|
|
BuildRequires: %{python_module dpcontracts >= 0.6.0}
|
|
BuildRequires: %{python_module flaky}
|
|
BuildRequires: %{python_module hypothesis >= %{version}}
|
|
BuildRequires: %{python_module lark-parser >= 0.8.9}
|
|
BuildRequires: %{python_module mock}
|
|
BuildRequires: %{python_module numpy >= 1.9.0}
|
|
BuildRequires: %{python_module pexpect >= 4.8.0}
|
|
BuildRequires: %{python_module pytest >= 5.4.3}
|
|
BuildRequires: %{python_module python-dateutil >= 2.8.1}
|
|
BuildRequires: %{python_module sortedcontainers >= 2.2.2}
|
|
%endif
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%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
|
|
%setup -q -n hypothesis-hypothesis-python-%{version}/hypothesis-python
|
|
%autopatch -p1
|
|
|
|
# the django fails to initialize
|
|
rm -r tests/django
|
|
# do not pull in pandas as a dep in ring1; it slows down things too much
|
|
rm -r tests/pandas
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%if !%{with test}
|
|
%python_install
|
|
%{python_expand \
|
|
$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/hypothesis/
|
|
$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/hypothesis/
|
|
%fdupes %{buildroot}%{$python_sitelib}
|
|
}
|
|
%endif
|
|
|
|
%check
|
|
%if %{with test}
|
|
# test_prints_statistics_given_option_under_xdist - wrong xdist opts
|
|
%pytest tests -k "not test_prints_statistics_given_option_under_xdist"
|
|
%endif
|
|
|
|
%if !%{with test}
|
|
%files %{python_files}
|
|
%license ../LICENSE.txt
|
|
%doc ../CITATION README.rst docs/changes.rst
|
|
%{python_sitelib}/hypothesis*
|
|
%endif
|
|
|
|
%changelog
|