Skip to content

Commit

Permalink
Debug sqlite version
Browse files Browse the repository at this point in the history
  • Loading branch information
steinitzu committed Sep 6, 2024
1 parent 2dd766a commit a829645
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/test_sqlalchemy_destinations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:[email protected]: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:[email protected]:3306/dlt_data # Use root cause we need to create databases
# DESTINATION__SQLALCHEMY_SQLITE__CREDENTIALS: sqlite:///_storage/dl_data.sqlite

0 comments on commit a829645

Please sign in to comment.