Skip to content

Commit 9f9575e

Browse files
committed
Fold hypothesis install into the previous pip install.
This will avoid installing one version of `hypothesis` and then replacing it; installing the right version from the get-go. It will therefore bring down the time required to initialize the environment.
1 parent d29c6ce commit 9f9575e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ jobs:
109109
cache: 'pip'
110110
- name: Install build and test dependencies from PyPI
111111
run: |
112-
pip install pytest-xdist -r "$ARRAY_API_TESTS_DIR/requirements.txt"
113-
pip install hypothesis==6.131.0
112+
pip install pytest-xdist hypothesis==6.131.0 -r "$ARRAY_API_TESTS_DIR/requirements.txt"
114113
- name: Build and install Sparse
115114
run: |
116115
pip install -U setuptools wheel

0 commit comments

Comments
 (0)