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
|
||||
|
|
|
|||
|
|
@ -16,6 +16,9 @@
|
|||
- smoke27:
|
||||
dir: smoke
|
||||
run: VERSION=2.7 METHOD=virtualenv ./venv.sh
|
||||
- smoke34:
|
||||
dir: smoke
|
||||
run: VERSION=3.4 METHOD=virtualenv-no-download TOX=false ./venv.sh
|
||||
- smoke36:
|
||||
dir: smoke
|
||||
run: VERSION=3.6 METHOD=venv TOX=false ./venv.sh
|
||||
|
|
@ -41,6 +44,7 @@
|
|||
- gcc
|
||||
- virtualenv
|
||||
- python27
|
||||
- python34
|
||||
- python36
|
||||
- python37
|
||||
- python38
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue