Skip to content

Commit

Permalink
skipping both captured_out_filter tests on windows
Browse files Browse the repository at this point in the history
no idea why this test randomly fails under windows.
  • Loading branch information
Qwlouse committed Jan 5, 2017
1 parent c99ded5 commit 871ae5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def run(a):

# FIXME: No idea why this fails under windows...
@pytest.mark.skipif(sys.platform.startswith('win'),
reason='fails on windows for some reason')
reason='randomly fails on windows for some reason')
def test_captured_out_filter(ex, capsys):
@ex.main
def run_print_mock_progress():
Expand Down
3 changes: 3 additions & 0 deletions tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@ def test_unobserved_run_doesnt_emit(run):
assert not observer.failed_event.called


# FIXME: No idea why this fails under windows...
@pytest.mark.skipif(sys.platform.startswith('win'),
reason='randomly fails on windows for some reason')
def test_captured_out_filter(run, capsys):
def print_mock_progress():
sys.stdout.write('progress 0')
Expand Down

0 comments on commit 871ae5a

Please sign in to comment.