aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/mass-pnf-sim/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/mocks/mass-pnf-sim/setup.sh')
-rwxr-xr-xtest/mocks/mass-pnf-sim/setup.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/mocks/mass-pnf-sim/setup.sh b/test/mocks/mass-pnf-sim/setup.sh
deleted file mode 100755
index 4e49a7e3e..000000000
--- a/test/mocks/mass-pnf-sim/setup.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/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