Also enable testing virtualenv --no-download
This commit is contained in:
parent
d72c62fe79
commit
d37bcbfd9a
2 changed files with 6 additions and 0 deletions
|
|
@ -14,6 +14,8 @@ if [ "$METHOD" == "venv" ]; then
|
|||
$PYTHON -m venv venv
|
||||
elif [ "$METHOD" == "virtualenv" ]; then
|
||||
virtualenv --python=$PYTHON venv
|
||||
elif [ "$METHOD" == "virtualenv-no-download" ]; then
|
||||
virtualenv --no-download --python=$PYTHON venv
|
||||
else
|
||||
echo 'Unsupported $METHOD' $METHOD >&2
|
||||
exit 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue