From 94249bf8b1a51c74b0a639a94599784dffafb0bb Mon Sep 17 00:00:00 2001 From: Vadim Voitenko Date: Tue, 8 Oct 2024 08:59:31 +0300 Subject: [PATCH] Fix: wipe integration tests cache before running --- docker/integration/tests/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/integration/tests/Dockerfile b/docker/integration/tests/Dockerfile index 856f89d4..b0f408a1 100644 --- a/docker/integration/tests/Dockerfile +++ b/docker/integration/tests/Dockerfile @@ -33,7 +33,7 @@ for pg_version in ${PG_VERSIONS_CHECK[@]}; do \n\ echo "URI: ${URI}" \n\ echo "PG_BIN_PATH: ${PG_BIN_PATH}" \n\ echo "### RUN TESTS ###" \n\ - go test -v ./tests/integration/... \n\ + go clean -testcache && go test -v ./tests/integration/... \n\ if [ $? -eq 0 ]; then \n\ echo "### SUCCESSFUL CHECK COMPATIBILITY WITH POSTGRESQL ${pg_version} ###" \n\ else \n\