From f72917bb3a96a2bb0b53bd814be7eaef35491915 Mon Sep 17 00:00:00 2001 From: "Bryan A. Jones" Date: Thu, 24 May 2018 11:26:42 -0500 Subject: [PATCH] Test/CI: Disable IPython test on Windows. See issue #3535. --- tests/functional/test_interactive.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/functional/test_interactive.py b/tests/functional/test_interactive.py index 802fe76bba..fbcb05dec8 100644 --- a/tests/functional/test_interactive.py +++ b/tests/functional/test_interactive.py @@ -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( """ @@ -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) -