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 4343 - name : " Run JVM tests"
4444 run : |
4545 bash ./scripts/build-linux-x86_64.sh
46- ./gradlew test -P excludeConnectedTests
46+ ./gradlew test
4747 ./gradlew :examples:build
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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-
4630testing {
4731 suites {
4832 val test by getting(JvmTestSuite ::class ) {
You can’t perform that action at this time.
0 commit comments