From 602d44a0f58c533d46f22300ce6550495089c0da Mon Sep 17 00:00:00 2001 From: Yousif Akbar <11247449+yhakbar@users.noreply.github.com> Date: Fri, 16 May 2025 12:00:00 -0400 Subject: [PATCH 1/2] fix: Fixing `remote-relative-with-slash` fixture on ARM tests --- .../fixtures/download/remote-relative-with-slash/terragrunt.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/download/remote-relative-with-slash/terragrunt.hcl b/test/fixtures/download/remote-relative-with-slash/terragrunt.hcl index 467cc62669..010df80f13 100644 --- a/test/fixtures/download/remote-relative-with-slash/terragrunt.hcl +++ b/test/fixtures/download/remote-relative-with-slash/terragrunt.hcl @@ -3,5 +3,5 @@ inputs = { } terraform { - source = "github.com/gruntwork-io/terragrunt.git?ref=v0.77.22//test/fixtures/download/relative" + source = "github.com/gruntwork-io/terragrunt.git?ref=v0.78.4//test/fixtures/download/relative" } From de2dbc1f99e397ab65a502d7888a8dc51f622ed7 Mon Sep 17 00:00:00 2001 From: Yousif Akbar <11247449+yhakbar@users.noreply.github.com> Date: Mon, 19 May 2025 16:15:41 -0400 Subject: [PATCH 2/2] fix: Explicitly avoid checking stderr --- test/integration_run_test.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/integration_run_test.go b/test/integration_run_test.go index c74bce6f72..20097c8d16 100644 --- a/test/integration_run_test.go +++ b/test/integration_run_test.go @@ -106,7 +106,12 @@ func TestRunNoStacksGenerate(t *testing.T) { if tt.shouldFail { require.Error(t, err) assert.Empty(t, stdout) - assert.Empty(t, stderr) + // We should explicitly avoid asserting on stderr, because information + // might be logged to stderr, even if the command succeeds. + // + // e.g. Usage of the provider cache server. + // + // assert.Empty(t, stderr) } else { require.NoError(t, err) assert.NotEmpty(t, stdout)