Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ Now you can insert it into the testing database(s):
```shell-session
# It's optional to seed more than one to run data-diff(1) against.
$ poetry run preql -f dev/prepare_db.pql mysql://mysql:Password1@127.0.0.1:3306/mysql
$ poetry run preql -f dev/prepare_db.pql postgres://postgres:Password1@127.0.0.1:5432/postgres
$ poetry run preql -f dev/prepare_db.pql postgresql://postgres:Password1@127.0.0.1:5432/postgres

# Cloud databases
$ poetry run preql -f dev/prepare_db.pql snowflake://<uri>
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ rich = "^10.16.2"
toml = "^0.10.2"

[tool.poetry.dev-dependencies]
databricks-sql-connector = "*"
parameterized = "*"
unittest-parallel = "*"
preql = "^0.2.16"
mysql-connector-python = "*"
preql = "^0.2.15"
databricks-sql-connector = "*"
snowflake-connector-python = "*"
trino = "^0.314.0"
psycopg2 = "*"
presto-python-client = "*"
parameterized = "*"
unittest-parallel = "*"

[tool.poetry.extras]
# When adding, update also: README + dev deps just above
Expand Down