Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/integration/dbapi/async/test_errors_async.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from httpx import ConnectError
from pytest import raises
from pytest import mark, raises

from firebolt.async_db import Connection, connect
from firebolt.utils.exception import (
Expand Down Expand Up @@ -119,6 +119,7 @@ async def test_engine_stopped(
await connection.cursor().execute("show tables")


@mark.skip(reason="Behaviour is different in prod vs dev")
async def test_database_not_exists(
engine_url: str, database_name: str, username: str, password: str, api_endpoint: str
) -> None:
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/dbapi/sync/test_errors.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from httpx import ConnectError
from pytest import raises
from pytest import mark, raises

from firebolt.db import Connection, connect
from firebolt.utils.exception import (
Expand Down Expand Up @@ -109,6 +109,7 @@ def test_engine_stopped(
connection.cursor().execute("show tables")


@mark.skip(reason="Behaviour is different in prod vs dev")
def test_database_not_exists(
engine_url: str, database_name: str, username: str, password: str, api_endpoint: str
) -> None:
Expand Down