Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 779397 - dev-python/spyder-kernels-1.10.0 fails test pyder_kernels/console/tests/test_console_kernel.py::test_turtle_launch: assert False
Summary: dev-python/spyder-kernels-1.10.0 fails test pyder_kernels/console/tests/test_...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Andrew Ammerlaan
URL:
Whiteboard:
Keywords: TESTFAILURE
Depends on:
Blocks:
 
Reported: 2021-03-30 16:05 UTC by Thomas Deutschmann (RETIRED)
Modified: 2021-05-22 20:19 UTC (History)
3 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build.log (build.log,20.55 KB, text/plain)
2021-03-30 16:06 UTC, Thomas Deutschmann (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Thomas Deutschmann (RETIRED) gentoo-dev 2021-03-30 16:05:49 UTC
> ======================================================= FAILURES =======================================================
> __________________________________________________ test_turtle_launch __________________________________________________
> 
> tmpdir = local('/var/tmp/portage/dev-python/spyder-kernels-1.10.0/temp/pytest-of-portage/pytest-0/test_turtle_launch2')
> 
>     @flaky(max_runs=3)
>     @pytest.mark.skipif(not TKINTER_INSTALLED,
>                         reason="Doesn't work on Python installations without Tk")
>     def test_turtle_launch(tmpdir):
>         """Test turtle scripts running in the same kernel."""
>         # Command to start the kernel
>         cmd = "from spyder_kernels.console import start; start.main()"
>     
>         with setup_kernel(cmd) as client:
>             # Remove all variables
>             client.execute("%reset -f")
>             client.get_shell_msg(block=True, timeout=TIMEOUT)
>     
>             # Write turtle code to a file
>             code = """
>     import turtle
>     wn=turtle.Screen()
>     wn.bgcolor("lightgreen")
>     tess = turtle.Turtle() # Create tess and set some attributes
>     tess.color("hotpink")
>     tess.pensize(5)
>     
>     tess.forward(80) # Make tess draw equilateral triangle
>     tess.left(120)
>     tess.forward(80)
>     tess.left(120)
>     tess.forward(80)
>     tess.left(120) # Complete the triangle
>     
>     turtle.bye()
>     """
>             p = tmpdir.join("turtle-test.py")
>             p.write(code)
>     
>             # Run code
>             client.execute("runfile(r'{}')".format(to_text_string(p)))
>             client.get_shell_msg(block=True, timeout=TIMEOUT)
>     
>             # Verify that the `tess` variable is defined
>             client.inspect('tess')
>             msg = client.get_shell_msg(block=True, timeout=TIMEOUT)
>             content = msg['content']
> >           assert content['found']
> E           assert False
> 
> spyder_kernels/console/tests/test_console_kernel.py:650: AssertionError
> =================================================== warnings summary ===================================================
> ../../../../../../../usr/lib/python3.8/site-packages/ipyparallel/client/view.py:8
>   /usr/lib/python3.8/site-packages/ipyparallel/client/view.py:8: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
>     import imp
> 
> spyder_kernels/console/tests/test_console_kernel.py: 46 warnings
>   /usr/lib/python3.8/site-packages/ipykernel/ipkernel.py:283: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above.
>     and should_run_async(code)
> 
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
>   /usr/lib/python3.8/site-packages/scipy/io/matlab/mio5.py:809: DeprecationWarning: tostring() is deprecated. Use tobytes() instead.
>     self.file_stream.write(hdr.tostring())
> 
> spyder_kernels/utils/tests/test_iofuncs.py: 30 warnings
>   /usr/lib/python3.8/site-packages/scipy/io/matlab/mio5.py:480: DeprecationWarning: tostring() is deprecated. Use tobytes() instead.
>     self.file_stream.write(arr.tostring(order='F'))
> 
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
> spyder_kernels/utils/tests/test_iofuncs.py::test_matlabstruct
>   /usr/lib/python3.8/site-packages/scipy/io/matlab/mio5.py:503: DeprecationWarning: tostring() is deprecated. Use tobytes() instead.
>     tag['data'] = arr.tostring(order='F')
> 
> -- Docs: https://docs.pytest.org/en/stable/warnings.html
> ===Flaky Test Report===
> 
> test_cwd_in_sys_path failed (2 runs remaining out of 3).
> 	<class 'KeyError'>
> 	'user_expressions'
> 	[<TracebackEntry /var/tmp/portage/dev-python/spyder-kernels-1.10.0/work/spyder-kernels-1.10.0/spyder_kernels/console/tests/test_console_kernel.py:390>]
> test_cwd_in_sys_path passed 1 out of the required 1 times. Success!
> test_multiprocessing passed 1 out of the required 1 times. Success!
> test_runfile passed 1 out of the required 1 times. Success!
> test_np_threshold passed 1 out of the required 1 times. Success!
> test_turtle_launch failed (2 runs remaining out of 3).
> 	<class 'AssertionError'>
> 	assert False
> 	[<TracebackEntry /var/tmp/portage/dev-python/spyder-kernels-1.10.0/work/spyder-kernels-1.10.0/spyder_kernels/console/tests/test_console_kernel.py:650>]
> test_turtle_launch failed (1 runs remaining out of 3).
> 	<class 'AssertionError'>
> 	assert False
> 	[<TracebackEntry /var/tmp/portage/dev-python/spyder-kernels-1.10.0/work/spyder-kernels-1.10.0/spyder_kernels/console/tests/test_console_kernel.py:650>]
> test_turtle_launch failed; it passed 0 out of the required 1 times.
> 	<class 'AssertionError'>
> 	assert False
> 	[<TracebackEntry /var/tmp/portage/dev-python/spyder-kernels-1.10.0/work/spyder-kernels-1.10.0/spyder_kernels/console/tests/test_console_kernel.py:650>]
> test_matplotlib_inline passed 1 out of the required 1 times. Success!
> 
> ===End Flaky Test Report===
> =============================================== short test summary info ================================================
> SKIPPED [1] spyder_kernels/utils/tests/test_dochelpers.py:30: It fails in Python 3
> FAILED spyder_kernels/console/tests/test_console_kernel.py::test_turtle_launch - assert False
> ================================ 1 failed, 55 passed, 1 skipped, 86 warnings in 22.56s =================================
>  * ERROR: dev-python/spyder-kernels-1.10.0::gentoo failed (test phase):
>  *   pytest failed with python3.8
Comment 1 Thomas Deutschmann (RETIRED) gentoo-dev 2021-03-30 16:06:15 UTC
Portage 3.0.17 (python 3.8.8-final-0, default/linux/x86/17.0, gcc-10.2.0, glibc-2.32-r7, 5.4.97-gentoo-x86 i686)
=================================================================
System uname: Linux-5.4.97-gentoo-x86-i686-with-glibc2.1.3
KiB Mem:     3106076 total,    551376 free
KiB Swap:    8387560 total,   8386784 free
Timestamp of repository gentoo: Mon, 29 Mar 2021 17:35:51 +0000
Head commit of repository gentoo: d8eb92b30096b66eb2a2c9b615c427f56344bb75

sh bash 5.0_p18
ld GNU ld (Gentoo 2.35.1 p2) 2.35.1
ccache version 4.2 [enabled]
app-shells/bash:          5.0_p18::gentoo
dev-lang/perl:            5.30.3::gentoo
dev-lang/python:          3.8.8::gentoo, 3.9.2::gentoo
dev-util/ccache:          4.2::gentoo
dev-util/cmake:           3.18.5::gentoo
dev-util/pkgconfig:       0.29.2::gentoo
sys-apps/baselayout:      2.7::gentoo
sys-apps/openrc:          0.42.1-r1::gentoo
sys-apps/sandbox:         2.20::gentoo
sys-devel/autoconf:       2.13-r1::gentoo, 2.69-r5::gentoo
sys-devel/automake:       1.16.2-r1::gentoo
sys-devel/binutils:       2.35.1-r1::gentoo
sys-devel/gcc:            10.2.0-r5::gentoo
sys-devel/gcc-config:     2.3.3::gentoo
sys-devel/libtool:        2.4.6-r6::gentoo
sys-devel/make:           4.3::gentoo
sys-kernel/linux-headers: 5.10::gentoo (virtual/os-headers)
sys-libs/glibc:           2.32-r7::gentoo
Repositories:

gentoo
    location: /var/db/repos/gentoo
    sync-type: git
    sync-uri: https://anongit.gentoo.org/git/repo/sync/gentoo.git
    priority: -1000

ABI="x86"
ABI_X86="32"
ACCEPT_KEYWORDS="x86"
ACCEPT_LICENSE="*"
ACCEPT_PROPERTIES="*"
ACCEPT_RESTRICT="*"
ADA_TARGET="gnat_2018"
ARCH="x86"
BINPKG_COMPRESS="bzip2"
BROOT=""
CBUILD="i686-pc-linux-gnu"
CCACHE_DIR="/var/cache/ccache"
CFLAGS="-O2 -pipe -march=pentium4m -mtune=pentium4m -Wno-error=jump-misses-init -Wno-error=sign-compare"
CHOST="i686-pc-linux-gnu"
CHOST_x86="i686-pc-linux-gnu"
COLLISION_IGNORE="/lib/modules/*"
CONFIG_PROTECT="/etc /usr/share/gnupg/qualified.txt"
CPU_FLAGS_X86="mmx mmxext sse sse2"
CXXFLAGS="-O2 -pipe -march=pentium4m -mtune=pentium4m -Wno-error=jump-misses-init -Wno-error=sign-compare"
DEFAULT_ABI="x86"
EDITOR="/usr/bin/mcedit"
ELIBC="glibc"
ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR"
EPREFIX=""
EROOT="/"
ESYSROOT="/"
FCFLAGS="-O2 -march=i686 -pipe"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs binpkg-multi-instance buildpkg ccache cgroup config-protect-if-modified distlocks downgrade-backup ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-O2 -march=i686 -pipe"
GCC_SPECS=""
GRUB_PLATFORMS="efi-32 pc"
GSETTINGS_BACKEND="dconf"
HOME="/root"
INFOPATH="/usr/share/gcc-data/i686-pc-linux-gnu/10.2.0/info:/usr/share/binutils-data/i686-pc-linux-gnu/2.35.1/info:/usr/share/info"
INPUT_DEVICES="libinput"
IUSE_IMPLICIT="abi_x86_32 prefix prefix-guest prefix-stack"
KERNEL="linux"
L10N="en en-US de de-DE"
LANG="en_US.UTF-8"
LC_MESSAGES="C"
LC_PAPER="de_DE.UTF-8"
LC_TIME="en_GB.UTF-8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
LIBDIR_x86="lib"
LINGUAS="en de"
LOGNAME="root"
LUA_SINGLE_TARGET="lua5-1"
LUA_TARGETS="lua5-1"
MAIL="/var/mail/root"
MAKEOPTS="--jobs 5 --load-average 7.95"
MANPAGER="manpager"
MOTD_SHOWN="pam"
MULTILIB_ABIS="x86"
NOCOLOR="true"
OFFICE_IMPLEMENTATION="libreoffice"
OPENCL_PROFILE="ocl-icd"
OPENGL_PROFILE="xorg-x11"
PAGER="/usr/bin/less"
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/lib/llvm/11/bin"
PHP_TARGETS="php7-3 php7-4"
POSTGRES_TARGETS="postgres10 postgres11"
PRELINK_PATH_MASK="/usr/bin/evolution"
PWD="/root"
PYTHONDONTWRITEBYTECODE="1"
PYTHON_SINGLE_TARGET="python3_8"
PYTHON_TARGETS="python3_8"
QT_GRAPHICSSYSTEM="raster"
ROOT="/"
ROOTPATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/lib/llvm/11/bin"
RUBY_TARGETS="ruby25 ruby26"
SHELL="/bin/bash"
SHLVL="2"
SSH_TTY="/dev/pts/0"
SYSROOT="/"
TERM="tmux-256color"
TMUX="/tmp//tmux-0/default,3302,0"
TMUX_PANE="%2"
TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE="1"
USER="root"
USERLAND="GNU"
VIDEO_CARDS="vmware"
XDG_CONFIG_DIRS="/etc/xdg"
XDG_DATA_DIRS="/usr/local/share:/usr/share"
XDG_RUNTIME_DIR="/run/user/0"
XDG_SESSION_CLASS="user"
XDG_SESSION_ID="1"
XDG_SESSION_TYPE="tty"
Comment 2 Thomas Deutschmann (RETIRED) gentoo-dev 2021-03-30 16:06:45 UTC
Created attachment 696246 [details]
build.log
Comment 3 Andrew Ammerlaan gentoo-dev 2021-03-31 07:48:12 UTC
Looks like an incompatibility with a newer version of ipykernel or related package. The issue seems to be fixed in spyder-kernels-1.10.2.