task setupVirtualEnv(type: Exec) { description "Sets up the venv/ virtual environment" commandLine "./setup_venv.sh" } task unittest(type: Exec) { description "Executes the unittest tests" commandLine "./unittest.sh" } clean { delete 'venv' }