Skip to content

Commit 3a3e378

Browse files
committed
1. Added integration test exclusion back into release task.
2. Added manual transaction processing image.
1 parent c89e4a3 commit 3a3e378

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.gradle

+5-3
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,8 @@ task integrationTest(type: Test) {
105105
}
106106
}
107107

108-
// remove once integration tests are running as part of the build
109-
//check.dependsOn integrationTest
110-
//integrationTest.mustRunAfter test
108+
check.dependsOn integrationTest
109+
integrationTest.mustRunAfter test
111110

112111
tasks.withType(Test) {
113112
reports.html.destination = file("${reporting.baseDir}/${name}")
@@ -211,6 +210,9 @@ applicationName = 'web3j'
211210

212211

213212
task release {
213+
// remove once integration tests are running as part of the build
214+
check.dependsOn.remove(integrationTest)
215+
214216
dependsOn 'clean'
215217
dependsOn 'build'
216218
dependsOn 'uploadArchives'
144 KB
Loading

0 commit comments

Comments
 (0)