Skip to content

Commit

Permalink
Remove Gradle plugin test for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskorn committed Jul 12, 2022
1 parent a3bafc4 commit ec14c55
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 223 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,51 +25,6 @@ repositories {
dependencies {
compileOnly(gradleApi())
compileOnly(libs.kotlin.gradle.plugin)

testImplementation(project(Projects.Assertions.Core))
testImplementation(project(Projects.Framework.api))
testImplementation(project(Projects.Framework.engine))
testImplementation(project(Projects.JunitRunner))
}

tasks.withType<Test> {
// Build these libraries ahead of time so that the test project doesn't try to build them itself (if it tries to build them while we are as well, this can lead to conflicts)
setOf(
Projects.Assertions.Core,
Projects.Framework.api,
Projects.Framework.engine
).forEach { project ->
setOf(
"jvmJar",
"compileKotlinLinuxX64",
"compileKotlinMacosX64",
"compileKotlinMacosArm64",
"compileKotlinMingwX64",
).forEach { task ->
dependsOn("$project:$task")
}
}

setOf(
Projects.JunitRunner,
":kotest-framework:kotest-framework-multiplatform-plugin-js",
":kotest-framework:kotest-framework-multiplatform-plugin-native"
).forEach { project ->
dependsOn("$project:jvmJar")
}

dependsOn("jar")

useJUnitPlatform()

systemProperty("kotestVersion", Ci.publishVersion)

testLogging {
showExceptions = true
showStandardStreams = true
events = setOf(TestLogEvent.FAILED, TestLogEvent.SKIPPED, TestLogEvent.STANDARD_ERROR, TestLogEvent.STANDARD_OUT)
exceptionFormat = TestExceptionFormat.FULL
}
}

tasks {
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit ec14c55

Please sign in to comment.