We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9083821 commit 04356b0Copy full SHA for 04356b0
.evergreen/utils.sh
@@ -18,7 +18,8 @@ createvirtualenv () {
18
echo "Cannot test without virtualenv"
19
exit 1
20
fi
21
- $VIRTUALENV $VENVPATH
+ # Workaround for bug in older versions of virtualenv.
22
+ $VIRTUALENV $VENVPATH || $PYTHON -m venv $VENVPATH
23
if [ "Windows_NT" = "$OS" ]; then
24
# Workaround https://bugs.python.org/issue32451:
25
# mongovenv/Scripts/activate: line 3: $'\r': command not found
0 commit comments