-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
swap back to __version__.py #3
Conversation
CONTRIBUTING.md
Outdated
@@ -86,6 +86,8 @@ will be reflected in the virtual environment immediately. | |||
`dbt-postgres` contains [unit](https://github.com/dbt-labs/dbt-postgres/tree/main/tests/unit) | |||
and [functional](https://github.com/dbt-labs/dbt-postgres/tree/main/tests/functional) tests. | |||
|
|||
To install test dependencies run: `pip install -e ".[test]"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We decided to specifically not advertise that you could do this, and provide instructions just for hatch
. Obviously that didn't happen at all here, but I don't think we should add this. Whether it's in this PR, or a separate docs one, we should update this file to be hatch
-centric.
CONTRIBUTING.md
Outdated
@@ -74,7 +74,7 @@ Rather than forking `dbt-labs/dbt-postgres`, use `dbt-labs/dbt-postgres` directl | |||
[Setting up an environment](https://github.com/dbt-labs/dbt-core/blob/HEAD/CONTRIBUTING.md#setting-up-an-environment) | |||
3. Install `dbt-postgres` and development dependencies in the virtual environment | |||
```shell | |||
pip install -e .[dev] | |||
pip install -e "".[dev]"" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Double double quotes doesn't look right here.
@@ -1,34 +0,0 @@ | |||
from dbt.tests.util import run_dbt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So doesn't look like any adapter implements these tests and they're really covering dbt-core functionality.
We will test this via the persist_docs tests defined in dbt-tests-adapter in #4
resolves #
docs dbt-labs/docs.getdbt.com/#
Problem
Solution
Checklist