Skip to content

Commit

Permalink
mark one test as essential and switch destination tests to run essent…
Browse files Browse the repository at this point in the history
…ial tests
  • Loading branch information
sh-rp committed Mar 28, 2024
1 parent 5bda072 commit 190fd2f
Show file tree
Hide file tree
Showing 10 changed files with 10 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 @@ -70,5 +70,5 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
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 @@ -70,5 +70,5 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_bigquery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_databricks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_qdrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ jobs:
run: poetry install --no-interaction -E qdrant -E parquet --with sentry-sdk --with pipeline

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_snowflake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
2 changes: 1 addition & 1 deletion .github/workflows/test_destination_synapse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
2 changes: 1 addition & 1 deletion .github/workflows/test_destinations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ jobs:
run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml

- run: |
poetry run pytest tests/load/essential
poetry run pytest tests/load -m "essential"
name: Run tests Linux/MAC
1 change: 1 addition & 0 deletions tests/load/pipeline/test_restore_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def duckdb_pipeline_location() -> None:
del os.environ["DESTINATION__DUCKDB__CREDENTIALS"]


@pytest.mark.essential
@pytest.mark.parametrize(
"destination_config",
destinations_configs(
Expand Down

0 comments on commit 190fd2f

Please sign in to comment.