Allow testing virtualenv with --download
This commit is contained in:
parent
548de9fc09
commit
6f4fdf29c4
2 changed files with 5 additions and 0 deletions
|
|
@ -29,6 +29,8 @@ if [ "$METHOD" == "venv" ]; then
|
|||
$PYTHON -m venv venv
|
||||
elif [ "$METHOD" == "virtualenv" ]; then
|
||||
virtualenv --python=$PYTHON venv
|
||||
elif [ "$METHOD" == "virtualenv-download" ]; then
|
||||
virtualenv --download --python=$PYTHON venv
|
||||
elif [ "$METHOD" == "virtualenv-no-download" ]; then
|
||||
virtualenv --no-download --python=$PYTHON venv
|
||||
elif [ "$METHOD" == "virtualenv-seeder-pip" ]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue