summaryrefslogtreecommitdiffstats
path: root/Lib/test/support/hypothesis_helper.py
Commit message (Collapse)AuthorAgeFilesLines
* CI: set correct working directory for Hypothesis cache (GH-119345)Zac Hatfield-Dodds2024-05-291-0/+7
| | | Set cwd for Hypothesis database
* Disable `differing_test_runners` health check (#108886)Nikita Sobolev2023-09-041-1/+4
|
* gh-86275: improve Hypothesis configuration for CI and local runs (#104468)Zac Hatfield-Dodds2023-05-211-0/+31
|
* GH-86275: Implementation of hypothesis stubs for property-based tests, with ↵Paul Ganssle2023-05-121-0/+4
zoneinfo tests (#22863) These are stubs to be used for adding hypothesis (https://hypothesis.readthedocs.io/en/latest/) tests to the standard library. When the tests are run in an environment where `hypothesis` and its various dependencies are not installed, the stubs will turn any tests with examples into simple parameterized tests and any tests without examples are skipped. It also adds hypothesis tests for the `zoneinfo` module, and a Github Actions workflow to run the hypothesis tests as a non-required CI job. The full hypothesis interface is not stubbed out — missing stubs can be added as necessary. Co-authored-by: Zac Hatfield-Dodds <zac.hatfield.dodds@gmail.com>