Skip to content

Commit 22f0e70

Browse files
authored
Merge pull request #3420 from ccordoba12/skip-spykernel
Skip testing the Spyder kernel for IPython consoles
2 parents 87f98bd + edd840d commit 22f0e70

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Diff for: continuous_integration/appveyor/modules_test.bat

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ for /r "%SPYDER%" %%f in (*.py) do (
5858
:: It can't be tested outside of a Qtconsole
5959
echo --- NOT testing %%f ---
6060
echo.
61+
) else if "%%f"=="%SPYDER%\utils\ipython\spyder_kernel.py" (
62+
:: It can't be tested outside of a Qtconsole
63+
echo --- NOT testing %%f ---
64+
echo.
6165
) else if "%%f"=="%SPYDER%\utils\site\sitecustomize.py" (
6266
:: It can't be tested outside of a Python console
6367
echo --- NOT testing %%f ---

Diff for: continuous_integration/travis/modules_test.sh

+3
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ for f in spyder/*/*/*.py; do
7777
if [[ $f == spyder/utils/ipython/start_kernel.py ]]; then
7878
continue
7979
fi
80+
if [[ $f == spyder/utils/ipython/spyder_kernel.py ]]; then
81+
continue
82+
fi
8083
if [[ $f == spyder/utils/site/sitecustomize.py ]]; then
8184
continue
8285
fi

Diff for: spyder/widgets/ipythonconsole/shell.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class ShellWidget(NamepaceBrowserWidget, HelpWidget, DebuggingWidget):
3737
sig_namespace_view = Signal(object)
3838
sig_var_properties = Signal(object)
3939
sig_get_value = Signal()
40-
sig_got_reply = Signal()
4140

4241
# For DebuggingWidget
4342
sig_input_reply = Signal()
@@ -47,6 +46,7 @@ class ShellWidget(NamepaceBrowserWidget, HelpWidget, DebuggingWidget):
4746
# For ShellWidget
4847
focus_changed = Signal()
4948
new_client = Signal()
49+
sig_got_reply = Signal()
5050

5151
def __init__(self, additional_options, interpreter_versions, *args, **kw):
5252
# To override the Qt widget used by RichJupyterWidget

0 commit comments

Comments
 (0)