aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/masspnfsim/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/mocks/masspnfsim/setup.sh')
-rwxr-xr-xtest/mocks/masspnfsim/setup.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/mocks/masspnfsim/setup.sh b/test/mocks/masspnfsim/setup.sh
deleted file mode 100755
index 34481df1f..000000000
--- a/test/mocks/masspnfsim/setup.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-# Setup runtime environment for the Python scripts
-
-virtualenv --version > /dev/null 2>&1 || { echo 'Virtualenv command is not available, exiting'; exit 1; }
-pip3 --version > /dev/null 2>&1 || { echo 'python3-pip package is not available, exiting' ; exit 1; }
-tox --version > /dev/null 2>&1 || { echo 'tox command is not available, exiting' ; exit 1; }
-
-tox -e MassPnfSim-runtime
-echo -e "\n\nNow run:\nsource .tox/MassPnfSim-runtime/bin/activate"