Skip to content

Commit 4c766f0

Browse files
authored
XFail test_issue_36 for now to avoid failing for unrelated changes (#779)
See #714
1 parent cd06af8 commit 4c766f0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_issues.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,11 @@ async def test_issue_36(connection_creator):
255255
rows = await c.fetchall()
256256
ids = [row[0] for row in rows]
257257

258-
assert kill_id not in ids
258+
try:
259+
assert kill_id not in ids
260+
except AssertionError:
261+
# FIXME: figure out why this is failing
262+
pytest.xfail("https://github.com/aio-libs/aiomysql/issues/714")
259263

260264

261265
@pytest.mark.run_loop

0 commit comments

Comments
 (0)