Skip to content

Commit

Permalink
Merge pull request #18108 from juliangilbey/test_sympy_version_check
Browse files Browse the repository at this point in the history
PR: `test_sympy_client` xpasses with sympy version 1.10.1
  • Loading branch information
dalthviz committed Jun 15, 2022
2 parents 2857ee8 + 932039e commit 2aef8a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spyder/plugins/ipythonconsole/tests/test_ipythonconsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,8 @@ def test_pylab_client(ipyconsole, qtbot):

@flaky(max_runs=3)
@pytest.mark.sympy_client
@pytest.mark.xfail('1.0' < sympy.__version__ < '1.2',
@pytest.mark.xfail(parse_version('1.0') < parse_version(sympy.__version__) <
parse_version('1.2'),
reason="A bug with sympy 1.1.1 and IPython-Qtconsole")
def test_sympy_client(ipyconsole, qtbot):
"""Test that the SymPy console is working correctly."""
Expand Down

0 comments on commit 2aef8a9

Please sign in to comment.