Skip to content

Commit

Permalink
Update ipythonconsole plugin tests
Browse files Browse the repository at this point in the history
test_ipythoncosonle.py had many failures on latest master; attempting CI=1 skipped many tests but hangs on test_pdb_ignore_lib[True]
  • Loading branch information
mrclary committed Feb 6, 2024
1 parent 45028b2 commit 3999697
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ def test_kernel_pypath(tmpdir, default_interpreter):
kernel_spec = SpyderKernelSpec()

# Check that PYTHONPATH is not in our kernelspec
# and pypath is in SPY_PYTHONPATH
assert 'PYTHONPATH' not in kernel_spec.env
assert pypath in kernel_spec.env['SPY_PYTHONPATH']

# Restore default values
CONF.set('main_interpreter', 'default', True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ def test_connection_dialog_remembers_input_with_ssh_passphrase(
assert new_dlg.pn.text() == str(pytest.pn)
assert new_dlg.kf.text() == pytest.kf
if not running_in_ci():
# !!! This fails on latest master...
assert new_dlg.kfp.text() == pytest.kfp


Expand Down Expand Up @@ -182,6 +183,7 @@ def test_connection_dialog_remembers_input_with_password(
assert new_dlg.un.text() == pytest.un
assert new_dlg.pn.text() == str(pytest.pn)
if not running_in_ci():
# !!! This fails on latest master...
assert new_dlg.pw.text() == pytest.pw


Expand Down

0 comments on commit 3999697

Please sign in to comment.