From 222516dbd4291d6c45fd5950d5a001c2b7d5fe5c Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Tue, 28 Jan 2025 14:41:58 +0000 Subject: [PATCH] chore: added base tests in e2e service --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 32241446cc..4aa5252de0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,9 +26,9 @@ jobs: ABUSE_ENABLED=$(grep -oP '^_APP_OPTIONS_ABUSE=\K\w+' .env || echo 'disabled') if [ "$ABUSE_ENABLED" = "enabled" ]; then - echo 'test_suffixes=["CustomClient", "CustomServer"]' >> $GITHUB_OUTPUT + echo 'test_suffixes=["Base", "CustomClient", "CustomServer"]' >> $GITHUB_OUTPUT else - echo 'test_suffixes=["ConsoleClient"]' >> $GITHUB_OUTPUT + echo 'test_suffixes=["Base", "ConsoleClient"]' >> $GITHUB_OUTPUT fi - name: Set up Docker Buildx