From 7f972ab961461a90ea475029e9bdf0844c9b7dc1 Mon Sep 17 00:00:00 2001 From: Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com> Date: Fri, 30 Jun 2023 10:31:41 +0200 Subject: [PATCH] Run E2E tests using Replay browser weekly (#32021) Replay is adding a significant overhead and is making every single run fail. This is messing with our statistics and analytics. While the Replay.io team is working on some optimizations that would remove the overhead, we can significantly dial down the frequency of these runs. We'll switch to running them only once per week, on Sunday. For now... --- .github/workflows/e2e-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 3bb424f757a..ab120a33036 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -3,7 +3,7 @@ name: E2E Tests on: # We'll record runs using Replay.io and their browser on a schedule as an experiment schedule: - - cron: '0 */8 * * *' + - cron: '* * * * 0' push: branches: - "master" -- GitLab