Path to this page:
Subject: CVS commit: pkgsrc/devel/py-hypothesis
From: Adam Ciarcinski
Date: 2017-08-07 20:00:41
Message id: 20170807180041.3E1DDFACE@cvs.NetBSD.org
Log Message:
3.16.1:
This release makes an implementation change to how Hypothesis handles certain \
internal constructs.
The main effect you should see is improvement to the behaviour and performance \
of collection types, especially ones with a min_size parameter. Many cases that \
would previously fail due to being unable to generate enough valid examples will \
now succeed, and other cases should run slightly faster.
3.16.0:
This release introduces a deprecation of the timeout feature. This results in \
the following changes:
Creating a settings object with an explicit timeout will emit a deprecation warning.
If your test stops because it hits the timeout (and has not found a bug) then it \
will emit a deprecation warning.
There is a new value unlimited which you can import from hypothesis. \
settings(timeout=unlimited) will not cause a deprecation warning.
There is a new health check, hung_test, which will trigger after a test has been \
running for five minutes if it is not suppressed.
Files: