diff --git a/voting-booth/build.gradle b/voting-booth/build.gradle index 70d7340..942d317 100644 --- a/voting-booth/build.gradle +++ b/voting-booth/build.gradle @@ -54,6 +54,15 @@ dependencies { runtime 'org.codehaus.groovy:groovy:2.4.+' } +test { + exclude '**/*IntegrationTest*' + exclude '**/*ManualTest*' +} + +task manualTest(type: Test) { + include '**/*ManualTest*' +} + /*==== You probably don't have to edit below this line =======*/