From 48c4efc53fd064a2b4d653ab0431ce67d6ba7555 Mon Sep 17 00:00:00 2001 From: Scott Opell Date: Thu, 19 Oct 2023 19:04:53 +0000 Subject: [PATCH] enables more testcontainers logs --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e81d2abb5..6363c72a2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,11 +5,11 @@ lint_steps: &lint_steps - run: ./mvnw verify -B -Dhttps.protocols=TLSv1.2 -DskipTests build_steps: &build_steps environment: - DEBUG: testcontainers + DEBUG: testcontainers:build,testcontainers steps: - checkout - setup_remote_docker - - run: ./mvnw test -B -Dhttps.protocols=TLSv1.2 -Dcheckstyle.skip=true -Dtests.log_level=info -Djdk.attach.allowAttachSelf=true + - run: ./mvnw test -B -Dhttps.protocols=TLSv1.2 -Dcheckstyle.skip=true -Dtests.log_level=info -Djdk.attach.allowAttachSelf=true -Dtest=TestReconnectContainer - run: when: on_fail command: for log in target/surefire-reports/*.txt; do echo "$log ========================" ; cat $log ; done