From c4db3e1160fd4f82dfad3653f5bece955340e470 Mon Sep 17 00:00:00 2001 From: Tanner Ricks <182143365+tanner-ricks@users.noreply.github.com> Date: Tue, 10 Dec 2024 10:43:21 -0600 Subject: [PATCH] HOTFIX: Adding missing envar to pipeline (#1080) Pipeline test stage wasn't running correctly sue to missing envar ## Changes - updated .env pipeline file - updated environment guide ## How to test this PR 1. Verify that the pipeline on this PR is successful --- .github/variables/.env | 1 + ENV-GUIDE.md | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/variables/.env b/.github/variables/.env index 66234cd4c..92d3da712 100644 --- a/.github/variables/.env +++ b/.github/variables/.env @@ -17,6 +17,7 @@ SBL_LONGPOLLING_DELAY_SECONDS=backoff SBL_UPLOAD_FILE_SIZE_LIMIT_BYTES=50000000 SBL_ENABLE_PLAYWRIGHT_TEST_SETTINGS=false +SBL_ENABLE_PLAYWRIGHT_SNAPSHOT_TESTING=false ############################################################### # ONLY ADD ENVIRONMENT VARIABLES THAT ARE NOT MEANT TO BE diff --git a/ENV-GUIDE.md b/ENV-GUIDE.md index 12eee7e40..e34500323 100644 --- a/ENV-GUIDE.md +++ b/ENV-GUIDE.md @@ -19,6 +19,7 @@ SBL_VALIDATION_TIMEOUT_SECONDS="1200" SBL_LONGPOLLING_DELAY_SECONDS="backoff" SBL_UPLOAD_FILE_SIZE_LIMIT_BYTES="50000000" SBL_ENABLE_PLAYWRIGHT_TEST_SETTINGS=false +SBL_ENABLE_PLAYWRIGHT_SNAPSHOT_TESTING=false ``` ### Required Test Environment Variables