Skip to content

Commit 0d88de3

Browse files
committed
Skip Airbyte MySQL failure tests
They fail for the right reason (wrong uname/pw) but with a wrong message and take 120s to do so.
1 parent 7611ba8 commit 0d88de3

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

test/splitgraph/ingestion/test_airbyte.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,10 @@ def _assert_raw_data(repo):
694694

695695

696696
@pytest.mark.mounting
697+
@pytest.mark.skip(
698+
reason="Wrong error message (keeps trying to reconnect with the wrong credentials "
699+
"and times out after 60s instead of straight-up erroring"
700+
)
697701
def test_airbyte_mysql_source_failure(local_engine_empty):
698702
source = _source(local_engine_empty)
699703
source.credentials["password"] = "wrongpass"
@@ -706,6 +710,10 @@ def test_airbyte_mysql_source_failure(local_engine_empty):
706710

707711

708712
@pytest.mark.mounting
713+
@pytest.mark.skip(
714+
reason="Wrong error message (keeps trying to reconnect with the wrong credentials "
715+
"and times out after 60s instead of straight-up erroring"
716+
)
709717
def test_airbyte_mysql_source_introspection_failure(local_engine_empty):
710718
source = _source(local_engine_empty)
711719
source.credentials["password"] = "wrongpass"

0 commit comments

Comments
 (0)