diff options
Diffstat (limited to 'test/mocks/mass-pnf-sim/setup.sh')
-rwxr-xr-x | test/mocks/mass-pnf-sim/setup.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/mocks/mass-pnf-sim/setup.sh b/test/mocks/mass-pnf-sim/setup.sh new file mode 100755 index 000000000..4e49a7e3e --- /dev/null +++ b/test/mocks/mass-pnf-sim/setup.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +virtualenv --version > /dev/null || { echo 'Virtualenv command is not available, exiting' ; sleep 10; exit 1; } +pip3 --version > /dev/null || { echo 'python3-pip package is not available, exiting' ; sleep 10; exit 1; } + + +if [ -d ".env" ]; then + echo ".env is prepared" +else + virtualenv --no-site-packages --distribute -p python3 .env +fi + +source .env/bin/activate && pip3 install -r requirements.txt
\ No newline at end of file |