Skip to content

Commit

Permalink
Adding comments and deleting useless empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
99Lys committed Jan 10, 2025
1 parent b344403 commit 2795f54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion dbt/adapters/dremio/api/rest/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# limitations under the License.



import requests

from dbt.adapters.dremio.api.authentication import DremioPatAuthentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ def dbt_profile_data(self, unique_schema, dbt_profile_target, profiles_config_up
profile.update(profiles_config_update)
return profile

# Overriding this fixture to set autouse to be False so we are able to perform
# run_dbt accordingly in each of the following tests
@pytest.fixture(scope="class", autouse=False)
def setUp(self, project):
run_dbt(["seed"])
Expand Down Expand Up @@ -271,7 +273,8 @@ def _get_relation_id(self, project, client, identifier):
)
return catalog_info.get("id")

# Overriding the original test, to be ignored
# Overriding the original test, to be ignored because it was testing
# the original persist_docs behavior, which does not apply anymore
def test_has_comments_pglike(self, project):
pass

Expand Down

0 comments on commit 2795f54

Please sign in to comment.