From bdd8f264ac5e277ff4ae8e4b0e7608afde25862a Mon Sep 17 00:00:00 2001 From: Sam Ansmink Date: Fri, 30 Aug 2024 13:01:34 +0200 Subject: [PATCH] run only tests from this repo for cloud tests --- .github/workflows/CloudTesting.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CloudTesting.yml b/.github/workflows/CloudTesting.yml index 7fca288..ea4cc42 100644 --- a/.github/workflows/CloudTesting.yml +++ b/.github/workflows/CloudTesting.yml @@ -63,7 +63,7 @@ jobs: AZURE_TENANT_ID: ${{secrets.AZURE_TENANT_ID}} AZURE_STORAGE_ACCOUNT: ${{secrets.AZURE_STORAGE_ACCOUNT}} run: | - python3 duckdb/scripts/run_tests_one_by_one.py ./build/release/test/unittest "*test/sql/cloud/*" + python3 duckdb/scripts/run_tests_one_by_one.py ./build/release/test/unittest `pwd`/test/sql/cloud/* - name: Test with SPN logged in in azure-cli env: @@ -71,7 +71,7 @@ jobs: DUCKDB_AZ_CLI_LOGGED_IN: 1 run: | az login --service-principal -u ${{secrets.AZURE_CLIENT_ID}} -p ${{secrets.AZURE_CLIENT_SECRET}} --tenant ${{secrets.AZURE_TENANT_ID}} - python3 duckdb/scripts/run_tests_one_by_one.py ./build/release/test/unittest "*test/sql/cloud/*" + python3 duckdb/scripts/run_tests_one_by_one.py ./build/release/test/unittest `pwd`/test/sql/cloud/* - name: Log out azure-cli if: always() @@ -83,4 +83,4 @@ jobs: AZURE_STORAGE_ACCOUNT: ${{secrets.AZURE_STORAGE_ACCOUNT}} DUCKDB_AZURE_PUBLIC_CONTAINER_AVAILABLE: 1 run: | - python3 duckdb/scripts/run_tests_one_by_one.py ./build/release/test/unittest "*test/sql/cloud/*" \ No newline at end of file + python3 duckdb/scripts/run_tests_one_by_one.py ./build/release/test/unittest `pwd`/test/sql/cloud/* \ No newline at end of file