Skip to content

Commit

Permalink
Exclude jafu integration tests on the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Oct 31, 2020
1 parent 286f4cd commit 3f6eb4f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions jafu/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ dependencies {
testImplementation("io.lettuce:lettuce-core")
}

tasks.withType<Test> {
if (project.hasProperty("isCI")) {
exclude("org/springframework/fu/jafu/redis/ReactiveRedisDslTests.class")
exclude("org/springframework/fu/jafu/redis/RedisDslTests.class")
}
}

publishing {
publications {
create<MavenPublication>(project.name) {
Expand Down

0 comments on commit 3f6eb4f

Please sign in to comment.