Skip to content

Commit efe666a

Browse files
committed
Merge pull request #268 from gliptak/excludedemo
Exclude demo subproject from Coveralls
2 parents ae8864e + 8ada2ae commit efe666a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

demo/build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ archivesBaseName = "${project.projectName}-${project.name}"
88
configureAllRetroLambda()
99

1010
dependencies {
11-
compile project(":core")
12-
compile project(":quickcheck")
11+
compile project(":core")
12+
compile project(":quickcheck")
1313
testCompile dependencyJunit
1414
}
15+
16+
test {
17+
jacoco {
18+
enabled = false
19+
}
20+
}

0 commit comments

Comments
 (0)