From a829645360fff100be782ecc2709d7994e37f910 Mon Sep 17 00:00:00 2001 From: Steinthor Palsson Date: Fri, 6 Sep 2024 14:03:19 -0400 Subject: [PATCH] Debug sqlite version --- .../workflows/test_sqlalchemy_destinations.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test_sqlalchemy_destinations.yml b/.github/workflows/test_sqlalchemy_destinations.yml index e33e1a2e15..1b4c6aa087 100644 --- a/.github/workflows/test_sqlalchemy_destinations.yml +++ b/.github/workflows/test_sqlalchemy_destinations.yml @@ -85,12 +85,14 @@ jobs: - name: Install dependencies run: poetry install --no-interaction -E parquet -E filesystem -E sqlalchemy -E cli --with sentry-sdk --with pipeline && poetry run pip install mysqlclient - - name: create secrets.toml - run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml + - name: Check sqlite version + run: poetry run python -c "import sqlite3; print(sqlite3.sqlite_version)" + # - name: create secrets.toml + # run: pwd && echo "$DLT_SECRETS_TOML" > tests/.dlt/secrets.toml - # always run full suite, also on branches - - run: poetry run pytest tests/load tests/cli -x - name: Run tests Linux - env: - DESTINATION__SQLALCHEMY_MYSQL__CREDENTIALS: mysql://root:root@127.0.0.1:3306/dlt_data # Use root cause we need to create databases - DESTINATION__SQLALCHEMY_SQLITE__CREDENTIALS: sqlite:///_storage/dl_data.sqlite + # # always run full suite, also on branches + # - run: poetry run pytest tests/load tests/cli -x + # name: Run tests Linux + # env: + # DESTINATION__SQLALCHEMY_MYSQL__CREDENTIALS: mysql://root:root@127.0.0.1:3306/dlt_data # Use root cause we need to create databases + # DESTINATION__SQLALCHEMY_SQLITE__CREDENTIALS: sqlite:///_storage/dl_data.sqlite