Skip to content

Commit

Permalink
add xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshrn committed Jul 17, 2020
1 parent 65638b1 commit 2e77961
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/unit/channel_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ def ssh_channel(ssh_client_session):
chan.close()


@pytest.mark.xfail(
reason='This test causes SEGFAULT, flakily. '
'Ref: https://github.com/ansible/pylibssh/issues/57', # noqa: WPS326
run=False,
strict=False,
)
@pytest.mark.forked
def test_exec_command(ssh_channel):
"""Test getting the output of a remotely executed command."""
Expand Down

0 comments on commit 2e77961

Please sign in to comment.