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 8194e87 commit 5e49363Copy full SHA for 5e49363
.evergreen/run-tests.sh
@@ -33,6 +33,7 @@ SSL=${SSL:-nossl}
33
TEST_ARGS="${*:1}"
34
PYTHON=$(which python)
35
export PIP_QUIET=1 # Quiet by default
36
+export PIP_PREFER_BINARY=1 # Prefer binary dists by default
37
38
python -c "import sys; sys.exit(sys.prefix == sys.base_prefix)" || (echo "Not inside a virtual env!"; exit 1)
39
@@ -121,7 +122,7 @@ fi
121
122
123
if [ -n "$TEST_ENCRYPTION" ] || [ -n "$TEST_FLE_AZURE_AUTO" ] || [ -n "$TEST_FLE_GCP_AUTO" ]; then
124
- python -m pip install --prefer-binary '.[encryption]'
125
+ python -m pip install '.[encryption]'
126
127
# Install libmongocrypt if necessary.
128
if [ ! -d "libmongocrypt" ]; then
0 commit comments