Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Commit

Permalink
re-enable hypothesis CI profile
Browse files Browse the repository at this point in the history
  • Loading branch information
internaut committed Feb 10, 2022
1 parent 1f2efd1 commit 37161b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
- name: run tox (linux)
# since system dependencies could only be installed on Linux runners, we run the "full" suite only on Linux ...
if: runner.os == 'Linux'
run: tox -e py-${{ matrix.testsuite }}
run: tox -e py-${{ matrix.testsuite }} -- --hypothesis-profile=ci
- name: run tox (macos or windows - minimal)
if: runner.os != 'Linux' && matrix.testsuite == 'minimal'
run: tox -e py-minimal
run: tox -e py-minimal -- --hypothesis-profile=ci
- name: run tox (macos or windows - recommendedextra)
# ... on all other OS we run the "recommendedextra" suite instead of the "full" suite
if: runner.os != 'Linux' && matrix.testsuite == 'full'
run: tox -e py-recommendedextra
run: tox -e py-recommendedextra -- --hypothesis-profile=ci

0 comments on commit 37161b3

Please sign in to comment.