Skip to content

Commit 3df7c89

Browse files
author
Jesse Whitehouse
committed
Fix imports so that this module can be run independently:
poetry run python -m pytest tests/unit/tests.py This command failed with only relative inputs. However poetry run python -m pytest tests/unit would succeed Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
1 parent 6b76439 commit 3df7c89

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/unit/tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
from databricks.sql import InterfaceError, DatabaseError, Error, NotSupportedError
1313
from databricks.sql.types import Row
1414

15-
from test_fetches import FetchTests
16-
from test_thrift_backend import ThriftBackendTestSuite
17-
from test_arrow_queue import ArrowQueueSuite
15+
from tests.unit.test_fetches import FetchTests
16+
from tests.unit.test_thrift_backend import ThriftBackendTestSuite
17+
from tests.unit.test_arrow_queue import ArrowQueueSuite
1818

1919

2020
class ClientTestSuite(unittest.TestCase):

0 commit comments

Comments
 (0)