aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/masspnfsim/setup.sh
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-12-16 13:16:47 +0100
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2020-12-16 13:20:34 +0100
commite2e2041fccc8beee89a378de2de54f3dce8f056e (patch)
treebe72d882fc8d6c572503469dcb2181051abff6a6 /test/mocks/masspnfsim/setup.sh
parentc1049d85e04edc89859dfae21c089e36d941f3b3 (diff)
Remove masspnf simulator code
It has been moved to it's own repository: https://git.onap.org/integration/simulators/masspnf-simulator/ Change-Id: I54b63243eb9e932cd34373ef33679356542349be Issue-ID: INT-1810 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
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"