1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-18 20:11:17 +00:00

#486: Ignore a test on Windows

This commit is contained in:
Pablo Santiago Blum de Aguiar 2016-03-29 23:34:29 -03:00
parent 047a1a6072
commit 28153db4a8

View File

@ -52,6 +52,7 @@ def test_match(ssh_error):
assert not match(Command('ssh'))
@pytest.mark.skipif(os.name == 'nt', reason='Skip if testing on Windows')
def test_side_effect(ssh_error):
errormsg, path, reset, known_hosts = ssh_error
command = Command('ssh user@host', stderr=errormsg)