[Gradle] Muted k/n IT tests on Windows

connected with this problem ^KT-62761
This commit is contained in:
Dmitrii Krasnov
2024-02-01 10:28:46 +01:00
committed by Space Team
parent d4a4696baf
commit 2873b11589
@@ -12,13 +12,14 @@ import org.jetbrains.kotlin.gradle.util.capitalize
import org.jetbrains.kotlin.konan.target.HostManager import org.jetbrains.kotlin.konan.target.HostManager
import org.jetbrains.kotlin.konan.target.presetName import org.jetbrains.kotlin.konan.target.presetName
import org.junit.jupiter.api.DisplayName import org.junit.jupiter.api.DisplayName
import org.junit.jupiter.api.condition.OS
import org.junit.jupiter.api.io.TempDir import org.junit.jupiter.api.io.TempDir
import java.nio.file.Path import java.nio.file.Path
import kotlin.io.path.absolutePathString import kotlin.io.path.absolutePathString
import kotlin.io.path.appendText import kotlin.io.path.appendText
import kotlin.test.assertContains import kotlin.test.assertContains
@OsCondition(supportedOn = [OS.MAC, OS.LINUX], enabledOnCI = [OS.LINUX]) // disabled for Windows because of tmp dir problem: KT-62761
@DisplayName("This test class contains different scenarios with downloading Kotlin Native Compiler during build.") @DisplayName("This test class contains different scenarios with downloading Kotlin Native Compiler during build.")
@NativeGradlePluginTests @NativeGradlePluginTests
class KotlinNativeCompilerDownloadIT : KGPBaseTest() { class KotlinNativeCompilerDownloadIT : KGPBaseTest() {