id: cache-hypothesis-database
uses: actions/cache@v4
with:
- path: ./hypothesis
+ path: ${{ env.CPYTHON_BUILDDIR }}/.hypothesis/
key: hypothesis-database-${{ github.head_ref || github.run_id }}
restore-keys: |
hypothesis-database-
if: always()
with:
name: hypothesis-example-db
- path: .hypothesis/examples/
+ path: ${{ env.CPYTHON_BUILDDIR }}/.hypothesis/examples/
build-asan:
name: 'Address sanitizer'
except ImportError:
from . import _hypothesis_stubs as hypothesis
else:
+ # Regrtest changes to use a tempdir as the working directory, so we have
+ # to tell Hypothesis to use the original in order to persist the database.
+ from .os_helper import SAVEDCWD
+ from hypothesis.configuration import set_hypothesis_home_dir
+
+ set_hypothesis_home_dir(os.path.join(SAVEDCWD, ".hypothesis"))
+
# When using the real Hypothesis, we'll configure it to ignore occasional
# slow tests (avoiding flakiness from random VM slowness in CI).
hypothesis.settings.register_profile(