-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Slightly refactor fixed config values into
tests/settings.py
(#…
…312) Dear Derek and Edgar, first things first: Thank you so much for your excellent work on MeltanoLabs' `{tap,target}-postgres`. We have been able to build upon them at [^1][^2] without much ado. We fear we can't contribute anything significant back for the time being, other than cosmetic changes, if you like them. In this spirit, this patch makes a humble start. It was derived from crate-workbench/meltano-tap-cratedb#1, and pulls the database-specific configuration values into a `tests/settings.py` file, to make it easier to adjust them. With kind regards, Andreas. [^1]: https://github.com/crate-workbench/meltano-tap-cratedb [^2]: https://github.com/crate-workbench/meltano-target-cratedb
- Loading branch information
Showing
6 changed files
with
21 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.idea | ||
.vscode/** | ||
# Secrets and internal config files | ||
**/.secrets/* | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# PostgreSQL default schema name. | ||
DB_SCHEMA_NAME = "public" | ||
|
||
# SQLAlchemy connection URL. | ||
DB_SQLALCHEMY_URL = "postgresql://postgres:postgres@localhost:5432/postgres" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters