Skip to content

Commit 2fab1dd

Browse files
committed
Add print to see what CI outputs
1 parent bbadf10 commit 2fab1dd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

temporal-spring-boot-autoconfigure/src/test/java/io/temporal/spring/boot/autoconfigure/WorkerVersioningTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public class WorkerVersioningTest {
2929
@BeforeAll
3030
static void checkDockerService() {
3131
String useDocker = System.getenv("USE_DOCKER_SERVICE");
32+
System.out.println("USE_DOCKER_SERVICE123: " + useDocker);
33+
if (useDocker != null) {
34+
System.out.println("useDocker.equalsIgnoreCase(true): " + useDocker.equalsIgnoreCase("true"));
35+
}
3236
Assumptions.assumeTrue(
3337
useDocker != null && useDocker.equalsIgnoreCase("true"),
3438
"Skipping tests because USE_DOCKER_SERVICE is not set");

0 commit comments

Comments
 (0)