We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a9b3f0 commit 4bb6f00Copy full SHA for 4bb6f00
.github/workflows/build.yml
@@ -368,6 +368,14 @@ jobs:
368
echo "HYPOVENV=${VENV_LOC}" >> $GITHUB_ENV
369
echo "VENV_PYTHON=${VENV_PYTHON}" >> $GITHUB_ENV
370
./python -m venv $VENV_LOC && $VENV_PYTHON -m pip install -U hypothesis
371
+ - name: 'Restore Hypothesis database'
372
+ id: cache-hypothesis-database
373
+ uses: actions/cache@v3
374
+ with:
375
+ path: ./hypothesis
376
+ key: hypothesis-database-${{ github.head_ref || github.run_id }}
377
+ restore-keys:
378
+ - hypothesis-database-
379
- name: "Run tests"
380
working-directory: ${{ env.CPYTHON_BUILDDIR }}
381
run: |
0 commit comments