Skip to content

Commit c627c19

Browse files
committed
attempt to enable integrationTestTask again
1 parent 7c7282d commit c627c19

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

plugins/dataframe-gradle-plugin/build.gradle.kts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -119,23 +119,23 @@ val integrationTestConfiguration by configurations.creating {
119119
extendsFrom(configurations.testImplementation.get())
120120
}
121121

122-
//val integrationTestTask = task<Test>("integrationTest") {
123-
// dependsOn(":plugins:symbol-processor:publishToMavenLocal")
124-
// dependsOn(":dataframe-arrow:publishToMavenLocal")
125-
// dependsOn(":dataframe-excel:publishToMavenLocal")
126-
// dependsOn(":dataframe-openapi:publishToMavenLocal")
127-
// // dependsOn(":publishApiPublicationToMavenLocal")
128-
// dependsOn(":dataframe-arrow:publishDataframeArrowPublicationToMavenLocal")
129-
// dependsOn(":dataframe-excel:publishDataframeExcelPublicationToMavenLocal")
130-
// dependsOn(":dataframe-openapi:publishDataframeOpenApiPublicationToMavenLocal")
131-
// dependsOn(":plugins:symbol-processor:publishMavenPublicationToMavenLocal")
132-
// dependsOn(":core:publishCorePublicationToMavenLocal")
133-
// description = "Runs integration tests."
134-
// group = "verification"
135-
//
136-
// testClassesDirs = sourceSets["integrationTest"].output.classesDirs
137-
// classpath = sourceSets["integrationTest"].runtimeClasspath
138-
// shouldRunAfter("test")
139-
//}
140-
//
141-
//tasks.check { dependsOn(integrationTestTask) }
122+
val integrationTestTask = task<Test>("integrationTest") {
123+
dependsOn(":plugins:symbol-processor:publishToMavenLocal")
124+
dependsOn(":dataframe-arrow:publishToMavenLocal")
125+
dependsOn(":dataframe-excel:publishToMavenLocal")
126+
dependsOn(":dataframe-openapi:publishToMavenLocal")
127+
// dependsOn(":publishApiPublicationToMavenLocal")
128+
dependsOn(":dataframe-arrow:publishDataframeArrowPublicationToMavenLocal")
129+
dependsOn(":dataframe-excel:publishDataframeExcelPublicationToMavenLocal")
130+
dependsOn(":dataframe-openapi:publishDataframeOpenApiPublicationToMavenLocal")
131+
dependsOn(":plugins:symbol-processor:publishMavenPublicationToMavenLocal")
132+
dependsOn(":core:publishCorePublicationToMavenLocal")
133+
description = "Runs integration tests."
134+
group = "verification"
135+
136+
testClassesDirs = sourceSets["integrationTest"].output.classesDirs
137+
classpath = sourceSets["integrationTest"].runtimeClasspath
138+
shouldRunAfter("test")
139+
}
140+
141+
tasks.check { dependsOn(integrationTestTask) }

0 commit comments

Comments
 (0)