File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
smoke-test/turbo-mode/src/test/java/org/testcontainers/example Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 6363 - name : Test using Testcontainers Cloud with Turbo Mode enabled
6464 working-directory : ./smoke-test/
6565 run : |
66- ./gradlew --no-daemon --continue --scan --info ${{matrix.gradle_args}}
66+ ./gradlew check --no-daemon --continue --scan --info
6767
6868 find_gradle_jobs :
6969 needs : [core]
Original file line number Diff line number Diff line change @@ -9,8 +9,11 @@ class AbstractRedisContainer {
99 private static final String REDIS_IMAGE = "redis:7.0.12-alpine" ;
1010
1111 void runRedisContainer () {
12- try (GenericContainer <?> redis = new GenericContainer <>(REDIS_IMAGE ).withExposedPorts (6379 )
13- .withCreateContainerCmdModifier (cmd -> cmd .withName ("tc-redis" ))) {
12+ try (
13+ GenericContainer <?> redis = new GenericContainer <>(REDIS_IMAGE )
14+ .withExposedPorts (6379 )
15+ .withCreateContainerCmdModifier (cmd -> cmd .withName ("tc-redis" ))
16+ ) {
1417 redis .start ();
1518 assertThat (redis .isRunning ()).isTrue ();
1619 }
You can’t perform that action at this time.
0 commit comments