Skip to content

Commit

Permalink
Test/CI: Disable IPython test on Windows.
Browse files Browse the repository at this point in the history
See issue #3535.
  • Loading branch information
bjones1 committed May 25, 2018
1 parent 19f03ee commit f72917b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional/test_interactive.py
Expand Up @@ -14,13 +14,16 @@
Note: All tests in this file should use the argument 'runtime'.
"""
import pytest

from PyInstaller.utils.tests import importorskip, xfail
from PyInstaller.compat import is_win

_RUNTIME = 10 # In seconds.


@importorskip('IPython')
@pytest.mark.skipif(is_win, reason='See issue #3535.')
def test_ipython(pyi_builder):
pyi_builder.test_source(
"""
Expand All @@ -34,4 +37,3 @@ def test_ipython(pyi_builder):
def test_pyside(pyi_builder):
pyi_builder.test_script('pyi_interact_pyside.py', #pyi_args=['--windowed'],
runtime=_RUNTIME)

0 comments on commit f72917b

Please sign in to comment.