9 lines
147 B
PowerShell
9 lines
147 B
PowerShell
$BaseDir = (Get-Location).Path
|
|
|
|
cd $BASEDIR
|
|
& $BASEDIR\env\Scripts\activate
|
|
echo "Virtualenv activated."
|
|
|
|
tox -c tox.win.ini
|
|
exit $LastExitCode
|