First-party extensions¶
Hypothesis has minimal dependencies, to maximise compatibility and make installing Hypothesis as easy as possible.
Our integrations with specific packages are therefore provided by extra
modules that need their individual dependencies installed in order to work.
You can install these dependencies using the setuptools extra feature as e.g.
pip install hypothesis[django]. This will check installation of compatible versions.
You can also just install hypothesis into a project using them, ignore the version constraints, and hope for the best.
In general “Which version is Hypothesis compatible with?” is a hard question to answer and even harder to regularly test. Hypothesis is always tested against the latest compatible version and each package will note the expected compatibility range. If you run into a bug with any of these please specify the dependency version.
There are separate pages for Hypothesis for Django users and Hypothesis for the scientific stack.
Example grammars, which may provide a useful starting point for your tests, can be found in the Lark repository and in this third-party collection.
This module provides pytz timezones.
You can use this strategy to make
hypothesis.strategies.datetimes() and
hypothesis.strategies.times() produce timezone-aware values.
-
hypothesis.extra.pytz.timezones()[source]¶ Any timezone in the Olsen database, as a pytz tzinfo object.
This strategy minimises to UTC, or the smallest possible fixed offset, and is designed for use with
hypothesis.strategies.datetimes().
This module provides dateutil timezones.
You can use this strategy to make
hypothesis.strategies.datetimes() and
hypothesis.strategies.times() produce timezone-aware values.
-
hypothesis.extra.dateutil.timezones()[source]¶ Any timezone in dateutil.
This strategy minimises to UTC, or the timezone with the smallest offset from UTC as of 2000-01-01, and is designed for use with
datetimes().Note that the timezones generated by the strategy may vary depending on the configuration of your machine. See the dateutil documentation for more information.