Skip to content

Commit 7df7c32

Browse files
committed
Removed the -PintegTest requirement - I was just not really thinking when I added it. Integration tests will only be committed when used './gradlew check' anyway
1 parent 6f6f63a commit 7df7c32

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

gradle/integration-tests.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,4 @@ task integrationTest(type: Test, dependsOn: jar) {
2626
systemProperties["integTest.projects"] = new File(sourceSets.integrationTest.output.resourcesDir, "projects").absolutePath
2727
}
2828

29-
if( hasProperty( 'integTest' ) && ext.integTest == '0' ) {
30-
logger.warn 'WARNING: Ignoring integration tests as integTest=0'
31-
} else {
32-
check.dependsOn integrationTest
33-
}
29+
check.dependsOn integrationTest

0 commit comments

Comments
 (0)