From 6e8f65baa78cf8c45b36545518f8f97fcf86636c Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 5 Nov 2024 13:21:37 +0100 Subject: [PATCH] move secrets tests further down and fix deps --- .github/workflows/test_common.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index ed2ff1d10f..296fd69ae7 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -106,11 +106,11 @@ jobs: run: poetry install --no-interaction -E duckdb -E filesystem -E s3 --with sentry-sdk - run: | - poetry run pytest tests/pipeline/test_pipeline.py tests/pipeline/test_import_export_schema.py tests/pipeline/test_filesystem_sql_secrets.py + poetry run pytest tests/pipeline/test_pipeline.py tests/pipeline/test_import_export_schema.py if: runner.os != 'Windows' name: Run pipeline smoke tests with minimum deps Linux/MAC - run: | - poetry run pytest tests/pipeline/test_pipeline.py tests/pipeline/test_import_export_schema.py tests/pipeline/test_filesystem_sql_secrets.py -m "not forked" + poetry run pytest tests/pipeline/test_pipeline.py tests/pipeline/test_import_export_schema.py -m "not forked" if: runner.os == 'Windows' name: Run smoke tests with minimum deps Windows shell: cmd @@ -129,7 +129,7 @@ jobs: shell: cmd - name: Install pipeline and sources dependencies - run: poetry install --no-interaction -E duckdb -E cli -E parquet -E deltalake -E sql_database --with sentry-sdk,pipeline,sources + run: poetry install --no-interaction -E duckdb -E cli -E parquet -E deltalake -E sql_database -E s3 -E filesystem --with sentry-sdk,pipeline,sources - run: | poetry run pytest tests/extract tests/pipeline tests/libs tests/cli/common tests/destinations tests/sources