Skip to content

Commit

Permalink
Disable macos arm64 electrum tests that require support for SSL conne…
Browse files Browse the repository at this point in the history
…ctions

ktor client does not support SSL sockets on native platforms.
  • Loading branch information
sstone committed Sep 16, 2024
1 parent d2b908a commit 673a344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ tasks.withType<AbstractTestTask> {
// Those tests use TLS sockets which are not supported on Linux and MacOS
tasks
.filterIsInstance<KotlinNativeTest>()
.filter { it.name == "macosX64Test" || it.name == "linuxX64Test" }
.filter { it.name == "macosX64Test" || it.name == "macosArm64Test" || it.name == "linuxX64Test" }
.map {
it.filter.excludeTestsMatching("*IntegrationTest")
it.filter.excludeTestsMatching("*ElectrumClientTest")
Expand Down

0 comments on commit 673a344

Please sign in to comment.