Remove outdated doc for A1 Adaptor
[integration.git] / test / mocks / masspnfsim / setup.sh
1 #!/bin/bash
2
3 # Setup runtime environment for the Python scripts
4
5 virtualenv --version > /dev/null 2>&1 || { echo 'Virtualenv command is not available, exiting'; exit 1; }
6 pip3 --version > /dev/null 2>&1 || { echo 'python3-pip package is not available, exiting' ; exit 1; }
7 tox --version > /dev/null 2>&1 || { echo 'tox command is not available, exiting' ; exit 1; }
8
9 tox -e MassPnfSim-runtime
10 echo -e "\n\nNow run:\nsource .tox/MassPnfSim-runtime/bin/activate"