Add script to allow update dependencies in all envs

Change-Id: I6fa216c2d0943b4badc0fc1f397347f0f70fdde0
This commit is contained in:
Nikolay Mahotkin 2014-03-13 17:45:37 +04:00
parent 9680b76b99
commit 813fcfa32c
1 changed files with 16 additions and 0 deletions

16
tools/update_env_deps Executable file
View File

@ -0,0 +1,16 @@
TOX_ENVLIST=`grep envlist tox.ini | cut -d '=' -f 2 | tr ',' ' '`
TESTENVS=`grep testenv tox.ini | awk -F ':' '{print $2}' | tr '[]' ' '`
UNFILTERED_ENVLIST=`echo "$TOX_ENVLIST $TESTENVS"`
ENVLIST=$( awk 'BEGIN{RS=ORS=" "}!a[$0]++' <<<$UNFILTERED_ENVLIST );
for env in $ENVLIST
do
ENV_PATH=.tox/$env
PIP_PATH=$ENV_PATH/bin/pip
echo -e "\nUpdate environment ${env}...\n"
if [ ! -d $ENV_PATH -o ! -f $PIP_PATH ]
then
tox --notest -e$env
else
$PIP_PATH install -r requirements.txt -r test-requirements.txt
fi
done