Skip to content

Commit

Permalink
Move test location to file where it will work.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Jun 25, 2024
1 parent 6c540b3 commit bea08de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 18 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ all = "python -m pytest {args:tests/unit}"
[tool.hatch.envs.integration-tests]
template = "unit-tests"
extra-dependencies = [
"dbt-tests-adapter @ git+https://github.com/dbt-labs/dbt-adapters.git@ADAP-207/get_show_sql_has_no_wrapping",
"dbt-tests-adapter @ git+https://github.com/dbt-labs/dbt-adapters.git@ADAP-207/get_show_sql_has_no_wrapping#subdirectory=dbt-tests-adapter",
]
[tool.hatch.envs.integration-tests.env-vars]
DBT_TEST_USER_1 = "dbt_test_user_1"
Expand Down
17 changes: 0 additions & 17 deletions tests/functional/adapter/dbt_show/test_dbt_show.py

This file was deleted.

5 changes: 5 additions & 0 deletions tests/functional/shared_tests/test_show.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from dbt.tests.adapter.dbt_show.test_dbt_show import (
BaseShowLimit,
BaseShowSqlHeader,
BaseShowDoesNotHandleDoubleLimit,
)


Expand All @@ -10,3 +11,7 @@ class TestPostgresShowSqlHeader(BaseShowSqlHeader):

class TestPostgresShowLimit(BaseShowLimit):
pass


class TestPostgresShowDoesNotHandleDoubleLimit(BaseShowDoesNotHandleDoubleLimit):
pass

0 comments on commit bea08de

Please sign in to comment.