From 69cc5373903332bdbb74de5d15a04341bcecad7f Mon Sep 17 00:00:00 2001 From: Maxim Lapan Date: Thu, 9 Jan 2025 11:32:59 +0100 Subject: [PATCH] Checking only saas backend --- .github/workflows/merge-gate.yml | 2 +- test/integration/test_cloud_storage.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/merge-gate.yml b/.github/workflows/merge-gate.yml index 2fb4934..2ab9306 100644 --- a/.github/workflows/merge-gate.yml +++ b/.github/workflows/merge-gate.yml @@ -44,7 +44,7 @@ jobs: SAAS_HOST: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }} SAAS_ACCOUNT_ID: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }} SAAS_PAT: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }} - run: poetry run pytest --backend=all test/integration + run: poetry run pytest --backend=saas test/integration # This job ensures inputs have been executed successfully. approve-merge: diff --git a/test/integration/test_cloud_storage.py b/test/integration/test_cloud_storage.py index 3e059a5..fd12c1d 100644 --- a/test/integration/test_cloud_storage.py +++ b/test/integration/test_cloud_storage.py @@ -9,12 +9,9 @@ def test_cloud_storage_setup_scripts( - backend, secrets: Secrets, setup_itde ): - if backend == "saas": - pytest.skip("Run this without SaaS") local_jar_path = retrieve_jar(Project.CLOUD_STORAGE_EXTENSION) bucket = open_bucketfs_connection(secrets) bfs_jar_path = put_file(bucket, local_jar_path)