File tree Expand file tree Collapse file tree 5 files changed +17
-18
lines changed
src/main/java/jp/co/soramitsu/iroha/testcontainers Expand file tree Collapse file tree 5 files changed +17
-18
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ subprojects {
1313 apply plugin : ' idea'
1414 apply plugin : ' jacoco'
1515 apply plugin : ' maven'
16+ apply plugin : ' com.adarshr.test-logger'
1617
1718 sourceCompatibility = 1.8 // java 8
1819 targetCompatibility = 1.8
@@ -53,20 +54,18 @@ subprojects {
5354 dependsOn(test)
5455 }
5556
56- test {
57- testlogger {
58- theme ' standard'
59- showExceptions true
60- slowThreshold 2000
61- showSummary true
62- showPassed true
63- showSkipped true
64- showFailed true
65- showStandardStreams true
66- showPassedStandardStreams false
67- showSkippedStandardStreams false
68- showFailedStandardStreams true
69- }
57+ testlogger {
58+ theme ' standard'
59+ showExceptions true
60+ slowThreshold 2000
61+ showSummary true
62+ showPassed true
63+ showSkipped true
64+ showFailed true
65+ showStandardStreams false
66+ showPassedStandardStreams true
67+ showSkippedStandardStreams true
68+ showFailedStandardStreams true
7069 }
7170}
7271
Original file line number Diff line number Diff line change 1- FROM hyperledger/iroha:1.0.0
1+ FROM hyperledger/iroha:1.0.1
22WORKDIR /opt/iroha_data
33ENTRYPOINT ["" ]
44COPY run-iroha.sh wait-for-it.sh /
Original file line number Diff line number Diff line change 1- This directory contains image used in ` testcontainers-iroha ` : ` warchantua/iroha:1.0.0_rc1 ` .
1+ This directory contains image used in ` testcontainers-iroha ` : ` warchantua/iroha:1.0.1 ` .
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- export TAG=warchantua/iroha:1.0.0
3+ export TAG=warchantua/iroha:1.0.1
44
55docker build -t $TAG --compress --squash .
66docker push $TAG
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public class IrohaContainer extends FailureDetectingExternalResource implements
3636 public static final String defaultPostgresAlias = "iroha.postgres" ;
3737 public static final String defaultIrohaAlias = "iroha" ;
3838 public static final String irohaWorkdir = "/opt/iroha_data" ;
39- public static final String defaultIrohaDockerImage = "warchantua/iroha:1.0.0 " ;
39+ public static final String defaultIrohaDockerImage = "warchantua/iroha:1.0.1 " ;
4040 public static final String defaultPostgresDockerImage = "postgres:11-alpine" ;
4141
4242 // env vars
You can’t perform that action at this time.
0 commit comments