Skip to content

Commit

Permalink
Mark functional test as test in IDE
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert Attard committed Nov 3, 2020
1 parent fb1dc5b commit b0bd518
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'java'
id 'idea'
id 'org.springframework.boot' version '2.3.3.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
}
Expand All @@ -25,6 +26,13 @@ sourceSets {
}
}

idea {
module {
testSourceDirs += project.sourceSets.functionalTest.java.srcDirs
testSourceDirs += project.sourceSets.functionalTest.resources.srcDirs
}
}

configurations {
functionalTestImplementation.extendsFrom testImplementation
functionalTestRuntimeOnly.extendsFrom testRuntimeOnly
Expand Down

0 comments on commit b0bd518

Please sign in to comment.