Skip to content

Commit

Permalink
remove unused test case
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jan 26, 2024
1 parent 937e0a3 commit 834b970
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions tests/functional/test_connection_manager.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,11 @@
from unittest import TestCase, mock

from dbt.adapters.contracts.connection import Connection
from dbt.tests.adapter.connection_manager import ConnectionManagerRetry
import psycopg2

from dbt.adapters.postgres import PostgresCredentials, PostgresConnectionManager


class TestConnectionManagerRetry(ConnectionManagerRetry):
def get_connection(self) -> Connection:
if connection := self.connection:
pass
else:
credentials = PostgresCredentials(
host="localhost",
user="test-user",
port=1111,
password="test-password",
database="test-db",
schema="test-schema",
)
connection = Connection("postgres", None, credentials)
return connection


class TestConnectionManagerOpen(TestCase):
connection = None

Expand Down

0 comments on commit 834b970

Please sign in to comment.