Skip to content

Commit 22464b7

Browse files
committed
1.0.1
Signed-off-by: Bogdan Vaneev <[email protected]>
1 parent 4d65459 commit 22464b7

File tree

5 files changed

+17
-18
lines changed

5 files changed

+17
-18
lines changed

build.gradle

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff 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

testcontainers/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM hyperledger/iroha:1.0.0
1+
FROM hyperledger/iroha:1.0.1
22
WORKDIR /opt/iroha_data
33
ENTRYPOINT [""]
44
COPY run-iroha.sh wait-for-it.sh /

testcontainers/docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
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`.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
export TAG=warchantua/iroha:1.0.0
3+
export TAG=warchantua/iroha:1.0.1
44

55
docker build -t $TAG --compress --squash .
66
docker push $TAG

testcontainers/src/main/java/jp/co/soramitsu/iroha/testcontainers/IrohaContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)