Skip to content

Commit

Permalink
fix tests condition
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp committed Apr 2, 2024
1 parent 6b51a3f commit 9d634cd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_athena.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || !github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_athena_iceberg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_bigquery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_databricks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_qdrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_snowflake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_synapse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_destinations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- run: |
poetry run pytest tests/load -m "essential"
name: Run essential tests Linux
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci full') && !github.event_name == 'schedule'}}
if: ${{ ! (contains(github.event.pull_request.labels.*.name, 'ci full') || github.event_name == 'schedule')}}
- run: |
poetry run pytest tests/load
Expand Down

0 comments on commit 9d634cd

Please sign in to comment.