Usage

Download the script, give it execution permissions and execute it:

wget https://gitlab.com/constrict0r/testme/raw/master/testme.sh
chmod +x testme.sh
./testme.sh

Virtual-Enviroment

If you want to use a virtual enviroment install follow the next steps:

  • Ensure virtualenviroment is installed:
python3 -m pip install virtualenv
  • Create a virtual enviroment for your project:
python3 -m virtualenv /home/username/my-project
  • Activate the virtual enviroment:
source /home/username/my-project/bin/activate
  • Run the tests:
./testme.sh
  • Deactivate the virtual enviroment when you are finish:
deactivate