Skip to content

Commit

Permalink
Disable mempool.space tests on ios
Browse files Browse the repository at this point in the history
  • Loading branch information
sstone committed Mar 25, 2024
1 parent eba5a5b commit 13efba0
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

allprojects {
group = "fr.acinq.lightning"
version = "1.6.2-FEECREDIT-4"
version = "1.6.2-FEECREDIT-5"

repositories {
// using the local maven repository with Kotlin Multi Platform can lead to build errors that are hard to diagnose.
Expand Down Expand Up @@ -311,6 +311,14 @@ tasks
it.filter.excludeTestsMatching("*SwapInWalletTestsCommon")
}

tasks
.filterIsInstance<KotlinNativeTest>()
.filter { it.name.startsWith("ios") }
.map {
it.filter.excludeTestsMatching("*MempoolSpaceClientTest")
it.filter.excludeTestsMatching("*MempoolSpaceWatcherTest")
}

// Make NS_FORMAT_ARGUMENT(1) a no-op
// This fixes an issue when building PhoenixCrypto using XCode 13
// More on this: https://youtrack.jetbrains.com/issue/KT-48807#focus=Comments-27-5210791.0-0
Expand Down

0 comments on commit 13efba0

Please sign in to comment.