From 8f549f0622774a9c3599837e3b7150f1e7ff8f15 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Thu, 21 Sep 2023 10:13:59 +0200 Subject: [PATCH] add sleep after nop test (#2350) Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --- .github/actions/e2e_test/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/e2e_test/action.yml b/.github/actions/e2e_test/action.yml index 2c0b14761c..2aaacae13e 100644 --- a/.github/actions/e2e_test/action.yml +++ b/.github/actions/e2e_test/action.yml @@ -268,7 +268,10 @@ runs: - name: Nop test payload if: inputs.test == 'nop' shell: bash - run: echo "::warning::This test has a nop payload. It doesn't run any tests." + run: | + echo "::warning::This test has a nop payload. It doesn't run any tests." + echo "Sleeping for 30 seconds to allow logs to propagate to the log collection service." + sleep 30 - name: Run sonobuoy quick test if: inputs.test == 'sonobuoy quick'