From ccf6171f9b08c53e4c1ed19696837bd7719cffc1 Mon Sep 17 00:00:00 2001 From: Hai Brenner Date: Mon, 22 Feb 2016 21:04:29 +0200 Subject: [PATCH] Committing before moving to a new better branch --- voting-booth/build.gradle | 9 +++++++++ 1 file changed, 9 insertions(+) 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 =======*/