Skip to content

Commit

Permalink
py-hypothesis: updated to 4.53.3
Browse files Browse the repository at this point in the history
4.53.3:
This patch fixes :func:`~hypothesis.strategies.from_type` with :class:`python:typing.Hashable` and :class:`python:typing.Sized`, which previously failed with an internal error on Python 3.7 or later.

4.53.2:
This release reorganises a number of the Hypothesis internal modules into a package structure. If you are only depending on the public API it should have no effect. If you are depending on the internal API (which you shouldn't be, and which we don't guarantee compatibility on) you may have to rename some imports.

4.53.1:
This release changes the size distribution of the number of steps run in stateful testing: It will now almost always run the maximum number of steps permitted.

4.53.0:
:ref:`statistics` now include the best score seen for each label, which can help avoid the threshold problem when the minimal example shrinks right down to the threshold of failure (:issue:`2180`).

4.52.0:
This release changes the stateful_step_count setting to raise an error if set to 0. This is a backwards compatible change because a value of 0 would never have worked and attempting to run it would have resulted in an internal assertion error.

4.51.1:
This release makes a small internal change to the distribution of test cases. It is unlikely to have much user visible impact.

4.51.0:
This release deprecates use of :func:`@example <hypothesis.example>`, :func:`@seed <hypothesis.seed>`, or :func:`@reproduce_failure <hypothesis.reproduce_failure>` without :func:`@given <hypothesis.given>`.

4.50.8:
This patch makes certain uses of Bundles more efficient in stateful testing (:issue:`2078`).

4.50.7:
This release refactors some of Hypothesis's internal interfaces for representing data generation. It should have no user visible effect.

4.50.6:
This patch removes some old debugging helpers in our Numpy extra which have not been needed since :issue:`1963` and :issue:`2245`.

4.50.5:
This patch fixes :issue:`2229`, where Numpy arrays of unsized strings would only ever have strings of size one due to an interaction between our generation logic and Numpy's allocation strategy.

4.50.4:
This patch fixes a rare internal error in strategies for a list of unique items sampled from a short non-unique sequence (:issue:`2247`). The bug was discovered via :pypi:`hypothesis-jsonschema`.

4.50.3:
This release improves the error message when :func:`@settings <hypothesis.settings>` tries to inherit settings from a parent argument that isn't a settings instance.

4.50.2:
This release improves Hypothesis's "Falsifying example" output, by breaking output across multiple lines where necessary, and by removing irrelevant information from the stateful testing output.

4.50.1:
This patch adds :pypi:`flake8-comprehensions` to our linter suite. There is no user-visible change - expect perhaps via some strange microbenchmarks - but certain parts of the code now have a clear and more consistent style.

4.50.0:
This release fixes some cases where we might previously have failed to run the validation logic for some strategies. As a result tests which would previously have been silently testing significantly less than they should may now start to raise InvalidArgument now that these errors are caught.

4.49.0:
This release significantly improves the data distribution in :doc:`rule based stateful testing <stateful>`, by using a technique called Swarm Testing (Groce, Alex, et al. "Swarm testing." Proceedings of the 2012 International Symposium on Software Testing and Analysis. ACM, 2012.) to select which rules are run in any given test case. This should allow it to find many issues that it would previously have missed.

This change is likely to be especially beneficial for stateful tests with large numbers of rules.

4.48.1:
This release adds some heuristics to test case generation that try to ensure that test cases generated early on will be relatively small.

This fixes a bug introduced in :ref:`Hypothesis 4.42.0 <v4.42.0>` which would cause occasional :obj:`~hypothesis.HealthCheck.too_slow` failures on some tests.

4.48.0:
This release revokes the deprecation of find, as we've now rebuilt it on top of @given, which means it has minimal maintenance burden and we're happy to support it.

4.47.5:
This release rebuilds find() on top of @given in order to have more code in common. It should have minimal user visible effect.

4.47.4:
This patch removes an internal compatibility shim that we no longer need.

4.47.3:
This patch fixes several typos in our docstrings and comments, with no change in behaviour.

4.47.2:
This release fixes an internal issue where Hypothesis would sometimes generate test cases that were above its intended maximum size. This would only have happened rarely and probably would not have caused major problems when it did.

Users of the new :ref:`targeted property-based testing <targeted-search>` might see minor impact (possibly slightly faster tests and slightly worse target scores), but only in the unlikely event that they were hitting this problem. Other users should not see any effect at all.

4.47.1:
This release removes some unused code from the core engine. There is no user-visible change.

4.47.0:
This release commonizes some code between running explicit examples and normal test execution. The main user visible impact of this is that deadlines are now enforced when running explicit examples.

4.46.1:
This patch ensures that a KeyboardInterrupt received during example generation is not treated as a mystery test failure but instead propagates to the top level, not recording the interrupted generation in the conjecture data tree.

4.46.0:
This release changes the behaviour of :func:`~hypothesis.strategies.floats` when excluding signed zeros - floats(max_value=0.0, exclude_max=True) can no longer generate -0.0 nor the much rarer floats(min_value=-0.0, exclude_min=True) generate +0.0.

The correct interaction between signed zeros and exclusive endpoints was unclear; we now enforce the invariant that :func:`~hypothesis.strategies.floats` will never generate a value equal to an excluded endpoint (:issue:`2201`).

If you prefer the old behaviour, you can pass floats(max_value=-0.0) or floats(min_value=0.0) which is exactly equivalent and has not changed. If you had two endpoints equal to zero, we recommend clarifying your tests by using :func:`~hypothesis.strategies.just` or :func:`~hypothesis.strategies.sampled_from` instead of :func:`~hypothesis.strategies.floats`.

4.45.1:
This patch improves the error message when invalid arguments are passed to :func:`~hypothesis.stateful.rule` or :func:`~hypothesis.stateful.invariant` (:issue:`2149`).

4.45.0:
This release supports :obj:`python:typing.Final` and :obj:`python:typing.TypedDict` in :func:`~hypothesis.strategies.from_type`.

4.44.5:
This patch disables our :pypi:`pytest` plugin when running on versions of :pypi:`pytest` before 4.3, the oldest our plugin supports. Note that at time of writing the Pytest developers only support 4.6 and later!

Hypothesis tests using :func:`@given() <hypothesis.given>` work on any test runner, but our integrations to e.g. avoid example database collisions when combined with @pytest.mark.parametrize eventually drop support for obsolete versions.

4.44.4:
This patch adds some internal comments and clarifications to the Hypothesis implementation. There is no user-visible change.

4.44.3:
This patch avoids importing test runners such as :pypi:`pytest`, :pypi:`unittest2`, or :pypi:`nose` solely to access their special "skip test" exception types - if the module is not in :obj:`sys.modules`, the exception can't be raised anyway.

This fixes a problem where importing an otherwise unused module could cause spurious errors due to import-time side effects (and possibly -Werror).
  • Loading branch information
adam committed Dec 15, 2019
1 parent 529e4ce commit ce630b3
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 62 deletions.
4 changes: 2 additions & 2 deletions devel/py-hypothesis/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.81 2019/11/13 21:08:30 adam Exp $
# $NetBSD: Makefile,v 1.82 2019/12/15 11:28:53 adam Exp $

DISTNAME= hypothesis-4.44.2
DISTNAME= hypothesis-4.53.3
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/}
Expand Down
113 changes: 58 additions & 55 deletions devel/py-hypothesis/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.28 2019/11/13 21:08:30 adam Exp $
@comment $NetBSD: PLIST,v 1.29 2019/12/15 11:28:53 adam Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
Expand All @@ -12,9 +12,6 @@ ${PYSITELIB}/hypothesis/__init__.pyo
${PYSITELIB}/hypothesis/_settings.py
${PYSITELIB}/hypothesis/_settings.pyc
${PYSITELIB}/hypothesis/_settings.pyo
${PYSITELIB}/hypothesis/_strategies.py
${PYSITELIB}/hypothesis/_strategies.pyc
${PYSITELIB}/hypothesis/_strategies.pyo
${PYSITELIB}/hypothesis/configuration.py
${PYSITELIB}/hypothesis/configuration.pyc
${PYSITELIB}/hypothesis/configuration.pyo
Expand Down Expand Up @@ -172,63 +169,69 @@ ${PYSITELIB}/hypothesis/py.typed
${PYSITELIB}/hypothesis/reporting.py
${PYSITELIB}/hypothesis/reporting.pyc
${PYSITELIB}/hypothesis/reporting.pyo
${PYSITELIB}/hypothesis/searchstrategy/__init__.py
${PYSITELIB}/hypothesis/searchstrategy/__init__.pyc
${PYSITELIB}/hypothesis/searchstrategy/__init__.pyo
${PYSITELIB}/hypothesis/searchstrategy/attrs.py
${PYSITELIB}/hypothesis/searchstrategy/attrs.pyc
${PYSITELIB}/hypothesis/searchstrategy/attrs.pyo
${PYSITELIB}/hypothesis/searchstrategy/collections.py
${PYSITELIB}/hypothesis/searchstrategy/collections.pyc
${PYSITELIB}/hypothesis/searchstrategy/collections.pyo
${PYSITELIB}/hypothesis/searchstrategy/datetime.py
${PYSITELIB}/hypothesis/searchstrategy/datetime.pyc
${PYSITELIB}/hypothesis/searchstrategy/datetime.pyo
${PYSITELIB}/hypothesis/searchstrategy/deferred.py
${PYSITELIB}/hypothesis/searchstrategy/deferred.pyc
${PYSITELIB}/hypothesis/searchstrategy/deferred.pyo
${PYSITELIB}/hypothesis/searchstrategy/flatmapped.py
${PYSITELIB}/hypothesis/searchstrategy/flatmapped.pyc
${PYSITELIB}/hypothesis/searchstrategy/flatmapped.pyo
${PYSITELIB}/hypothesis/searchstrategy/functions.py
${PYSITELIB}/hypothesis/searchstrategy/functions.pyc
${PYSITELIB}/hypothesis/searchstrategy/functions.pyo
${PYSITELIB}/hypothesis/searchstrategy/lazy.py
${PYSITELIB}/hypothesis/searchstrategy/lazy.pyc
${PYSITELIB}/hypothesis/searchstrategy/lazy.pyo
${PYSITELIB}/hypothesis/searchstrategy/misc.py
${PYSITELIB}/hypothesis/searchstrategy/misc.pyc
${PYSITELIB}/hypothesis/searchstrategy/misc.pyo
${PYSITELIB}/hypothesis/searchstrategy/numbers.py
${PYSITELIB}/hypothesis/searchstrategy/numbers.pyc
${PYSITELIB}/hypothesis/searchstrategy/numbers.pyo
${PYSITELIB}/hypothesis/searchstrategy/recursive.py
${PYSITELIB}/hypothesis/searchstrategy/recursive.pyc
${PYSITELIB}/hypothesis/searchstrategy/recursive.pyo
${PYSITELIB}/hypothesis/searchstrategy/regex.py
${PYSITELIB}/hypothesis/searchstrategy/regex.pyc
${PYSITELIB}/hypothesis/searchstrategy/regex.pyo
${PYSITELIB}/hypothesis/searchstrategy/shared.py
${PYSITELIB}/hypothesis/searchstrategy/shared.pyc
${PYSITELIB}/hypothesis/searchstrategy/shared.pyo
${PYSITELIB}/hypothesis/searchstrategy/strategies.py
${PYSITELIB}/hypothesis/searchstrategy/strategies.pyc
${PYSITELIB}/hypothesis/searchstrategy/strategies.pyo
${PYSITELIB}/hypothesis/searchstrategy/strings.py
${PYSITELIB}/hypothesis/searchstrategy/strings.pyc
${PYSITELIB}/hypothesis/searchstrategy/strings.pyo
${PYSITELIB}/hypothesis/searchstrategy/types.py
${PYSITELIB}/hypothesis/searchstrategy/types.pyc
${PYSITELIB}/hypothesis/searchstrategy/types.pyo
${PYSITELIB}/hypothesis/stateful.py
${PYSITELIB}/hypothesis/stateful.pyc
${PYSITELIB}/hypothesis/stateful.pyo
${PYSITELIB}/hypothesis/statistics.py
${PYSITELIB}/hypothesis/statistics.pyc
${PYSITELIB}/hypothesis/statistics.pyo
${PYSITELIB}/hypothesis/strategies.py
${PYSITELIB}/hypothesis/strategies.pyc
${PYSITELIB}/hypothesis/strategies.pyo
${PYSITELIB}/hypothesis/strategies/__init__.py
${PYSITELIB}/hypothesis/strategies/__init__.pyc
${PYSITELIB}/hypothesis/strategies/__init__.pyo
${PYSITELIB}/hypothesis/strategies/_internal/__init__.py
${PYSITELIB}/hypothesis/strategies/_internal/__init__.pyc
${PYSITELIB}/hypothesis/strategies/_internal/__init__.pyo
${PYSITELIB}/hypothesis/strategies/_internal/attrs.py
${PYSITELIB}/hypothesis/strategies/_internal/attrs.pyc
${PYSITELIB}/hypothesis/strategies/_internal/attrs.pyo
${PYSITELIB}/hypothesis/strategies/_internal/collections.py
${PYSITELIB}/hypothesis/strategies/_internal/collections.pyc
${PYSITELIB}/hypothesis/strategies/_internal/collections.pyo
${PYSITELIB}/hypothesis/strategies/_internal/core.py
${PYSITELIB}/hypothesis/strategies/_internal/core.pyc
${PYSITELIB}/hypothesis/strategies/_internal/core.pyo
${PYSITELIB}/hypothesis/strategies/_internal/datetime.py
${PYSITELIB}/hypothesis/strategies/_internal/datetime.pyc
${PYSITELIB}/hypothesis/strategies/_internal/datetime.pyo
${PYSITELIB}/hypothesis/strategies/_internal/deferred.py
${PYSITELIB}/hypothesis/strategies/_internal/deferred.pyc
${PYSITELIB}/hypothesis/strategies/_internal/deferred.pyo
${PYSITELIB}/hypothesis/strategies/_internal/featureflags.py
${PYSITELIB}/hypothesis/strategies/_internal/featureflags.pyc
${PYSITELIB}/hypothesis/strategies/_internal/featureflags.pyo
${PYSITELIB}/hypothesis/strategies/_internal/flatmapped.py
${PYSITELIB}/hypothesis/strategies/_internal/flatmapped.pyc
${PYSITELIB}/hypothesis/strategies/_internal/flatmapped.pyo
${PYSITELIB}/hypothesis/strategies/_internal/functions.py
${PYSITELIB}/hypothesis/strategies/_internal/functions.pyc
${PYSITELIB}/hypothesis/strategies/_internal/functions.pyo
${PYSITELIB}/hypothesis/strategies/_internal/lazy.py
${PYSITELIB}/hypothesis/strategies/_internal/lazy.pyc
${PYSITELIB}/hypothesis/strategies/_internal/lazy.pyo
${PYSITELIB}/hypothesis/strategies/_internal/misc.py
${PYSITELIB}/hypothesis/strategies/_internal/misc.pyc
${PYSITELIB}/hypothesis/strategies/_internal/misc.pyo
${PYSITELIB}/hypothesis/strategies/_internal/numbers.py
${PYSITELIB}/hypothesis/strategies/_internal/numbers.pyc
${PYSITELIB}/hypothesis/strategies/_internal/numbers.pyo
${PYSITELIB}/hypothesis/strategies/_internal/recursive.py
${PYSITELIB}/hypothesis/strategies/_internal/recursive.pyc
${PYSITELIB}/hypothesis/strategies/_internal/recursive.pyo
${PYSITELIB}/hypothesis/strategies/_internal/regex.py
${PYSITELIB}/hypothesis/strategies/_internal/regex.pyc
${PYSITELIB}/hypothesis/strategies/_internal/regex.pyo
${PYSITELIB}/hypothesis/strategies/_internal/shared.py
${PYSITELIB}/hypothesis/strategies/_internal/shared.pyc
${PYSITELIB}/hypothesis/strategies/_internal/shared.pyo
${PYSITELIB}/hypothesis/strategies/_internal/strategies.py
${PYSITELIB}/hypothesis/strategies/_internal/strategies.pyc
${PYSITELIB}/hypothesis/strategies/_internal/strategies.pyo
${PYSITELIB}/hypothesis/strategies/_internal/strings.py
${PYSITELIB}/hypothesis/strategies/_internal/strings.pyc
${PYSITELIB}/hypothesis/strategies/_internal/strings.pyo
${PYSITELIB}/hypothesis/strategies/_internal/types.py
${PYSITELIB}/hypothesis/strategies/_internal/types.pyc
${PYSITELIB}/hypothesis/strategies/_internal/types.pyo
${PYSITELIB}/hypothesis/types.py
${PYSITELIB}/hypothesis/types.pyc
${PYSITELIB}/hypothesis/types.pyo
Expand Down
10 changes: 5 additions & 5 deletions devel/py-hypothesis/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.78 2019/11/13 21:08:30 adam Exp $
$NetBSD: distinfo,v 1.79 2019/12/15 11:28:53 adam Exp $

SHA1 (hypothesis-4.44.2.tar.gz) = 91d4344fe2274298396186705d6bd8432535e203
RMD160 (hypothesis-4.44.2.tar.gz) = 1f79de1c4ba25c9bc24d1a8d66296d268f98b04c
SHA512 (hypothesis-4.44.2.tar.gz) = 69986ba9f36be0e22ca9528e80b841a99ce4d2a0113cf5061b99d0cc25d7db6d8abf493f78fb14e385df8150b2188966ee1c26028ed6d82694676e33014a349c
Size (hypothesis-4.44.2.tar.gz) = 220872 bytes
SHA1 (hypothesis-4.53.3.tar.gz) = f622e3eb92cab969c995898b53da3bf58629803c
RMD160 (hypothesis-4.53.3.tar.gz) = 4ea3ba46b7a2a02bb8e0c7d7b0e507ea18219b6f
SHA512 (hypothesis-4.53.3.tar.gz) = 1102a64d3cd12a5f77fa3af7c062f74b8a04cede32d3c082946127981f88c27ed84f987706640a64bae8aec0562724a3f6d080518231ac82831b20fcc70a661f
Size (hypothesis-4.53.3.tar.gz) = 228049 bytes

0 comments on commit ce630b3

Please sign in to comment.