From ecc89cc64c80ebaf584d14b1b34b0072d08cd014 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 14 Jan 2025 21:04:22 +0100 Subject: [PATCH] Since docker-compose 2.32.2 present_3 is no longer changed. This has been caused by https://github.com/docker/compose/pull/12442, since that PR removes the "building" event. --- .../integration/targets/docker_compose_v2/tasks/tests/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/docker_compose_v2/tasks/tests/build.yml b/tests/integration/targets/docker_compose_v2/tasks/tests/build.yml index 9e49fda4..cd056f62 100644 --- a/tests/integration/targets/docker_compose_v2/tasks/tests/build.yml +++ b/tests/integration/targets/docker_compose_v2/tasks/tests/build.yml @@ -121,7 +121,7 @@ - present_2.warnings | default([]) | select('regex', ' Please report this at ') | length == 0 - present_3_check is changed - present_3_check.warnings | default([]) | select('regex', ' Please report this at ') | length == 0 - - ((present_3 is changed) if docker_compose_version is version('2.31.0', '>=') else (present_3 is not changed)) + - ((present_3 is changed) if docker_compose_version is version('2.31.0', '>=') and docker_compose_version is version('2.32.2', '<') else (present_3 is not changed)) - present_3.warnings | default([]) | select('regex', ' Please report this at ') | length == 0 - present_4_check is changed - present_4_check.warnings | default([]) | select('regex', ' Please report this at ') | length == 0