File tree Expand file tree Collapse file tree 3 files changed +2
-18
lines changed Expand file tree Collapse file tree 3 files changed +2
-18
lines changed Original file line number Diff line number Diff line change 43
43
- name : " Run JVM tests"
44
44
run : |
45
45
bash ./scripts/build-linux-x86_64.sh --skip-submodule-update
46
- ./gradlew test -P excludeConnectedTests
46
+ ./gradlew test
47
47
./gradlew :examples:build
Original file line number Diff line number Diff line change 34
34
- name : " Run JVM tests"
35
35
run : |
36
36
bash ./scripts/build-linux-x86_64.sh
37
- ./gradlew test -P excludeConnectedTests
37
+ ./gradlew test
38
38
./gradlew :examples:build
Original file line number Diff line number Diff line change @@ -27,22 +27,6 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
27
27
}
28
28
}
29
29
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
-
46
30
testing {
47
31
suites {
48
32
val test by getting(JvmTestSuite ::class ) {
You can’t perform that action at this time.
0 commit comments