Skip to content

Commit edcdcd4

Browse files
committed
Dialect test command corrected
1 parent 5864dfc commit edcdcd4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,7 @@ build/
210210
test.env
211211

212212
#intellij stuff
213-
.idea
213+
.idea
214+
215+
# don't commit authentication info to source control
216+
*.env

sqlalchemy-plugin/src/sqlalchemy_db/README.tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ We maintain `_extra.py` with test cases that depend on SQLAlchemy's reusable dia
2525
poetry shell
2626
cd src/databricks/sqlalchemy/test
2727
python -m pytest test_suite.py --dburi \
28-
"databricks://token:$access_token@$host?http_path=$http_path&catalog=$catalog&schema=$schema"
28+
"databricks://token:$access_token@$host?http_path=$http_path&catalog=$catalog&schema=$schema -c ../setup.cfg"
2929
```
3030

3131
Whatever schema you pass in the `dburi` argument should be empty. Some tests also require the presence of an empty schema named `test_schema`. Note that we plan to implement our own `provision.py` which SQLAlchemy can automatically use to create an empty schema for testing. But for now this is a manual process.

0 commit comments

Comments
 (0)