#!/bin/bash tags=CreateTreatment,AlarmColors rm -rf /tmp/UnitTest cd .. read -p "Do you want to run all tests? (y/n) " resp if [ "$resp" == "y" ]; then /opt/squishqt/bin/squishrunner --testsuite . \ --reportgen html,/tmp/UnitTest else /opt/squishqt/bin/squishrunner --testsuite . \ --tags $tags \ --reportgen html,/tmp/UnitTest fi