diff --git a/.github/workflows/test_destination_athena.yml b/.github/workflows/test_destination_athena.yml index 47f79a951c..1876f872f7 100644 --- a/.github/workflows/test_destination_athena.yml +++ b/.github/workflows/test_destination_athena.yml @@ -72,4 +72,10 @@ jobs: - run: | poetry run pytest tests/load -m "essential" - name: Run tests Linux \ No newline at end of file + name: Run essential tests Linux + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full')}} + + - run: | + poetry run pytest tests/load + name: Run all tests Linux + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci full')}} diff --git a/.github/workflows/test_destination_athena_iceberg.yml b/.github/workflows/test_destination_athena_iceberg.yml index 05dd1ea4ad..6f3605f14c 100644 --- a/.github/workflows/test_destination_athena_iceberg.yml +++ b/.github/workflows/test_destination_athena_iceberg.yml @@ -72,4 +72,12 @@ jobs: - run: | poetry run pytest tests/load -m "essential" - name: Run tests Linux \ No newline at end of file + name: Run essential tests Linux + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full')}} + + - run: | + poetry run pytest tests/load + name: Run all tests Linux + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci full')}} + + \ No newline at end of file diff --git a/.github/workflows/test_destination_bigquery.yml b/.github/workflows/test_destination_bigquery.yml index 0b4178c091..41ba2ed8ea 100644 --- a/.github/workflows/test_destination_bigquery.yml +++ b/.github/workflows/test_destination_bigquery.yml @@ -67,8 +67,7 @@ jobs: - name: create secrets.toml run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml - - + - run: | poetry run pytest tests/load -m "essential" name: Run essential tests Linux diff --git a/.github/workflows/test_destination_databricks.yml b/.github/workflows/test_destination_databricks.yml index ad102b7566..5f893994dc 100644 --- a/.github/workflows/test_destination_databricks.yml +++ b/.github/workflows/test_destination_databricks.yml @@ -68,4 +68,10 @@ jobs: - run: | poetry run pytest tests/load -m "essential" - name: Run tests Linux \ No newline at end of file + name: Run essential tests Linux + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full')}} + + - run: | + poetry run pytest tests/load + name: Run all tests Linux + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci full')}} diff --git a/.github/workflows/test_destination_mssql.yml b/.github/workflows/test_destination_mssql.yml index dd8147403d..0da7c0ba64 100644 --- a/.github/workflows/test_destination_mssql.yml +++ b/.github/workflows/test_destination_mssql.yml @@ -73,4 +73,10 @@ jobs: - run: | poetry run pytest tests/load -m "essential" - name: Run tests Linux \ No newline at end of file + name: Run essential tests Linux + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full')}} + + - run: | + poetry run pytest tests/load + name: Run all tests Linux + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci full')}} diff --git a/.github/workflows/test_destination_qdrant.yml b/.github/workflows/test_destination_qdrant.yml index c9d47a9da7..bd06ae6cf8 100644 --- a/.github/workflows/test_destination_qdrant.yml +++ b/.github/workflows/test_destination_qdrant.yml @@ -66,4 +66,10 @@ jobs: - run: | poetry run pytest tests/load -m "essential" - name: Run tests Linux \ No newline at end of file + name: Run essential tests Linux + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full')}} + + - run: | + poetry run pytest tests/load + name: Run all tests Linux + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci full')}} diff --git a/.github/workflows/test_destination_snowflake.yml b/.github/workflows/test_destination_snowflake.yml index 55badf7860..fb31bdf76f 100644 --- a/.github/workflows/test_destination_snowflake.yml +++ b/.github/workflows/test_destination_snowflake.yml @@ -68,4 +68,11 @@ jobs: - run: | poetry run pytest tests/load -m "essential" - name: Run tests Linux \ No newline at end of file + name: Run essential tests Linux + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full')}} + + - run: | + poetry run pytest tests/load + name: Run all tests Linux + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci full')}} + diff --git a/.github/workflows/test_destination_synapse.yml b/.github/workflows/test_destination_synapse.yml index 6943a27c85..8948d4e8fc 100644 --- a/.github/workflows/test_destination_synapse.yml +++ b/.github/workflows/test_destination_synapse.yml @@ -71,6 +71,11 @@ jobs: - run: | poetry run pytest tests/load -m "essential" - name: Run tests Linux + name: Run essential tests Linux + if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full')}} + + - run: | + poetry run pytest tests/load + name: Run all tests Linux + if: ${{ contains(github.event.pull_request.labels.*.name, 'ci full')}} -