mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 20:11:17 +00:00
#1248: Skip a failing test when running on Windows
This commit is contained in:
parent
cf0921be4a
commit
617aaa1fd0
@ -1,5 +1,7 @@
|
|||||||
# -*- encoding: utf-8 -*-
|
# -*- encoding: utf-8 -*-
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
import sys
|
||||||
from mock import Mock, patch
|
from mock import Mock, patch
|
||||||
from psutil import AccessDenied, TimeoutExpired
|
from psutil import AccessDenied, TimeoutExpired
|
||||||
|
|
||||||
@ -30,6 +32,7 @@ class TestRerun(object):
|
|||||||
actual = rerun.get_output('', '')
|
actual = rerun.get_output('', '')
|
||||||
assert actual == expected
|
assert actual == expected
|
||||||
|
|
||||||
|
@pytest.mark.skipif(sys.platform == 'win32', reason="skip when running on Windows")
|
||||||
@patch('thefuck.output_readers.rerun._wait_output')
|
@patch('thefuck.output_readers.rerun._wait_output')
|
||||||
def test_get_output_unicode_misspell(self, wait_output_mock):
|
def test_get_output_unicode_misspell(self, wait_output_mock):
|
||||||
rerun.get_output(u'pácman', u'pácman')
|
rerun.get_output(u'pácman', u'pácman')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user