Skip to content

Commit b65ef87

Browse files
test: remove flag for connected tests
1 parent 599a792 commit b65ef87

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

.github/workflows/test-bdk-ffi-latest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ jobs:
4343
- name: "Run JVM tests"
4444
run: |
4545
bash ./scripts/build-linux-x86_64.sh --skip-submodule-update
46-
./gradlew test -P excludeConnectedTests
46+
./gradlew test
4747
./gradlew :examples:build

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ jobs:
3434
- name: "Run JVM tests"
3535
run: |
3636
bash ./scripts/build-linux-x86_64.sh
37-
./gradlew test -P excludeConnectedTests
37+
./gradlew test
3838
./gradlew :examples:build

lib/build.gradle.kts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,6 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
2727
}
2828
}
2929

30-
// This block ensures that the tests that require access to a blockchain are not
31-
// run if the -P excludeConnectedTests flag is passed to gradle.
32-
// This ensures our CI runs are not fickle by not requiring access to testnet or signet.
33-
// This is a workaround until we have a proper regtest setup for the CI.
34-
// Note that the command in the CI is ./gradlew test -P excludeConnectedTests
35-
tasks.test {
36-
if (project.hasProperty("excludeConnectedTests")) {
37-
exclude("**/LiveElectrumClientTest.class")
38-
exclude("**/LiveMemoryWalletTest.class")
39-
exclude("**/LiveTransactionTest.class")
40-
exclude("**/LiveTxBuilderTest.class")
41-
exclude("**/LiveWalletTest.class")
42-
exclude("**/LiveKyotoTest.class")
43-
}
44-
}
45-
4630
testing {
4731
suites {
4832
val test by getting(JvmTestSuite::class) {

0 commit comments

Comments
 (0)