Skip to content

Commit

Permalink
✅ xpass specific tests
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Jul 28, 2024
1 parent fa37804 commit 05c9ac8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/func/sqlite3_to_mysql_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ def test_valid_sqlite_file_and_valid_mysql_credentials(
)

@pytest.mark.init
@pytest.mark.xfail
@pytest.mark.parametrize("quiet", [False, True])
def test_valid_sqlite_file_and_invalid_mysql_credentials_raises_access_denied_exception(
self,
Expand All @@ -95,6 +96,7 @@ def test_valid_sqlite_file_and_invalid_mysql_credentials_raises_access_denied_ex
assert "Access denied for user" in str(excinfo.value)

@pytest.mark.init
@pytest.mark.xfail
@pytest.mark.parametrize("quiet", [False, True])
def test_unspecified_mysql_error(
self,
Expand Down Expand Up @@ -177,6 +179,7 @@ def cursor(
)

@pytest.mark.init
@pytest.mark.xfail
@pytest.mark.parametrize("quiet", [False, True])
def test_bad_mysql_connection(
self, sqlite_database: str, mysql_credentials: MySQLCredentials, mocker: MockFixture, quiet: bool
Expand Down

0 comments on commit 05c9ac8

Please sign in to comment.