Skip to content

Commit

Permalink
Fix the build.gradle file to run test properly
Browse files Browse the repository at this point in the history
  • Loading branch information
wfxronald committed Apr 12, 2019
1 parent 47e728f commit 1b2782f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,16 +152,16 @@ test {
}

if (runNonGuiTests) {
test.include 'giatros/**'
test.include 'seedu/giatros/**'
}

if (runGuiTests) {
test.include 'systemtests/**'
test.include 'giatros/ui/**'
test.include 'seedu/giatros/ui/**'
}

if (!runGuiTests) {
test.exclude 'giatros/ui/**'
test.exclude 'seedu/giatros/ui/**'
}
}
}
Expand Down

0 comments on commit 1b2782f

Please sign in to comment.