diff --git a/bdk-jvm/lib/build.gradle.kts b/bdk-jvm/lib/build.gradle.kts index 5922d423..8c226d79 100644 --- a/bdk-jvm/lib/build.gradle.kts +++ b/bdk-jvm/lib/build.gradle.kts @@ -24,13 +24,16 @@ java { // This block ensures that the tests that require access to a blockchain are not // run if the -P excludeConnectedTests flag is passed to gradle. -// This ensures our CI runs are not fickle by not requiring access to testnet. +// This ensures our CI runs are not fickle by not requiring access to testnet or signet. // This is a workaround until we have a proper regtest setup for the CI. // Note that the command in the CI is ./gradlew test -P excludeConnectedTests tasks.test { if (project.hasProperty("excludeConnectedTests")) { - exclude("**/LiveWalletTest.class") + exclude("**/LiveElectrumClientTest.class") + exclude("**/LiveMemoryWalletTest.class") + exclude("**/LiveTransactionTest.class") exclude("**/LiveTxBuilderTest.class") + exclude("**/LiveWalletTest.class") } }