From 056ed75bf139afda2cb93a28bcd3e4d06c6f0850 Mon Sep 17 00:00:00 2001 From: Nick Gregory Date: Tue, 7 Nov 2023 14:42:03 -0500 Subject: [PATCH] dismiss santa popup after integration tests (#1226) --- .github/workflows/e2e.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index adc98e71a..29343304a 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -34,7 +34,10 @@ jobs: bazel run //Testing/integration:allow_sysex sudo santactl sync --debug - name: Run integration test binaries - run: bazel test //Testing/integration:integration_tests + run: | + bazel test //Testing/integration:integration_tests + sleep 3 + bazel run //Testing/integration:dismiss_santa_popup || true - name: Test config changes run: ./Testing/integration/test_config_changes.sh - name: Test sync server changes