0s autopkgtest: DBG: testbed init 0s autopkgtest [12:44:53]: starting date and time: 2025-02-19 12:44:53+0000 0s autopkgtest [12:44:53]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:44:53]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.lunb4519/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade python-marshmallow --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-5.secgroup --name adt-plucky-s390x-python-marshmallow-20250219-124453-juju-7f2275-prod-proposed-migration-environment-15-99b6aabe-51c6-4fd1-9ac6-ea72e2a15ceb --image adt/ubuntu-plucky-s390x-server --keyname testbed-juju-7f2275-prod-proposed-migration-environment-15 --net-id=net_prod-proposed-migration-s390x -e TERM=linux -e ''"'"'http_proxy=http://squid.internal:3128'"'"'' -e ''"'"'https_proxy=http://squid.internal:3128'"'"'' -e ''"'"'no_proxy=127.0.0.1,127.0.1.1,login.ubuntu.com,localhost,localdomain,novalocal,internal,archive.ubuntu.com,ports.ubuntu.com,security.ubuntu.com,ddebs.ubuntu.com,changelogs.ubuntu.com,keyserver.ubuntu.com,launchpadlibrarian.net,launchpadcontent.net,launchpad.net,10.24.0.0/24,keystone.ps5.canonical.com,objectstorage.prodstack5.canonical.com,radosgw.ps5.canonical.com'"'"'' --mirror=http://ftpmaster.internal/ubuntu/ 0s autopkgtest: DBG: got reply from testbed: ok 0s autopkgtest: DBG: testbed open, scratch=None 0s autopkgtest: DBG: sending command to testbed: open 122s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.dn4ovj 122s autopkgtest: DBG: sending command to testbed: print-execute-command 122s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.sxm0p3zk/runcmd 122s autopkgtest: DBG: sending command to testbed: capabilities 122s autopkgtest: DBG: got reply from testbed: ok isolation-machine revert revert-full-system reboot suggested-normal-user=ubuntu root-on-testbed 122s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'revert', 'revert-full-system', 'reboot', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 122s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.dn4ovj/wrapper.sh 123s autopkgtest: DBG: got reply from testbed: ok 123s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/wrapper.sh'], kind short, sout raw, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest [12:46:56]: testbed dpkg architecture: s390x 123s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 123s autopkgtest: DBG: testbed command exited with code 0 123s autopkgtest [12:46:56]: testbed apt version: 2.9.30 123s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed has eatmydata 124s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [12:46:57]: @@@@@@@@@@@@@@@@@@@@ test bed setup 124s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest [12:46:57]: testbed release detected to be: None 124s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: adding APT source: Types: deb deb-src 124s URIs: http://ftpmaster.internal/ubuntu/ 124s Suites: plucky-proposed 124s Components: main restricted universe multiverse 124s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 124s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 124s autopkgtest: DBG: testbed command exited with code 0 124s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 124s Package: * 124s Pin: release plucky-proposed 124s Pin-Priority: 500 124s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 125s autopkgtest: DBG: testbed command exited with code 0 125s autopkgtest [12:46:58]: updating testbed package index (apt update) 125s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 125s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 125s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 125s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 125s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 125s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 125s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 125s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 125s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 125s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 125s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 125s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 125s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 126s Fetched 1700 kB in 1s (1943 kB/s) 126s Reading package lists... 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 126s Package: * 126s Pin: release plucky-proposed 126s Pin-Priority: 100 126s 126s Package: src:sphinx:any 126s Pin: release plucky-proposed 126s Pin-Priority: 995 126s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 126s autopkgtest: DBG: testbed command exited with code 0 126s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.dn4ovj/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 127s autopkgtest: DBG: testbed command exited with code 0 127s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 127s + lsb_release --codename --short 127s Reading package lists...+ RELEASE=plucky 127s + cat 127s + [ plucky != trusty ] 127s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 127s 127s Building dependency tree... 127s Reading state information... 127s Calculating upgrade... 127s The following packages were automatically installed and are no longer required: 127s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 127s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 127s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 127s linux-tools-6.11.0-8-generic 127s Use 'sudo apt autoremove' to remove them. 127s The following packages will be upgraded: 127s iproute2 liblsof0 libp11-kit0 lsof 128s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 128s Need to get 1791 kB of archives. 128s After this operation, 17.4 kB of additional disk space will be used. 128s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 128s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 128s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 128s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 128s Preconfiguring packages ... 128s Fetched 1791 kB in 1s (1896 kB/s) 128s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 128s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 129s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 129s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 129s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 129s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 129s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 129s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 129s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 129s Setting up liblsof0 (4.99.4+dfsg-1) ... 129s Setting up iproute2 (6.13.0-1ubuntu1) ... 129s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 129s Setting up lsof (4.99.4+dfsg-1) ... 129s Processing triggers for man-db (2.13.0-1) ... 129s Processing triggers for libc-bin (2.40-4ubuntu1) ... 129s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 129s + /usr/lib/apt/apt-helper analyze-pattern ?true 129s + uname -r 129s + sed s/\./\\./g 129s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 129s + apt list ?obsolete 129s + tail -n+2 130s + cut -d/ -f1 130s + grep -v ^linux-.*6\.12\.0-15-generic.* 130s + true 130s + obsolete_pkgs= 130s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 130s Reading package lists... 130s Building dependency tree... 130s Reading state information... 130s The following packages will be REMOVED: 130s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 130s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 130s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 130s linux-tools-6.11.0-8-generic* 130s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 130s After this operation, 167 MB disk space will be freed. 130s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 130s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 130s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 130s Removing libpython3.12t64:s390x (3.12.9-1) ... 130s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 130s Removing libnsl2:s390x (1.3.0-3build3) ... 130s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 130s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 130s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 131s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 131s Processing triggers for libc-bin (2.40-4ubuntu1) ... 131s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 131s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 131s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 131s + grep -q trusty /etc/lsb-release 131s + [ ! -d /usr/share/doc/unattended-upgrades ] 131s + [ ! -d /usr/share/doc/lxd ] 131s + [ ! -d /usr/share/doc/lxd-client ] 131s + [ ! -d /usr/share/doc/snapd ] 131s + type iptables 131s + cat 131s + chmod 755 /etc/rc.local 131s + . /etc/rc.local 131s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 131s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 131s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 131s + uname -m 131s + [ s390x = ppc64le ] 131s + [ -d /run/systemd/system ] 131s + systemd-detect-virt --quiet --vm 131s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 131s + cat 131s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 131s + echo COMPRESS=lz4 131s autopkgtest: DBG: testbed command exited with code 0 131s autopkgtest [12:47:04]: upgrading testbed (apt dist-upgrade and autopurge) 131s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 131s Reading package lists... 132s Building dependency tree... 132s Reading state information... 132s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 132s Starting 2 pkgProblemResolver with broken count: 0 132s Done 132s Entering ResolveByKeep 132s 132s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 132s autopkgtest: DBG: testbed command exited with code 0 132s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 132s Reading package lists... 132s Building dependency tree... 132s Reading state information... 133s Starting pkgProblemResolver with broken count: 0 133s Starting 2 pkgProblemResolver with broken count: 0 133s Done 133s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 133s autopkgtest: DBG: testbed command exited with code 0 133s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.dn4ovj/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 133s autopkgtest: DBG: testbed command exited with code 1 133s autopkgtest [12:47:06]: rebooting testbed after setup commands that affected boot 133s autopkgtest: DBG: sending command to testbed: reboot 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot 151s autopkgtest: DBG: got reply from testbed: ok 151s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 151s autopkgtest: DBG: testbed command exited with code 0 151s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare 152s autopkgtest: DBG: got reply from testbed: ok 152s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest [12:47:25]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 152s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dn4ovj/testbed-packages"], kind short, sout raw, serr pipe, env [] 152s autopkgtest: DBG: testbed command exited with code 0 152s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/testbed-packages /tmp/autopkgtest-work.lunb4519/out/testbed-packages 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 153s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot 153s autopkgtest: DBG: got reply from testbed: ok 153s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 153s autopkgtest: DBG: testbed command exited with code 0 153s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: Binaries: initialising 154s autopkgtest [12:47:27]: @@@@@@@@@@@@@@@@@@@@ apt-source python-marshmallow 154s autopkgtest: DBG: blame += python-marshmallow 154s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 154s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-marshmallow'], kind short, sout pipe, serr pipe, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-marshmallow$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-marshmallow=3.20.1-1.1'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-marshmallow-doc$'], kind short, sout pipe, serr raw, env [] 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-marshmallow-doc=3.20.1-1.1'], kind short, sout pipe, serr raw, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: install_deps: deps_new=[] 156s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.dn4ovj/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-marshmallow=3.20.1-1.1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x python-marshmallow_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=sphinx/8.1.3-5'] 156s + cd / 156s + mktemp -d /tmp/autopkgtest.dn4ovj/build.XXX 156s + builddir=/tmp/autopkgtest.dn4ovj/build.H1r 156s + cd /tmp/autopkgtest.dn4ovj/build.H1r 156s + apt-get source -d -q --only-source python-marshmallow=3.20.1-1.1 156s + OUT=Reading package lists... 156s NOTICE: 'python-marshmallow' packaging is maintained in the 'Git' version control system at: 156s https://salsa.debian.org/debian/python-marshmallow.git 156s Please use: 156s git clone https://salsa.debian.org/debian/python-marshmallow.git 156s to retrieve the latest (possibly unreleased) updates to the package. 156s Need to get 189 kB of source archives. 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (dsc) [2284 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (tar) [183 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (diff) [3624 B] 156s Fetched 189 kB in 0s (431 kB/s) 156s Download complete and in download only mode 156s + [ -n ] 156s + echo Reading package lists... 156s NOTICE: 'python-marshmallow' packaging is maintained in the 'Git' version control system at: 156s https://salsa.debian.org/debian/python-marshmallow.git 156s Please use: 156s git clone https://salsa.debian.org/debian/python-marshmallow.git 156s to retrieve the latest (possibly unreleased) updates to the package. 156s Need to get 189 kB of source archives. 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (dsc) [2284 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (tar) [183 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (diff) [3624 B] 156s Fetched 189 kB in 0s (431 kB/s) 156s Download complete and in download only mode 156s + grep ^Get: 156s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (dsc) [2284 B] 156s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (tar) [183 kB] 156s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-marshmallow 3.20.1-1.1 (diff) [3624 B] 156s + dpkg-source -x python-marshmallow_3.20.1-1.1.dsc src 156s gpgv: Signature made Wed Oct 25 12:04:10 2023 UTC 156s gpgv: using RSA key A0B1A9F3508956130E7A425CD416AD15AC6B43FE 156s gpgv: Can't check signature: No public key 156s dpkg-source: warning: cannot verify inline signature for ./python-marshmallow_3.20.1-1.1.dsc: no acceptable signature found 156s + chmod -R a+rX . 156s + cd src/. 156s + pwd 156s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest [12:47:30]: testing package python-marshmallow version 3.20.1-1.1 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/build.H1r/src/debian/ /tmp/autopkgtest-work.lunb4519/out/pkg/debian/ 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: autodep8 generated control: ----- 157s Tests: unittests 157s Depends: 157s @builddeps@, 157s Restrictions: allow-stderr needs-root 157s 157s 157s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import marshmallow; print(marshmallow)" ; done 157s Depends: python3-all, python3-marshmallow, 157s Restrictions: allow-stderr, superficial, 157s Features: test-name=autodep8-python3 157s 157s 157s ------- 157s autopkgtest: DBG: processing dependency @builddeps@ 157s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 157s autopkgtest: DBG: synthesised dependency dh-python 157s autopkgtest: DBG: synthesised dependency python3-all 157s autopkgtest: DBG: synthesised dependency python3-dateutil 157s autopkgtest: DBG: synthesised dependency python3-pytest 157s autopkgtest: DBG: synthesised dependency python3-setuptools 157s autopkgtest: DBG: synthesised dependency python3-simplejson 157s autopkgtest: DBG: synthesised dependency python3-sphinx 157s autopkgtest: DBG: synthesised dependency python3-tz 157s autopkgtest: DBG: synthesised dependency tzdata-legacy 157s autopkgtest: DBG: synthesised dependency build-essential 157s autopkgtest: DBG: Test defined: name unittests path debian/tests/unittests command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['debhelper-compat (= 13)', 'dh-python', 'python3-all', 'python3-dateutil', 'python3-pytest', 'python3-setuptools', 'python3-simplejson', 'python3-sphinx', 'python3-tz', 'tzdata-legacy', 'build-essential'] 157s autopkgtest: DBG: processing dependency python3-all 157s autopkgtest: DBG: processing dependency python3-marshmallow 157s autopkgtest: DBG: marked alternatives ['python3-marshmallow'] as a synthesised dependency 157s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import marshmallow; print(marshmallow)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-marshmallow'] 157s autopkgtest [12:47:30]: build not needed 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/build.H1r/src/ /tmp/autopkgtest-work.lunb4519/out/tests-tree/ 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: autodep8 generated control: ----- 157s Tests: unittests 157s Depends: 157s @builddeps@, 157s Restrictions: allow-stderr needs-root 157s 157s 157s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import marshmallow; print(marshmallow)" ; done 157s Depends: python3-all, python3-marshmallow, 157s Restrictions: allow-stderr, superficial, 157s Features: test-name=autodep8-python3 157s 157s 157s ------- 157s autopkgtest: DBG: processing dependency @builddeps@ 157s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 157s autopkgtest: DBG: synthesised dependency dh-python 157s autopkgtest: DBG: synthesised dependency python3-all 157s autopkgtest: DBG: synthesised dependency python3-dateutil 157s autopkgtest: DBG: synthesised dependency python3-pytest 157s autopkgtest: DBG: synthesised dependency python3-setuptools 157s autopkgtest: DBG: synthesised dependency python3-simplejson 157s autopkgtest: DBG: synthesised dependency python3-sphinx 157s autopkgtest: DBG: synthesised dependency python3-tz 157s autopkgtest: DBG: synthesised dependency tzdata-legacy 157s autopkgtest: DBG: synthesised dependency build-essential 157s autopkgtest: DBG: Test defined: name unittests path debian/tests/unittests command "None" restrictions ['allow-stderr', 'needs-root'] features [] depends ['debhelper-compat (= 13)', 'dh-python', 'python3-all', 'python3-dateutil', 'python3-pytest', 'python3-setuptools', 'python3-simplejson', 'python3-sphinx', 'python3-tz', 'tzdata-legacy', 'build-essential'] 157s autopkgtest: DBG: processing dependency python3-all 157s autopkgtest: DBG: processing dependency python3-marshmallow 157s autopkgtest: DBG: marked alternatives ['python3-marshmallow'] as a synthesised dependency 157s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import marshmallow; print(marshmallow)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-marshmallow'] 157s autopkgtest [12:47:30]: test unittests: preparing testbed 157s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['debhelper-compat (= 13)', 'dh-python', 'python3-all', 'python3-dateutil', 'python3-pytest', 'python3-setuptools', 'python3-simplejson', 'python3-sphinx', 'python3-tz', 'tzdata-legacy', 'build-essential'] 157s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 157s autopkgtest: DBG: install_deps: deps_new=['debhelper-compat (= 13)', 'dh-python', 'python3-all', 'python3-dateutil', 'python3-pytest', 'python3-setuptools', 'python3-simplejson', 'python3-sphinx', 'python3-tz', 'tzdata-legacy', 'build-essential'] 157s autopkgtest: DBG: install-deps: satisfying debhelper-compat (= 13), dh-python, python3-all, python3-dateutil, python3-pytest, python3-setuptools, python3-simplejson, python3-sphinx, python3-tz, tzdata-legacy, build-essential 157s autopkgtest: DBG: can use apt-get on testbed: True 157s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'debhelper-compat (= 13), dh-python, python3-all, python3-dateutil, python3-pytest, python3-setuptools, python3-simplejson, python3-sphinx, python3-tz, tzdata-legacy, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 158s Reading package lists... 158s Building dependency tree... 158s Reading state information... 158s Starting pkgProblemResolver with broken count: 0 158s Starting 2 pkgProblemResolver with broken count: 0 158s Done 158s The following NEW packages will be installed: 158s autoconf automake autopoint autotools-dev build-essential cpp cpp-14 158s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 158s dh-python dh-strip-nondeterminism docutils-common dwz g++ g++-14 158s g++-14-s390x-linux-gnu g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu 158s gcc-s390x-linux-gnu gettext intltool-debian libarchive-zip-perl libasan8 158s libcc1-0 libdebhelper-perl libfile-stripnondeterminism-perl libgcc-14-dev 158s libgomp1 libisl23 libitm1 libjs-jquery libjs-sphinxdoc libjs-underscore 158s libjson-perl libmpc3 libnsl2 libpython3.12-minimal libpython3.12-stdlib 158s libstdc++-14-dev libtool libubsan1 m4 po-debconf python3-alabaster 158s python3-all python3-dateutil python3-defusedxml python3-docutils 158s python3-imagesize python3-iniconfig python3-packaging python3-pluggy 158s python3-pytest python3-pytz python3-roman python3-simplejson 158s python3-snowballstemmer python3-sphinx python3-tz python3.12 158s python3.12-minimal sgml-base sphinx-common tzdata-legacy xml-core 158s 0 upgraded, 70 newly installed, 0 to remove and 0 not upgraded. 158s Need to get 62.7 MB of archives. 158s After this operation, 209 MB of additional disk space will be used. 158s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 159s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 159s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 159s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 159s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 159s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 159s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 159s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 159s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 159s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 159s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 159s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 159s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 159s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 159s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 159s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 159s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 159s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 159s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 159s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 159s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 159s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 159s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 160s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 160s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 160s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 160s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 160s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 160s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 160s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 160s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 160s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 160s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 160s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 160s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 160s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 160s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 160s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 160s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 160s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 160s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 160s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 160s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 160s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 160s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 160s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 160s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 160s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 160s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 160s Get:51 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 160s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 160s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 160s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 160s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 160s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 160s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 160s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 161s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 161s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 161s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 161s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 161s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 161s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x python3-simplejson s390x 3.19.3-1build1 [55.6 kB] 161s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 161s Get:66 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 161s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 161s Get:68 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 161s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 161s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x tzdata-legacy all 2025a-2ubuntu1 [99.2 kB] 161s Fetched 62.7 MB in 3s (23.8 MB/s) 161s Selecting previously unselected package libpython3.12-minimal:s390x. 161s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 161s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 161s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 161s Selecting previously unselected package python3.12-minimal. 161s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 161s Unpacking python3.12-minimal (3.12.9-1) ... 161s Selecting previously unselected package sgml-base. 161s Preparing to unpack .../02-sgml-base_1.31_all.deb ... 161s Unpacking sgml-base (1.31) ... 161s Selecting previously unselected package libnsl2:s390x. 161s Preparing to unpack .../03-libnsl2_1.3.0-3build3_s390x.deb ... 161s Unpacking libnsl2:s390x (1.3.0-3build3) ... 161s Selecting previously unselected package libpython3.12-stdlib:s390x. 161s Preparing to unpack .../04-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 161s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 161s Selecting previously unselected package python3.12. 161s Preparing to unpack .../05-python3.12_3.12.9-1_s390x.deb ... 161s Unpacking python3.12 (3.12.9-1) ... 161s Selecting previously unselected package m4. 161s Preparing to unpack .../06-m4_1.4.19-5_s390x.deb ... 161s Unpacking m4 (1.4.19-5) ... 161s Selecting previously unselected package autoconf. 161s Preparing to unpack .../07-autoconf_2.72-3_all.deb ... 161s Unpacking autoconf (2.72-3) ... 161s Selecting previously unselected package autotools-dev. 161s Preparing to unpack .../08-autotools-dev_20220109.1_all.deb ... 161s Unpacking autotools-dev (20220109.1) ... 161s Selecting previously unselected package automake. 161s Preparing to unpack .../09-automake_1%3a1.17-3_all.deb ... 161s Unpacking automake (1:1.17-3) ... 161s Selecting previously unselected package autopoint. 161s Preparing to unpack .../10-autopoint_0.23.1-1_all.deb ... 161s Unpacking autopoint (0.23.1-1) ... 161s Selecting previously unselected package libisl23:s390x. 161s Preparing to unpack .../11-libisl23_0.27-1_s390x.deb ... 161s Unpacking libisl23:s390x (0.27-1) ... 161s Selecting previously unselected package libmpc3:s390x. 161s Preparing to unpack .../12-libmpc3_1.3.1-1build2_s390x.deb ... 161s Unpacking libmpc3:s390x (1.3.1-1build2) ... 161s Selecting previously unselected package cpp-14-s390x-linux-gnu. 161s Preparing to unpack .../13-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 161s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package cpp-14. 162s Preparing to unpack .../14-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package cpp-s390x-linux-gnu. 162s Preparing to unpack .../15-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package cpp. 162s Preparing to unpack .../16-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking cpp (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package libcc1-0:s390x. 162s Preparing to unpack .../17-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libgomp1:s390x. 162s Preparing to unpack .../18-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libitm1:s390x. 162s Preparing to unpack .../19-libitm1_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libasan8:s390x. 162s Preparing to unpack .../20-libasan8_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libubsan1:s390x. 162s Preparing to unpack .../21-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 162s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 162s Selecting previously unselected package libgcc-14-dev:s390x. 162s Preparing to unpack .../22-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package gcc-14-s390x-linux-gnu. 162s Preparing to unpack .../23-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package gcc-14. 162s Preparing to unpack .../24-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package gcc-s390x-linux-gnu. 162s Preparing to unpack .../25-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package gcc. 162s Preparing to unpack .../26-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking gcc (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package libstdc++-14-dev:s390x. 162s Preparing to unpack .../27-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package g++-14-s390x-linux-gnu. 162s Preparing to unpack .../28-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package g++-14. 162s Preparing to unpack .../29-g++-14_14.2.0-17ubuntu1_s390x.deb ... 162s Unpacking g++-14 (14.2.0-17ubuntu1) ... 162s Selecting previously unselected package g++-s390x-linux-gnu. 162s Preparing to unpack .../30-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package g++. 162s Preparing to unpack .../31-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 162s Unpacking g++ (4:14.2.0-1ubuntu1) ... 162s Selecting previously unselected package build-essential. 162s Preparing to unpack .../32-build-essential_12.10ubuntu1_s390x.deb ... 162s Unpacking build-essential (12.10ubuntu1) ... 162s Selecting previously unselected package libdebhelper-perl. 162s Preparing to unpack .../33-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 162s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 162s Selecting previously unselected package libtool. 162s Preparing to unpack .../34-libtool_2.5.4-3build1_all.deb ... 162s Unpacking libtool (2.5.4-3build1) ... 162s Selecting previously unselected package dh-autoreconf. 162s Preparing to unpack .../35-dh-autoreconf_20_all.deb ... 162s Unpacking dh-autoreconf (20) ... 162s Selecting previously unselected package libarchive-zip-perl. 162s Preparing to unpack .../36-libarchive-zip-perl_1.68-1_all.deb ... 162s Unpacking libarchive-zip-perl (1.68-1) ... 162s Selecting previously unselected package libfile-stripnondeterminism-perl. 162s Preparing to unpack .../37-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 162s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 162s Selecting previously unselected package dh-strip-nondeterminism. 162s Preparing to unpack .../38-dh-strip-nondeterminism_1.14.1-2_all.deb ... 162s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 162s Selecting previously unselected package debugedit. 162s Preparing to unpack .../39-debugedit_1%3a5.1-2_s390x.deb ... 162s Unpacking debugedit (1:5.1-2) ... 162s Selecting previously unselected package dwz. 162s Preparing to unpack .../40-dwz_0.15-1build6_s390x.deb ... 162s Unpacking dwz (0.15-1build6) ... 162s Selecting previously unselected package gettext. 162s Preparing to unpack .../41-gettext_0.23.1-1_s390x.deb ... 162s Unpacking gettext (0.23.1-1) ... 162s Selecting previously unselected package intltool-debian. 162s Preparing to unpack .../42-intltool-debian_0.35.0+20060710.6_all.deb ... 162s Unpacking intltool-debian (0.35.0+20060710.6) ... 162s Selecting previously unselected package po-debconf. 162s Preparing to unpack .../43-po-debconf_1.0.21+nmu1_all.deb ... 162s Unpacking po-debconf (1.0.21+nmu1) ... 163s Selecting previously unselected package debhelper. 163s Preparing to unpack .../44-debhelper_13.24.1ubuntu2_all.deb ... 163s Unpacking debhelper (13.24.1ubuntu2) ... 163s Selecting previously unselected package dh-python. 163s Preparing to unpack .../45-dh-python_6.20250108_all.deb ... 163s Unpacking dh-python (6.20250108) ... 163s Selecting previously unselected package xml-core. 163s Preparing to unpack .../46-xml-core_0.19_all.deb ... 163s Unpacking xml-core (0.19) ... 163s Selecting previously unselected package docutils-common. 163s Preparing to unpack .../47-docutils-common_0.21.2+dfsg-2_all.deb ... 163s Unpacking docutils-common (0.21.2+dfsg-2) ... 163s Selecting previously unselected package libjs-jquery. 163s Preparing to unpack .../48-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 163s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 163s Selecting previously unselected package libjs-underscore. 163s Preparing to unpack .../49-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 163s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 163s Selecting previously unselected package libjs-sphinxdoc. 163s Preparing to unpack .../50-libjs-sphinxdoc_8.1.3-5_all.deb ... 163s Unpacking libjs-sphinxdoc (8.1.3-5) ... 163s Selecting previously unselected package libjson-perl. 163s Preparing to unpack .../51-libjson-perl_4.10000-1_all.deb ... 163s Unpacking libjson-perl (4.10000-1) ... 163s Selecting previously unselected package python3-all. 163s Preparing to unpack .../52-python3-all_3.13.1-1~exp2_s390x.deb ... 163s Unpacking python3-all (3.13.1-1~exp2) ... 163s Selecting previously unselected package python3-dateutil. 163s Preparing to unpack .../53-python3-dateutil_2.9.0-3_all.deb ... 163s Unpacking python3-dateutil (2.9.0-3) ... 163s Selecting previously unselected package python3-defusedxml. 163s Preparing to unpack .../54-python3-defusedxml_0.7.1-3_all.deb ... 163s Unpacking python3-defusedxml (0.7.1-3) ... 163s Selecting previously unselected package python3-roman. 163s Preparing to unpack .../55-python3-roman_5.0-1_all.deb ... 163s Unpacking python3-roman (5.0-1) ... 163s Selecting previously unselected package python3-docutils. 163s Preparing to unpack .../56-python3-docutils_0.21.2+dfsg-2_all.deb ... 163s Unpacking python3-docutils (0.21.2+dfsg-2) ... 163s Selecting previously unselected package python3-imagesize. 163s Preparing to unpack .../57-python3-imagesize_1.4.1-1_all.deb ... 163s Unpacking python3-imagesize (1.4.1-1) ... 163s Selecting previously unselected package python3-iniconfig. 163s Preparing to unpack .../58-python3-iniconfig_1.1.1-2_all.deb ... 163s Unpacking python3-iniconfig (1.1.1-2) ... 163s Selecting previously unselected package python3-packaging. 163s Preparing to unpack .../59-python3-packaging_24.2-1_all.deb ... 163s Unpacking python3-packaging (24.2-1) ... 163s Selecting previously unselected package python3-pluggy. 163s Preparing to unpack .../60-python3-pluggy_1.5.0-1_all.deb ... 163s Unpacking python3-pluggy (1.5.0-1) ... 163s Selecting previously unselected package python3-pytest. 163s Preparing to unpack .../61-python3-pytest_8.3.4-1_all.deb ... 163s Unpacking python3-pytest (8.3.4-1) ... 163s Selecting previously unselected package python3-pytz. 163s Preparing to unpack .../62-python3-pytz_2025.1-3_all.deb ... 163s Unpacking python3-pytz (2025.1-3) ... 163s Selecting previously unselected package python3-simplejson. 163s Preparing to unpack .../63-python3-simplejson_3.19.3-1build1_s390x.deb ... 163s Unpacking python3-simplejson (3.19.3-1build1) ... 163s Selecting previously unselected package python3-snowballstemmer. 163s Preparing to unpack .../64-python3-snowballstemmer_2.2.0-4build1_all.deb ... 163s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 163s Selecting previously unselected package sphinx-common. 163s Preparing to unpack .../65-sphinx-common_8.1.3-5_all.deb ... 163s Unpacking sphinx-common (8.1.3-5) ... 163s Selecting previously unselected package python3-alabaster. 163s Preparing to unpack .../66-python3-alabaster_0.7.16-0.1_all.deb ... 163s Unpacking python3-alabaster (0.7.16-0.1) ... 163s Selecting previously unselected package python3-sphinx. 163s Preparing to unpack .../67-python3-sphinx_8.1.3-5_all.deb ... 163s Unpacking python3-sphinx (8.1.3-5) ... 163s Selecting previously unselected package python3-tz. 163s Preparing to unpack .../68-python3-tz_2025.1-3_all.deb ... 163s Unpacking python3-tz (2025.1-3) ... 163s Selecting previously unselected package tzdata-legacy. 163s Preparing to unpack .../69-tzdata-legacy_2025a-2ubuntu1_all.deb ... 163s Unpacking tzdata-legacy (2025a-2ubuntu1) ... 163s Setting up dh-python (6.20250108) ... 163s Setting up python3-iniconfig (1.1.1-2) ... 163s Setting up python3-defusedxml (0.7.1-3) ... 163s Setting up libarchive-zip-perl (1.68-1) ... 163s Setting up python3-alabaster (0.7.16-0.1) ... 164s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 164s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 164s Setting up m4 (1.4.19-5) ... 164s Setting up python3-pytz (2025.1-3) ... 164s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 164s Setting up tzdata-legacy (2025a-2ubuntu1) ... 164s Setting up python3-tz (2025.1-3) ... 164s Setting up python3-simplejson (3.19.3-1build1) ... 164s Setting up python3-roman (5.0-1) ... 164s Setting up autotools-dev (20220109.1) ... 164s Setting up python3-packaging (24.2-1) ... 164s Setting up python3-snowballstemmer (2.2.0-4build1) ... 165s Setting up libmpc3:s390x (1.3.1-1build2) ... 165s Setting up autopoint (0.23.1-1) ... 165s Setting up autoconf (2.72-3) ... 165s Setting up python3-pluggy (1.5.0-1) ... 165s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 165s Setting up dwz (0.15-1build6) ... 165s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 165s Setting up libjson-perl (4.10000-1) ... 165s Setting up libnsl2:s390x (1.3.0-3build3) ... 165s Setting up debugedit (1:5.1-2) ... 165s Setting up python3-dateutil (2.9.0-3) ... 165s Setting up sgml-base (1.31) ... 165s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 165s Setting up libisl23:s390x (0.27-1) ... 165s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 165s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 165s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 165s Setting up python3-imagesize (1.4.1-1) ... 165s Setting up automake (1:1.17-3) ... 165s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 165s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 165s Setting up python3.12-minimal (3.12.9-1) ... 166s Setting up gettext (0.23.1-1) ... 166s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 166s Setting up python3-pytest (8.3.4-1) ... 166s Setting up python3.12 (3.12.9-1) ... 167s Setting up python3-all (3.13.1-1~exp2) ... 167s Setting up intltool-debian (0.35.0+20060710.6) ... 167s Setting up libjs-sphinxdoc (8.1.3-5) ... 167s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up cpp-14 (14.2.0-17ubuntu1) ... 167s Setting up dh-strip-nondeterminism (1.14.1-2) ... 167s Setting up xml-core (0.19) ... 167s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 167s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 167s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up po-debconf (1.0.21+nmu1) ... 167s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up sphinx-common (8.1.3-5) ... 167s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 167s Setting up cpp (4:14.2.0-1ubuntu1) ... 167s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 167s Setting up gcc-14 (14.2.0-17ubuntu1) ... 167s Setting up g++-14 (14.2.0-17ubuntu1) ... 167s Setting up libtool (2.5.4-3build1) ... 167s Setting up gcc (4:14.2.0-1ubuntu1) ... 167s Setting up dh-autoreconf (20) ... 167s Setting up g++ (4:14.2.0-1ubuntu1) ... 167s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 167s Setting up build-essential (12.10ubuntu1) ... 167s Setting up debhelper (13.24.1ubuntu2) ... 167s Processing triggers for install-info (7.1.1-1) ... 167s Processing triggers for libc-bin (2.40-4ubuntu1) ... 167s Processing triggers for systemd (257.2-3ubuntu1) ... 168s Processing triggers for man-db (2.13.0-1) ... 169s Processing triggers for sgml-base (1.31) ... 169s Setting up docutils-common (0.21.2+dfsg-2) ... 169s Processing triggers for sgml-base (1.31) ... 169s Setting up python3-docutils (0.21.2+dfsg-2) ... 169s Setting up python3-sphinx (8.1.3-5) ... 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dn4ovj/unittests-packages.all"], kind short, sout raw, serr pipe, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/unittests-packages.all /tmp/autopkgtest-work.lunb4519/out/unittests-packages.all 171s autopkgtest: DBG: got reply from testbed: ok 171s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.dn4ovj/build.H1r/src'], kind short, sout raw, serr raw, env [] 171s autopkgtest: DBG: testbed command exited with code 0 171s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.dn4ovj/build.H1r/src already exists 171s autopkgtest [12:47:44]: test unittests: [----------------------- 171s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'root', '-c', 'set -e; exec /tmp/autopkgtest.dn4ovj/wrapper.sh --debug --artifacts=/tmp/autopkgtest.dn4ovj/unittests-artifacts --chdir=/tmp/autopkgtest.dn4ovj/build.H1r/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.dn4ovj/unittests-stderr --stdout=/tmp/autopkgtest.dn4ovj/unittests-stdout --tmp=/tmp/autopkgtest.dn4ovj/autopkgtest_tmp --env=AUTOPKGTEST_NORMAL_USER=ubuntu --env=ADT_NORMAL_USER=ubuntu --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.dn4ovj/build.H1r/src/debian/tests/unittests -- /tmp/autopkgtest.dn4ovj/build.H1r/src/debian/tests/unittests'], kind test, sout raw, serr raw, env [] 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.dn4ovj/unittests-artifacts 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: changing to directory: /tmp/autopkgtest.dn4ovj/build.H1r/src 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: LANG=C.UTF-8 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LANGUAGE 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_ADDRESS 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_ALL 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_COLLATE 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_CTYPE 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_IDENTIFICATION 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_MEASUREMENT 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_MESSAGES 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_MONETARY 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_NAME 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_NUMERIC 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_PAPER 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_TELEPHONE 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_TIME 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: pretending to be a login shell 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: will write standard error to /tmp/autopkgtest.dn4ovj/unittests-stderr 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: will write stdout to /tmp/autopkgtest.dn4ovj/unittests-stdout 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.dn4ovj/autopkgtest_tmp 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: AUTOPKGTEST_NORMAL_USER=ubuntu 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: ADT_NORMAL_USER=ubuntu 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: marking as executable: /tmp/autopkgtest.dn4ovj/build.H1r/src/debian/tests/unittests 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: command to run: /tmp/autopkgtest.dn4ovj/build.H1r/src/debian/tests/unittests 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: copying /tmp/tmp.MdG1gCidEK/out to stdout and file: /tmp/autopkgtest.dn4ovj/unittests-stdout 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: copying /tmp/tmp.MdG1gCidEK/err to standard error and file: /tmp/autopkgtest.dn4ovj/unittests-stdout 171s /tmp/autopkgtest.dn4ovj/wrapper.sh: writing script pid 2286 to /tmp/autopkgtest_script_pid 171s + pwd 171s + PYTHONPATH=/tmp/autopkgtest.dn4ovj/build.H1r/src/src python3 -m pytest tests -v 172s ============================= test session starts ============================== 172s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3 172s cachedir: .pytest_cache 172s rootdir: /tmp/autopkgtest.dn4ovj/build.H1r/src 172s configfile: setup.cfg 172s plugins: typeguard-4.4.1 173s collecting ... collected 1218 items 173s 173s tests/test_decorators.py::test_decorated_processors[True] PASSED [ 0%] 173s tests/test_decorators.py::test_decorated_processors[False] PASSED [ 0%] 173s tests/test_decorators.py::test_decorated_processor_returning_none[exclude] PASSED [ 0%] 173s tests/test_decorators.py::test_decorated_processor_returning_none[include] PASSED [ 0%] 173s tests/test_decorators.py::test_decorated_processor_returning_none[raise] PASSED [ 0%] 173s tests/test_decorators.py::TestPassOriginal::test_pass_original_single PASSED [ 0%] 173s tests/test_decorators.py::TestPassOriginal::test_pass_original_many PASSED [ 0%] 173s tests/test_decorators.py::test_decorated_processor_inheritance PASSED [ 0%] 173s tests/test_decorators.py::test_pre_dump_is_invoked_before_implicit_field_generation PASSED [ 0%] 173s tests/test_decorators.py::TestValidatesDecorator::test_validates PASSED [ 0%] 173s tests/test_decorators.py::TestValidatesDecorator::test_validates_with_attribute PASSED [ 0%] 173s tests/test_decorators.py::TestValidatesDecorator::test_validates_decorator PASSED [ 0%] 173s tests/test_decorators.py::TestValidatesDecorator::test_field_not_present PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesDecorator::test_precedence PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesDecorator::test_validates_with_data_key PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_validator_nested_many_invalid_data PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_validator_nested_many_schema_error PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_validator_nested_many_field_error PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_validator_nested_many_pass_original_and_pass_many[True-expected_data0-expected_original_data0-data0] PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_validator_nested_many_pass_original_and_pass_many[False-expected_data1-expected_original_data1-data0] PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_decorated_validators PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_multiple_validators PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_multiple_validators_merge_dict_errors PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_passing_original_data PASSED [ 1%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_allow_reporting_field_errors_in_schema_validator PASSED [ 2%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_allow_arbitrary_field_names_in_error PASSED [ 2%] 173s tests/test_decorators.py::TestValidatesSchemaDecorator::test_skip_on_field_errors PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_error_handling PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_error_handling_with_load[pre_load] PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_error_handling_with_load[post_load] PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_error_handling_with_load_dict_error[pre_load] PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_error_handling_with_load_dict_error[post_load] PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_error_handling_with_dump[pre_dump] PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_error_handling_with_dump[post_dump] PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_post_dump_with_nested_original_and_pass_many[data0-expected_data0-expected_original_data0] PASSED [ 2%] 173s tests/test_decorators.py::test_decorator_post_load_with_nested_original_and_pass_many[data0-expected_data0-expected_original_data0] PASSED [ 2%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[String] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Integer] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Boolean] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Float] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Number] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[DateTime] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Time] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Date] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[TimeDelta] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Dict] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Url] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Email] PASSED [ 3%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[UUID] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[Decimal] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[IP] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[IPv4] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[IPv6] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[IPInterface] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[IPv4Interface] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[IPv6Interface] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[FieldClass20] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[FieldClass21] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_allow_none_deserialize_to_none[FieldClass22] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[String] PASSED [ 4%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Integer] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Boolean] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Float] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Number] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[DateTime] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Time] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Date] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[TimeDelta] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Dict] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Url] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Email] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[UUID] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[Decimal] PASSED [ 5%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[IP] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[IPv4] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[IPv6] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[IPInterface] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[IPv4Interface] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[IPv6Interface] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[FieldClass20] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[FieldClass21] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_fields_dont_allow_none_by_default[FieldClass22] PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_allow_none_is_true_if_missing_is_true PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_list_field_deserialize_none_to_none PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_tuple_field_deserialize_none_to_none PASSED [ 6%] 173s tests/test_deserialization.py::TestDeserializingNone::test_list_of_nested_allow_none_deserialize_none_to_none PASSED [ 7%] 173s tests/test_deserialization.py::TestDeserializingNone::test_list_of_nested_non_allow_none_deserialize_none_to_validation_error PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_deserialization PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_float_field_deserialization[bad] PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_float_field_deserialization[] PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_float_field_deserialization[in_val2] PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_float_field_deserialization[True] PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_float_field_deserialization[False] PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_overflow PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_integer_field_deserialization PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_strict_integer_field_deserialization PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_decimal_field_deserialization PASSED [ 7%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_decimal_field_with_places PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_decimal_field_with_places_and_rounding PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_decimal_field_deserialization_string PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_decimal_field_special_values PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_decimal_field_special_values_not_permitted PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[nan-None] PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[nan-False] PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[nan-True] PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[-nan-None] PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[-nan-False] PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[-nan-True] PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[inf-None] PASSED [ 8%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[inf-False] PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[inf-True] PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[-inf-None] PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[-inf-False] PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_float_field_allow_nan[-inf-True] PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_string_field_deserialization PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_boolean_field_deserialization PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_boolean_field_deserialization_with_custom_truthy_values PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_boolean_field_deserialization_with_custom_truthy_values_invalid[notvalid] PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_boolean_field_deserialization_with_custom_truthy_values_invalid[123] PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_boolean_field_deserialization_with_empty_truthy PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_boolean_field_deserialization_with_custom_falsy_values PASSED [ 9%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_field_toggle_show_invalid_value_in_error_message PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[not-a-datetime] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[42] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[in_value3] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[2018] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[2018-01-01] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[12:49:11 2025-02-19] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_datetime_deserialization[02-19-2025 12:49:11] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_custom_date_format_datetime_field_deserialization PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_rfc_datetime_field_deserialization[Sun, 10 Nov 2013 01:23:45 -0000-expected0-False-rfc] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_rfc_datetime_field_deserialization[Sun, 10 Nov 2013 01:23:45 -0000-expected0-False-rfc822] PASSED [ 10%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_rfc_datetime_field_deserialization[Sun, 10 Nov 2013 01:23:45 +0000-expected1-True-rfc] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_rfc_datetime_field_deserialization[Sun, 10 Nov 2013 01:23:45 +0000-expected1-True-rfc822] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_rfc_datetime_field_deserialization[Sun, 10 Nov 2013 01:23:45 -0600-expected2-True-rfc] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_rfc_datetime_field_deserialization[Sun, 10 Nov 2013 01:23:45 -0600-expected2-True-rfc822] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45-expected0-False-iso] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45-expected0-False-iso8601] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45+00:00-expected1-True-iso] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45+00:00-expected1-True-iso8601] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45.123+00:00-expected2-True-iso] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45.123+00:00-expected2-True-iso8601] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45.123456+00:00-expected3-True-iso] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45.123456+00:00-expected3-True-iso8601] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45-06:00-expected4-True-iso] PASSED [ 11%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_datetime_field_deserialization[2013-11-10T01:23:45-06:00-expected4-True-iso8601] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp-1384043025-expected0] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp-1384043025-expected1] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp-1384043025-expected2] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp-1384043025.12-expected3] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp-1384043025.123456-expected4] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp-1-expected5] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp_ms-1384043025000-expected6] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timestamp_field_deserialization[timestamp_ms-1000-expected7] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[-timestamp] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[-timestamp_ms] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[!@#-timestamp] PASSED [ 12%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[!@#-timestamp_ms] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[0-timestamp] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[0-timestamp_ms] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[-1-timestamp] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[-1-timestamp_ms] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[in_value4-timestamp] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timestamp_field_deserialization[in_value4-timestamp_ms] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_oversized_timestamp_field_deserialization[MockDateTimeOSError-timestamp] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_oversized_timestamp_field_deserialization[MockDateTimeOSError-timestamp_ms] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_oversized_timestamp_field_deserialization[MockDateTimeOverflowError-timestamp] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_oversized_timestamp_field_deserialization[MockDateTimeOverflowError-timestamp_ms] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_naive_datetime_with_timezone[iso-None-2013-11-10T01:23:45-expected0] PASSED [ 13%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_naive_datetime_with_timezone[iso-timezone1-2013-11-10T01:23:45+00:00-expected1] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_naive_datetime_with_timezone[iso-timezone2-2013-11-10T01:23:45-03:00-expected2] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_naive_datetime_with_timezone[rfc-None-Sun, 10 Nov 2013 01:23:45 -0000-expected3] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_naive_datetime_with_timezone[rfc-timezone4-Sun, 10 Nov 2013 01:23:45 +0000-expected4] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_naive_datetime_with_timezone[rfc-timezone5-Sun, 10 Nov 2013 01:23:45 -0300-expected5] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_aware_datetime_default_timezone[iso-2013-11-10T01:23:45-timezone0] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_aware_datetime_default_timezone[iso-2013-11-10T01:23:45-timezone1] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_aware_datetime_default_timezone[rfc-Sun, 10 Nov 2013 01:23:45-timezone0] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_aware_datetime_default_timezone[rfc-Sun, 10 Nov 2013 01:23:45-timezone1] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_time_field_deserialization PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_time_field_deserialization[badvalue] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_time_field_deserialization[] PASSED [ 14%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_time_field_deserialization[in_data2] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_time_field_deserialization[42] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_custom_time_format_time_field_deserialization PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45-expected0-iso] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45-expected0-iso8601] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45-expected0-None] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45+01:00-expected1-iso] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45+01:00-expected1-iso8601] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45+01:00-expected1-None] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45.123-expected2-iso] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45.123-expected2-iso8601] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45.123-expected2-None] PASSED [ 15%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45.123456-expected3-iso] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45.123456-expected3-iso8601] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_iso_time_field_deserialization[01:23:45.123456-expected3-None] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timedelta_precision PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_timedelta_field_deserialization PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timedelta_field_deserialization[] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timedelta_field_deserialization[badvalue] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timedelta_field_deserialization[in_value2] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_timedelta_field_deserialization[9999999999] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_date_field_deserialization[None] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_date_field_deserialization[%Y-%m-%d] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_date_field_deserialization[] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_date_field_deserialization[123] PASSED [ 16%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_date_field_deserialization[in_value2] PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_date_field_deserialization[21-08-2014] PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_dict_field_deserialization PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_structured_dict_value_deserialization PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_structured_dict_key_deserialization PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_structured_dict_key_value_deserialization PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_url_field_deserialization PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_url_field_non_list_validators PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_relative_url_field_deserialization PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_url_field_schemes_argument PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_email_field_deserialization PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_email_field_non_list_validators PASSED [ 17%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_function_field_deserialization_is_noop_by_default PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_function_field_deserialization_with_callable PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_function_field_deserialization_with_context PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_function_field_passed_deserialize_only_is_load_only PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_function_field_passed_deserialize_and_serialize_is_not_load_only PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_uuid_field_deserialization PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_uuid_deserialization[malformed] PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_uuid_deserialization[123] PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_uuid_deserialization[in_value2] PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_uuid_deserialization[tooshort] PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_ip_field_deserialization PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ip_deserialization[malformed] PASSED [ 18%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ip_deserialization[123] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ip_deserialization[\x01\x02\x03] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ip_deserialization[192.168] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ip_deserialization[192.168.0.1/24] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ip_deserialization[ff::aa:1::2] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_ipv4_field_deserialization PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4_deserialization[malformed] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4_deserialization[123] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4_deserialization[\x01\x02\x03] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4_deserialization[192.168] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4_deserialization[192.168.0.1/24] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4_deserialization[2a00:1450:4001:81d::200e] PASSED [ 19%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_ipv6_field_deserialization PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_ipinterface_field_deserialization PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipinterface_deserialization[malformed] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipinterface_deserialization[123] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipinterface_deserialization[\x01\x02\x03] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipinterface_deserialization[192.168] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipinterface_deserialization[192.168.0.1/33] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipinterface_deserialization[ff::aa:1::2] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipinterface_deserialization[2a00:1450:4001:824::200e/129] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_ipv4interface_field_deserialization PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4interface_deserialization[malformed] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4interface_deserialization[123] PASSED [ 20%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4interface_deserialization[\x01\x02\x03] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4interface_deserialization[192.168] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4interface_deserialization[192.168.0.1/33] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4interface_deserialization[2a00:1450:4001:81d::200e] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv4interface_deserialization[2a00:1450:4001:824::200e/129] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_ipv6interface_field_deserialization PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv6interface_deserialization[malformed] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv6interface_deserialization[123] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv6interface_deserialization[\x01\x02\x03] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv6interface_deserialization[ff::aa:1::2] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv6interface_deserialization[192.168.0.1] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv6interface_deserialization[192.168.0.1/24] PASSED [ 21%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_invalid_ipv6interface_deserialization[2a00:1450:4001:824::200e/129] PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_symbol_deserialization PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_symbol_invalid_value PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_symbol_not_string PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_value_true_deserialization PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_value_field_deserialization PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_value_true_invalid_value PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_value_field_invalid_value PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_value_true_wrong_type PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_enum_field_by_value_field_wrong_type PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_deserialization_function_must_be_callable PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_method_field_deserialization_is_noop_by_default PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_deserialization_method PASSED [ 22%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_deserialization_method_must_be_a_method PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_method_field_deserialize_only PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_datetime_list_field_deserialization PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_list_field_deserialize_invalid_item PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_list_field_deserialize_multiple_invalid_items PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_list_field_deserialize_value_that_is_not_a_list[notalist] PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_list_field_deserialize_value_that_is_not_a_list[42] PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_list_field_deserialize_value_that_is_not_a_list[value2] PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_datetime_int_tuple_field_deserialization PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_tuple_field_deserialize_invalid_item PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_tuple_field_deserialize_multiple_invalid_items PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_tuple_field_deserialize_value_that_is_not_a_collection[notalist] PASSED [ 23%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_tuple_field_deserialize_value_that_is_not_a_collection[42] PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_tuple_field_deserialize_value_that_is_not_a_collection[value2] PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_tuple_field_deserialize_invalid_length PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_constant_field_deserialization PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_constant_is_always_included_in_deserialized_data PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_field_deserialization_with_user_validator_function PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_field_deserialization_with_user_validator_class_that_returns_bool PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_field_deserialization_with_user_validator_that_raises_error_with_list PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_validator_must_return_false_to_raise_error PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_field_deserialization_with_validator_with_nonascii_input PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_field_deserialization_with_user_validators PASSED [ 24%] 173s tests/test_deserialization.py::TestFieldDeserialization::test_field_deserialization_with_custom_error_message PASSED [ 24%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_to_dict PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_missing_values PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_many PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_exclude PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_single_deserialization_to_dict PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_list_deserialization_to_dict PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_single_none_not_allowed PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_many_non_not_allowed PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_single_required_missing PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_many_required_missing PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_only_basestring PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_only_basestring_with_list_data PASSED [ 25%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_nested_none_deserialization PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_attribute_param PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_attribute_param_symmetry PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_attribute_param_error_returns_field_name_not_attribute_name PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_attribute_param_error_returns_data_key_not_attribute_name PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_data_key_param PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_data_key_as_empty_string PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_dump_only_param PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_missing_param_value PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_missing_param_callable PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialize_with_missing_param_none PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialization_raises_with_errors PASSED [ 26%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialization_raises_with_errors_with_multiple_validators PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_deserialization_many_raises_errors PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_validation_errors_are_stored PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_multiple_errors_can_be_stored_for_a_field PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_multiple_errors_can_be_stored_for_an_email_field PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_multiple_errors_can_be_stored_for_a_url_field PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_required_value_only_passed_to_validators_if_provided PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_partial_deserialization[True] PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_partial_deserialization[False] PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_partial_fields_deserialization PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_partial_fields_validation PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_unknown_fields_deserialization PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_unknown_fields_deserialization_precedence PASSED [ 27%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_unknown_fields_deserialization_with_data_key PASSED [ 28%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_unknown_fields_deserialization_with_index_errors_false PASSED [ 28%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_dump_only_fields_considered_unknown PASSED [ 28%] 173s tests/test_deserialization.py::TestSchemaDeserialization::test_unknown_fields_do_not_unpack_dotted_names PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_integer_with_validator PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_integer_with_validators[field0] PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_integer_with_validators[field1] PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_integer_with_validators[field2] PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_float_with_validators[field0] PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_float_with_validators[field1] PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_float_with_validators[field2] PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_string_validator PASSED [ 28%] 173s tests/test_deserialization.py::TestValidation::test_function_validator PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_function_validators[field0] PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_function_validators[field1] PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_function_validators[field2] PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_method_validator PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_nested_data_is_stored_when_validation_fails PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_false_value_validation PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_nested_partial_load PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_deeply_nested_partial_load PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_nested_partial_tuple PASSED [ 29%] 173s tests/test_deserialization.py::TestValidation::test_nested_partial_default PASSED [ 29%] 173s tests/test_deserialization.py::test_required_field_failure[String] PASSED [ 29%] 173s tests/test_deserialization.py::test_required_field_failure[Integer] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Boolean] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Float] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Number] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[DateTime] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Time] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Date] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[TimeDelta] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Dict] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Url] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Email] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[UUID] PASSED [ 30%] 173s tests/test_deserialization.py::test_required_field_failure[Decimal] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[IP] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[IPv4] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[IPv6] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[IPInterface] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[IPv4Interface] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[IPv6Interface] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[FieldClass20] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[FieldClass21] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_field_failure[FieldClass22] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_message_can_be_changed[My custom required message] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_message_can_be_changed[message1] PASSED [ 31%] 173s tests/test_deserialization.py::test_required_message_can_be_changed[message2] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[True-exclude] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[True-include] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[True-raise] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[False-exclude] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[False-include] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[False-raise] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[42-exclude] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[42-include] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[42-raise] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[None-exclude] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[None-include] PASSED [ 32%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[None-raise] PASSED [ 33%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[data4-exclude] PASSED [ 33%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[data4-include] PASSED [ 33%] 173s tests/test_deserialization.py::test_deserialize_raises_exception_if_input_type_is_incorrect[data4-raise] PASSED [ 33%] 173s tests/test_error_store.py::test_missing_is_falsy PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_none_and_string PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_none_and_custom_error PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_none_and_list PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_none_and_dict PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_string_and_none PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_custom_error_and_none PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_list_and_none PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_dict_and_none PASSED [ 33%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_string_and_string PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_custom_error_and_string PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_string_and_custom_error PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_custom_error_and_custom_error PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_string_and_list PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_string_and_dict PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_string_and_dict_with_schema_error PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_custom_error_and_list PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_custom_error_and_dict PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_custom_error_and_dict_with_schema_error PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_list_and_string PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_list_and_custom_error PASSED [ 34%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_list_and_list PASSED [ 35%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_list_and_dict PASSED [ 35%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_list_and_dict_with_schema_error PASSED [ 35%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_dict_and_string PASSED [ 35%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_dict_and_custom_error PASSED [ 35%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_dict_and_list PASSED [ 35%] 173s tests/test_error_store.py::TestMergeErrors::test_merging_dict_and_dict PASSED [ 35%] 173s tests/test_error_store.py::TestMergeErrors::test_deep_merging_dicts PASSED [ 35%] 173s tests/test_exceptions.py::TestValidationError::test_stores_message_in_list PASSED [ 35%] 173s tests/test_exceptions.py::TestValidationError::test_can_pass_list_of_messages PASSED [ 35%] 173s tests/test_exceptions.py::TestValidationError::test_stores_dictionaries PASSED [ 35%] 173s tests/test_exceptions.py::TestValidationError::test_can_store_field_name PASSED [ 35%] 173s tests/test_exceptions.py::TestValidationError::test_str PASSED [ 36%] 173s tests/test_exceptions.py::TestValidationError::test_stores_dictionaries_in_messages_dict PASSED [ 36%] 173s tests/test_exceptions.py::TestValidationError::test_messages_dict_type_error_on_badval PASSED [ 36%] 173s tests/test_fields.py::test_field_aliases[Integer-Integer] PASSED [ 36%] 173s tests/test_fields.py::test_field_aliases[String-String] PASSED [ 36%] 173s tests/test_fields.py::test_field_aliases[Boolean-Boolean] PASSED [ 36%] 173s tests/test_fields.py::test_field_aliases[Url-Url] PASSED [ 36%] 173s tests/test_fields.py::TestField::test_repr PASSED [ 36%] 173s tests/test_fields.py::TestField::test_error_raised_if_uncallable_validator_passed PASSED [ 36%] 173s tests/test_fields.py::TestField::test_error_raised_if_missing_is_set_on_required_field PASSED [ 36%] 173s tests/test_fields.py::TestField::test_custom_field_receives_attr_and_obj PASSED [ 36%] 173s tests/test_fields.py::TestField::test_custom_field_receives_data_key_if_set PASSED [ 36%] 173s tests/test_fields.py::TestField::test_custom_field_follows_data_key_if_set PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_simple_field_parent_and_name PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_unbound_field_root_returns_none PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_list_field_inner_parent_and_name PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_tuple_field_inner_parent_and_name PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_mapping_field_inner_parent_and_name PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_simple_field_root PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_list_field_inner_root PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_tuple_field_inner_root PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_list_root_inheritance PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_dict_root_inheritance PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_datetime_list_inner_format PASSED [ 37%] 173s tests/test_fields.py::TestParentAndName::test_field_named_parent_has_root PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[String] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Integer] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Boolean] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Float] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Number] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[DateTime] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Time] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Date] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[TimeDelta] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Dict] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Url] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Email] PASSED [ 38%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[UUID] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[Decimal] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[IP] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[IPv4] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[IPv6] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[IPInterface] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[IPv4Interface] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[IPv6Interface] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[FieldClass20] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[FieldClass21] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_extra_metadata_may_be_added_to_field[FieldClass22] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[String] PASSED [ 39%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Integer] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Boolean] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Float] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Number] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[DateTime] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Time] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Date] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[TimeDelta] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Dict] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Url] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Email] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[UUID] PASSED [ 40%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[Decimal] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[IP] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[IPv4] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[IPv6] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[IPInterface] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[IPv4Interface] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[IPv6Interface] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[FieldClass20] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[FieldClass21] PASSED [ 41%] 173s tests/test_fields.py::TestMetadata::test_field_metadata_added_in_deprecated_style_warns[FieldClass22] PASSED [ 41%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[String] PASSED [ 41%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Integer] PASSED [ 41%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Boolean] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Float] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Number] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[DateTime] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Time] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Date] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[TimeDelta] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Dict] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Url] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Email] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[UUID] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[Decimal] PASSED [ 42%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[IP] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[IPv4] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[IPv6] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[IPInterface] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[IPv4Interface] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[IPv6Interface] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[FieldClass20] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[FieldClass21] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_load_default_in_deprecated_style_warns[FieldClass22] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[String] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Integer] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Boolean] PASSED [ 43%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Float] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Number] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[DateTime] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Time] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Date] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[TimeDelta] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Dict] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Url] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Email] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[UUID] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[Decimal] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[IP] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[IPv4] PASSED [ 44%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[IPv6] PASSED [ 45%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[IPInterface] PASSED [ 45%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[IPv4Interface] PASSED [ 45%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[IPv6Interface] PASSED [ 45%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[FieldClass20] PASSED [ 45%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[FieldClass21] PASSED [ 45%] 173s tests/test_fields.py::TestDeprecatedDefaultAndMissing::test_dump_default_in_deprecated_style_warns[FieldClass22] PASSED [ 45%] 173s tests/test_fields.py::TestErrorMessages::test_default_error_messages_get_merged_with_parent_error_messages_cstm_msg PASSED [ 45%] 173s tests/test_fields.py::TestErrorMessages::test_default_error_messages_get_merged_with_parent_error_messages PASSED [ 45%] 173s tests/test_fields.py::TestErrorMessages::test_make_error[required-Missing data for required field.] PASSED [ 45%] 173s tests/test_fields.py::TestErrorMessages::test_make_error[null-Field may not be null.] PASSED [ 45%] 173s tests/test_fields.py::TestErrorMessages::test_make_error[custom-Custom error message.] PASSED [ 45%] 173s tests/test_fields.py::TestErrorMessages::test_make_error[validator_failed-Invalid value.] PASSED [ 46%] 173s tests/test_fields.py::TestErrorMessages::test_fail[required-Missing data for required field.] PASSED [ 46%] 173s tests/test_fields.py::TestErrorMessages::test_fail[null-Field may not be null.] PASSED [ 46%] 173s tests/test_fields.py::TestErrorMessages::test_fail[custom-Custom error message.] PASSED [ 46%] 173s tests/test_fields.py::TestErrorMessages::test_fail[validator_failed-Invalid value.] PASSED [ 46%] 173s tests/test_fields.py::TestErrorMessages::test_make_error_key_doesnt_exist PASSED [ 46%] 173s tests/test_fields.py::TestNestedField::test_nested_only_and_exclude_as_string[only] PASSED [ 46%] 173s tests/test_fields.py::TestNestedField::test_nested_only_and_exclude_as_string[exclude] PASSED [ 46%] 173s tests/test_fields.py::TestNestedField::test_nested_instantiation_from_dict[nested_value0] PASSED [ 46%] 173s tests/test_fields.py::TestNestedField::test_nested_instantiation_from_dict[] PASSED [ 46%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[None-exclude] PASSED [ 46%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[None-include] PASSED [ 46%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[None-raise] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[exclude-exclude] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[exclude-include] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[exclude-raise] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[include-exclude] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[include-include] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[include-raise] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[raise-exclude] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[raise-include] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_unknown_override[raise-raise] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_schema_only_and_exclude[only-fields_list0] PASSED [ 47%] 173s tests/test_fields.py::TestNestedField::test_nested_schema_only_and_exclude[exclude-fields_list1] PASSED [ 47%] 173s tests/test_fields.py::TestListNested::test_list_nested_only_exclude_dump_only_load_only_propagated_to_nested[only] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_only_exclude_dump_only_load_only_propagated_to_nested[exclude] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_only_exclude_dump_only_load_only_propagated_to_nested[dump_only] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_only_exclude_dump_only_load_only_propagated_to_nested[load_only] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_class_only_and_exclude_merged_with_nested[only-expected_attribute0-expected_dump0] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_class_only_and_exclude_merged_with_nested[exclude-expected_attribute1-expected_dump1] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_class_multiple_dumps PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_instance_only_and_exclude_merged_with_nested[only-expected_attribute0-expected_dump0] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_instance_only_and_exclude_merged_with_nested[exclude-expected_attribute1-expected_dump1] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_instance_multiple_dumps PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_lambda_only_and_exclude_merged_with_nested[only-expected_attribute0-expected_dump0] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_lambda_only_and_exclude_merged_with_nested[exclude-expected_attribute1-expected_dump1] PASSED [ 48%] 173s tests/test_fields.py::TestListNested::test_list_nested_partial_propagated_to_nested PASSED [ 49%] 173s tests/test_fields.py::TestTupleNested::test_tuple_nested_only_exclude_dump_only_load_only_propagated_to_nested[dump_only] PASSED [ 49%] 173s tests/test_fields.py::TestTupleNested::test_tuple_nested_only_exclude_dump_only_load_only_propagated_to_nested[load_only] PASSED [ 49%] 173s tests/test_fields.py::TestTupleNested::test_tuple_nested_partial_propagated_to_nested PASSED [ 49%] 173s tests/test_fields.py::TestDictNested::test_dict_nested_only_exclude_dump_only_load_only_propagated_to_nested[only] PASSED [ 49%] 173s tests/test_fields.py::TestDictNested::test_dict_nested_only_exclude_dump_only_load_only_propagated_to_nested[exclude] PASSED [ 49%] 173s tests/test_fields.py::TestDictNested::test_dict_nested_only_exclude_dump_only_load_only_propagated_to_nested[dump_only] PASSED [ 49%] 173s tests/test_fields.py::TestDictNested::test_dict_nested_only_exclude_dump_only_load_only_propagated_to_nested[load_only] PASSED [ 49%] 173s tests/test_fields.py::TestDictNested::test_dict_nested_only_and_exclude_merged_with_nested[only-expected0] PASSED [ 49%] 173s tests/test_fields.py::TestDictNested::test_dict_nested_only_and_exclude_merged_with_nested[exclude-expected1] PASSED [ 49%] 173s tests/test_fields.py::TestDictNested::test_dict_nested_partial_propagated_to_nested PASSED [ 49%] 173s tests/test_options.py::TestUnordered::test_unordered_dump_returns_dict PASSED [ 49%] 173s tests/test_options.py::TestUnordered::test_unordered_load_returns_dict PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_ordered_option_is_inherited[False] PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_ordered_option_is_inherited[True] PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_ordering_is_off_by_default PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_declared_field_order_is_maintained_on_dump PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_declared_field_order_is_maintained_on_load PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_nested_field_order_with_only_arg_is_maintained_on_dump PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_nested_field_order_with_only_arg_is_maintained_on_load PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_nested_field_order_with_exclude_arg_is_maintained PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_meta_fields_order_is_maintained_on_dump PASSED [ 50%] 173s tests/test_options.py::TestFieldOrdering::test_meta_fields_order_is_maintained_on_load PASSED [ 50%] 173s tests/test_options.py::TestIncludeOption::test_fields_are_added PASSED [ 50%] 173s tests/test_options.py::TestIncludeOption::test_included_fields_ordered_after_declared_fields PASSED [ 50%] 173s tests/test_options.py::TestIncludeOption::test_added_fields_are_inherited PASSED [ 51%] 173s tests/test_registry.py::test_serializer_has_class_registry PASSED [ 51%] 173s tests/test_registry.py::test_register_class_meta_option PASSED [ 51%] 173s tests/test_registry.py::test_serializer_class_registry_register_same_classname_different_module PASSED [ 51%] 173s tests/test_registry.py::test_serializer_class_registry_override_if_same_classname_same_module PASSED [ 51%] 173s tests/test_registry.py::test_two_way_nesting PASSED [ 51%] 173s tests/test_registry.py::test_nesting_with_class_name_many PASSED [ 51%] 173s tests/test_registry.py::test_invalid_class_name_in_nested_field_raises_error PASSED [ 51%] 173s tests/test_registry.py::test_multiple_classes_with_same_name_raises_error PASSED [ 51%] 173s tests/test_registry.py::test_multiple_classes_with_all PASSED [ 51%] 173s tests/test_registry.py::test_can_use_full_module_path_to_class PASSED [ 51%] 173s tests/test_schema.py::test_serializing_basic_object[UserSchema] PASSED [ 51%] 173s tests/test_schema.py::test_serializing_basic_object[UserMetaSchema] PASSED [ 52%] 173s tests/test_schema.py::test_serializer_dump PASSED [ 52%] 173s tests/test_schema.py::test_load_resets_errors PASSED [ 52%] 173s tests/test_schema.py::test_load_validation_error_stores_input_data_and_valid_data PASSED [ 52%] 173s tests/test_schema.py::test_load_resets_error_fields PASSED [ 52%] 173s tests/test_schema.py::test_errored_fields_do_not_appear_in_output PASSED [ 52%] 173s tests/test_schema.py::test_load_many_stores_error_indices PASSED [ 52%] 173s tests/test_schema.py::test_dump_many PASSED [ 52%] 173s tests/test_schema.py::test_boolean_can_dump_unhashable[value0] PASSED [ 52%] 173s tests/test_schema.py::test_boolean_can_dump_unhashable[value1] PASSED [ 52%] 173s tests/test_schema.py::test_boolean_can_dump_unhashable[value2] PASSED [ 52%] 173s tests/test_schema.py::test_boolean_can_dump_unhashable[value3] PASSED [ 52%] 173s tests/test_schema.py::test_multiple_errors_can_be_stored_for_a_given_index PASSED [ 53%] 173s tests/test_schema.py::test_dump_returns_a_dict PASSED [ 53%] 173s tests/test_schema.py::test_dumps_returns_a_string PASSED [ 53%] 173s tests/test_schema.py::test_dumping_single_object_with_collection_schema PASSED [ 53%] 173s tests/test_schema.py::test_loading_single_object_with_collection_schema PASSED [ 53%] 173s tests/test_schema.py::test_dumps_many PASSED [ 53%] 173s tests/test_schema.py::test_load_returns_an_object PASSED [ 53%] 173s tests/test_schema.py::test_load_many PASSED [ 53%] 173s tests/test_schema.py::test_load_invalid_input_type[None] PASSED [ 53%] 173s tests/test_schema.py::test_load_invalid_input_type[False] PASSED [ 53%] 173s tests/test_schema.py::test_load_invalid_input_type[1] PASSED [ 53%] 173s tests/test_schema.py::test_load_invalid_input_type[1.2] PASSED [ 53%] 173s tests/test_schema.py::test_load_invalid_input_type[val4] PASSED [ 54%] 173s tests/test_schema.py::test_load_invalid_input_type[val5] PASSED [ 54%] 173s tests/test_schema.py::test_load_invalid_input_type[val6] PASSED [ 54%] 173s tests/test_schema.py::test_load_invalid_input_type[lol] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[None] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[False] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[1] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[1.2] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[val4] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[val5] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[val6] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_invalid_input_type[lol] PASSED [ 54%] 173s tests/test_schema.py::test_load_many_empty_collection[val0] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_empty_collection[val1] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_invalid_input_type[False] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_invalid_input_type[1] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_invalid_input_type[1.2] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_invalid_input_type[val3] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_invalid_input_type[val4] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_invalid_input_type[val5] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_invalid_input_type[lol] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_empty_collection[val0] PASSED [ 55%] 173s tests/test_schema.py::test_load_many_in_nested_empty_collection[val1] PASSED [ 55%] 173s tests/test_schema.py::test_loads_returns_a_user PASSED [ 55%] 173s tests/test_schema.py::test_loads_many PASSED [ 55%] 173s tests/test_schema.py::test_loads_deserializes_from_json PASSED [ 56%] 173s tests/test_schema.py::test_serializing_none PASSED [ 56%] 173s tests/test_schema.py::test_default_many_symmetry PASSED [ 56%] 173s tests/test_schema.py::test_on_bind_field_hook PASSED [ 56%] 173s tests/test_schema.py::test_nested_on_bind_field_hook PASSED [ 56%] 173s tests/test_schema.py::TestValidate::test_validate_raises_with_errors_dict PASSED [ 56%] 173s tests/test_schema.py::TestValidate::test_validate_many PASSED [ 56%] 173s tests/test_schema.py::TestValidate::test_validate_many_doesnt_store_index_if_index_errors_option_is_false PASSED [ 56%] 173s tests/test_schema.py::TestValidate::test_validate PASSED [ 56%] 173s tests/test_schema.py::TestValidate::test_validate_required PASSED [ 56%] 173s tests/test_schema.py::test_fields_are_not_copies[UserSchema] PASSED [ 56%] 173s tests/test_schema.py::test_fields_are_not_copies[UserMetaSchema] PASSED [ 56%] 173s tests/test_schema.py::test_dumps_returns_json PASSED [ 57%] 173s tests/test_schema.py::test_naive_datetime_field PASSED [ 57%] 173s tests/test_schema.py::test_datetime_formatted_field PASSED [ 57%] 173s tests/test_schema.py::test_datetime_iso_field PASSED [ 57%] 173s tests/test_schema.py::test_tz_datetime_field PASSED [ 57%] 173s tests/test_schema.py::test_class_variable PASSED [ 57%] 173s tests/test_schema.py::test_serialize_many[UserSchema] PASSED [ 57%] 173s tests/test_schema.py::test_serialize_many[UserMetaSchema] PASSED [ 57%] 173s tests/test_schema.py::test_inheriting_schema PASSED [ 57%] 173s tests/test_schema.py::test_custom_field PASSED [ 57%] 173s tests/test_schema.py::test_url_field PASSED [ 57%] 173s tests/test_schema.py::test_relative_url_field PASSED [ 57%] 173s tests/test_schema.py::test_stores_invalid_url_error[UserSchema] PASSED [ 58%] 173s tests/test_schema.py::test_stores_invalid_url_error[UserMetaSchema] PASSED [ 58%] 173s tests/test_schema.py::test_email_field[UserSchema] PASSED [ 58%] 173s tests/test_schema.py::test_email_field[UserMetaSchema] PASSED [ 58%] 173s tests/test_schema.py::test_stored_invalid_email PASSED [ 58%] 173s tests/test_schema.py::test_integer_field PASSED [ 58%] 173s tests/test_schema.py::test_as_string PASSED [ 58%] 173s tests/test_schema.py::test_method_field[UserSchema] PASSED [ 58%] 173s tests/test_schema.py::test_method_field[UserMetaSchema] PASSED [ 58%] 173s tests/test_schema.py::test_function_field PASSED [ 58%] 173s tests/test_schema.py::test_fields_must_be_declared_as_instances PASSED [ 58%] 173s tests/test_schema.py::test_bind_field_does_not_swallow_typeerror PASSED [ 58%] 173s tests/test_schema.py::test_serializing_generator[UserSchema] PASSED [ 59%] 173s tests/test_schema.py::test_serializing_generator[UserMetaSchema] PASSED [ 59%] 173s tests/test_schema.py::test_serializing_empty_list_returns_empty_list PASSED [ 59%] 173s tests/test_schema.py::test_serializing_dict PASSED [ 59%] 173s tests/test_schema.py::test_serializing_dict_with_meta_fields PASSED [ 59%] 173s tests/test_schema.py::test_exclude_in_init[UserSchema] PASSED [ 59%] 173s tests/test_schema.py::test_exclude_in_init[UserMetaSchema] PASSED [ 59%] 173s tests/test_schema.py::test_only_in_init[UserSchema] PASSED [ 59%] 173s tests/test_schema.py::test_only_in_init[UserMetaSchema] PASSED [ 59%] 173s tests/test_schema.py::test_invalid_only_param PASSED [ 59%] 173s tests/test_schema.py::test_can_serialize_uuid PASSED [ 59%] 173s tests/test_schema.py::test_can_serialize_time PASSED [ 59%] 173s tests/test_schema.py::test_json_module_is_deprecated PASSED [ 60%] 173s tests/test_schema.py::test_render_module PASSED [ 60%] 173s tests/test_schema.py::test_custom_error_message PASSED [ 60%] 173s tests/test_schema.py::test_custom_unknown_error_message PASSED [ 60%] 173s tests/test_schema.py::test_custom_type_error_message PASSED [ 60%] 173s tests/test_schema.py::test_custom_type_error_message_with_many PASSED [ 60%] 173s tests/test_schema.py::test_custom_error_messages_with_inheritance PASSED [ 60%] 173s tests/test_schema.py::test_load_errors_with_many PASSED [ 60%] 173s tests/test_schema.py::test_error_raised_if_fields_option_is_not_list PASSED [ 60%] 173s tests/test_schema.py::test_error_raised_if_additional_option_is_not_list PASSED [ 60%] 173s tests/test_schema.py::test_nested_custom_set_in_exclude_reusing_schema PASSED [ 60%] 173s tests/test_schema.py::test_nested_only PASSED [ 60%] 173s tests/test_schema.py::test_nested_only_inheritance PASSED [ 61%] 173s tests/test_schema.py::test_nested_only_empty_inheritance PASSED [ 61%] 173s tests/test_schema.py::test_nested_exclude PASSED [ 61%] 173s tests/test_schema.py::test_nested_exclude_inheritance PASSED [ 61%] 173s tests/test_schema.py::test_nested_only_and_exclude PASSED [ 61%] 173s tests/test_schema.py::test_nested_only_then_exclude_inheritance PASSED [ 61%] 173s tests/test_schema.py::test_nested_exclude_then_only_inheritance PASSED [ 61%] 173s tests/test_schema.py::test_nested_exclude_and_only_inheritance PASSED [ 61%] 173s tests/test_schema.py::test_nested_instance_many PASSED [ 61%] 173s tests/test_schema.py::test_nested_instance_only PASSED [ 61%] 173s tests/test_schema.py::test_nested_instance_exclude PASSED [ 61%] 173s tests/test_schema.py::test_meta_nested_exclude PASSED [ 61%] 173s tests/test_schema.py::test_nested_custom_set_not_implementing_getitem PASSED [ 61%] 173s tests/test_schema.py::test_deeply_nested_only_and_exclude PASSED [ 62%] 173s tests/test_schema.py::test_nested_lambda PASSED [ 62%] 173s tests/test_schema.py::test_data_key_collision[f1] PASSED [ 62%] 173s tests/test_schema.py::test_data_key_collision[f5] PASSED [ 62%] 173s tests/test_schema.py::test_data_key_collision[None] PASSED [ 62%] 173s tests/test_schema.py::test_attribute_collision[f1] PASSED [ 62%] 173s tests/test_schema.py::test_attribute_collision[f5] PASSED [ 62%] 173s tests/test_schema.py::test_attribute_collision[None] PASSED [ 62%] 173s tests/test_schema.py::TestDeeplyNestedLoadOnly::test_load_only PASSED [ 62%] 173s tests/test_schema.py::TestDeeplyNestedLoadOnly::test_dump_only PASSED [ 62%] 173s tests/test_schema.py::TestDeeplyNestedListLoadOnly::test_load_only PASSED [ 62%] 173s tests/test_schema.py::TestDeeplyNestedListLoadOnly::test_dump_only PASSED [ 62%] 173s tests/test_schema.py::test_nested_constructor_only_and_exclude PASSED [ 63%] 173s tests/test_schema.py::test_only_and_exclude PASSED [ 63%] 173s tests/test_schema.py::test_only_and_exclude_with_fields PASSED [ 63%] 173s tests/test_schema.py::test_invalid_only_and_exclude_with_fields PASSED [ 63%] 173s tests/test_schema.py::test_only_and_exclude_with_additional PASSED [ 63%] 173s tests/test_schema.py::test_invalid_only_and_exclude_with_additional PASSED [ 63%] 173s tests/test_schema.py::test_exclude_invalid_attribute PASSED [ 63%] 173s tests/test_schema.py::test_only_bounded_by_fields PASSED [ 63%] 173s tests/test_schema.py::test_only_bounded_by_additional PASSED [ 63%] 173s tests/test_schema.py::test_only_empty PASSED [ 63%] 173s tests/test_schema.py::test_only_and_exclude_as_string[only] PASSED [ 63%] 173s tests/test_schema.py::test_only_and_exclude_as_string[exclude] PASSED [ 63%] 173s tests/test_schema.py::test_nested_with_sets PASSED [ 64%] 173s tests/test_schema.py::test_meta_serializer_fields PASSED [ 64%] 173s tests/test_schema.py::test_meta_fields_mapping PASSED [ 64%] 173s tests/test_schema.py::test_meta_field_not_on_obj_raises_attribute_error PASSED [ 64%] 173s tests/test_schema.py::test_exclude_fields PASSED [ 64%] 173s tests/test_schema.py::test_fields_option_must_be_list_or_tuple PASSED [ 64%] 173s tests/test_schema.py::test_exclude_option_must_be_list_or_tuple PASSED [ 64%] 173s tests/test_schema.py::test_datetimeformat_option PASSED [ 64%] 173s tests/test_schema.py::test_dateformat_option PASSED [ 64%] 173s tests/test_schema.py::test_timeformat_option PASSED [ 64%] 173s tests/test_schema.py::test_default_dateformat PASSED [ 64%] 173s tests/test_schema.py::test_inherit_meta PASSED [ 64%] 173s tests/test_schema.py::test_inherit_meta_override PASSED [ 65%] 173s tests/test_schema.py::test_additional PASSED [ 65%] 173s tests/test_schema.py::test_cant_set_both_additional_and_fields PASSED [ 65%] 173s tests/test_schema.py::test_serializing_none_meta PASSED [ 65%] 173s tests/test_schema.py::TestFieldValidation::test_errors_are_cleared_after_loading_collection PASSED [ 65%] 173s tests/test_schema.py::TestFieldValidation::test_raises_error_with_list PASSED [ 65%] 173s tests/test_schema.py::TestFieldValidation::test_raises_error_with_dict PASSED [ 65%] 173s tests/test_schema.py::TestFieldValidation::test_ignored_if_not_in_only PASSED [ 65%] 173s tests/test_schema.py::test_schema_repr PASSED [ 65%] 173s tests/test_schema.py::TestNestedSchema::test_nested_many_with_missing_attribute PASSED [ 65%] 173s tests/test_schema.py::TestNestedSchema::test_nested_with_attribute_none PASSED [ 65%] 173s tests/test_schema.py::TestNestedSchema::test_nested_field_does_not_validate_required PASSED [ 65%] 173s tests/test_schema.py::TestNestedSchema::test_nested_none PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_many_fields PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_meta_many PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_only PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_exclude PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_list_field PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_load_many PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_errors PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_method_field PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_function_field PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_serializer_meta_with_nested_fields PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_serializer_with_nested_meta_fields PASSED [ 66%] 173s tests/test_schema.py::TestNestedSchema::test_nested_fields_must_be_passed_a_serializer PASSED [ 67%] 173s tests/test_schema.py::TestNestedSchema::test_invalid_type_passed_to_nested_field PASSED [ 67%] 173s tests/test_schema.py::TestNestedSchema::test_all_errors_on_many_nested_field_with_validates_decorator PASSED [ 67%] 173s tests/test_schema.py::TestNestedSchema::test_nested_unknown_validation[None] PASSED [ 67%] 173s tests/test_schema.py::TestNestedSchema::test_nested_unknown_validation[raise] PASSED [ 67%] 173s tests/test_schema.py::TestNestedSchema::test_nested_unknown_validation[include] PASSED [ 67%] 173s tests/test_schema.py::TestNestedSchema::test_nested_unknown_validation[exclude] PASSED [ 67%] 173s tests/test_schema.py::TestPluckSchema::test_pluck[UserSchema] PASSED [ 67%] 173s tests/test_schema.py::TestPluckSchema::test_pluck[user_schema1] PASSED [ 67%] 173s tests/test_schema.py::TestPluckSchema::test_pluck_none PASSED [ 67%] 173s tests/test_schema.py::TestPluckSchema::test_pluck_with_data_key PASSED [ 67%] 173s tests/test_schema.py::TestSelfReference::test_nesting_schema_by_passing_lambda PASSED [ 67%] 173s tests/test_schema.py::TestSelfReference::test_nesting_schema_by_passing_class_name PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_nesting_schema_self_string PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_nesting_within_itself_meta PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_nested_self_with_only_param PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_multiple_pluck_self_lambda PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_multiple_pluck_self_string PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_nested_self_many_lambda PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_nested_self_many_string PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_nested_self_list PASSED [ 68%] 173s tests/test_schema.py::TestSelfReference::test_nested_self_list_string PASSED [ 68%] 173s tests/test_schema.py::test_serialization_with_required_field PASSED [ 68%] 173s tests/test_schema.py::test_deserialization_with_required_field PASSED [ 68%] 173s tests/test_schema.py::test_deserialization_with_required_field_and_custom_validator PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_context_method PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_context_method_function PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_function_field_raises_error_when_context_not_available PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_function_field_handles_bound_serializer PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_fields_context PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_nested_fields_inherit_context PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_nested_list_fields_inherit_context PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_nested_dict_fields_inherit_context PASSED [ 69%] 173s tests/test_schema.py::TestContext::test_nested_field_with_unpicklable_object_in_context PASSED [ 69%] 173s tests/test_schema.py::test_serializer_can_specify_nested_object_as_attribute PASSED [ 69%] 173s tests/test_schema.py::TestFieldInheritance::test_inherit_fields_from_schema_subclass PASSED [ 69%] 173s tests/test_schema.py::TestFieldInheritance::test_inherit_fields_from_non_schema_subclass PASSED [ 70%] 173s tests/test_schema.py::TestFieldInheritance::test_inheritance_follows_mro PASSED [ 70%] 173s tests/test_schema.py::TestGetAttribute::test_get_attribute_is_used PASSED [ 70%] 173s tests/test_schema.py::TestGetAttribute::test_get_attribute_with_many PASSED [ 70%] 173s tests/test_schema.py::TestRequiredFields::test_required_string_field_missing PASSED [ 70%] 173s tests/test_schema.py::TestRequiredFields::test_required_string_field_failure PASSED [ 70%] 173s tests/test_schema.py::TestRequiredFields::test_allow_none_param PASSED [ 70%] 173s tests/test_schema.py::TestRequiredFields::test_allow_none_custom_message PASSED [ 70%] 173s tests/test_schema.py::TestDefaults::test_missing_inputs_are_excluded_from_dump_output PASSED [ 70%] 173s tests/test_schema.py::TestDefaults::test_none_is_serialized_to_none PASSED [ 70%] 173s tests/test_schema.py::TestDefaults::test_default_and_value_missing PASSED [ 70%] 173s tests/test_schema.py::TestDefaults::test_loading_none PASSED [ 70%] 173s tests/test_schema.py::TestDefaults::test_missing_inputs_are_excluded_from_load_output PASSED [ 71%] 173s tests/test_schema.py::TestLoadOnly::test_load_only PASSED [ 71%] 173s tests/test_schema.py::TestLoadOnly::test_dump_only PASSED [ 71%] 173s tests/test_schema.py::TestLoadOnly::test_url_field_requre_tld_false PASSED [ 71%] 173s tests/test_schema.py::TestFromDict::test_generates_schema PASSED [ 71%] 173s tests/test_schema.py::TestFromDict::test_name PASSED [ 71%] 173s tests/test_schema.py::TestFromDict::test_generated_schemas_are_not_registered PASSED [ 71%] 173s tests/test_schema.py::TestFromDict::test_meta_options_are_applied PASSED [ 71%] 173s tests/test_schema.py::test_class_registry_returns_schema_type PASSED [ 71%] 173s tests/test_schema.py::test_unknown_parameter_value_is_validated[meta] PASSED [ 71%] 173s tests/test_schema.py::test_unknown_parameter_value_is_validated[init] PASSED [ 71%] 173s tests/test_schema.py::test_unknown_parameter_value_is_validated[load] PASSED [ 71%] 173s tests/test_schema.py::test_set_dict_class[dict] PASSED [ 72%] 173s tests/test_schema.py::test_set_dict_class[OrderedDict] PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_number[42-42.0] PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_number[0-0.0] PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_number[None-None] PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_number_as_string PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_number_as_string_passed_none PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_passed_func PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_passed_serialize_only_is_dump_only PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_passed_deserialize_and_serialize_is_not_dump_only PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_passed_serialize PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_does_not_swallow_attribute_error PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_serialize_with_load_only_param PASSED [ 72%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_load_only PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_passed_serialize_with_context PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_function_field_passed_uncallable_object PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_integer_field PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_integer_as_string_field PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_integer_field_default PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_integer_field_default_set_to_none PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_uuid_field PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_ip_address_field PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_ipv4_address_field PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_ipv6_address_field PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_ip_interface_field PASSED [ 73%] 173s tests/test_serialization.py::TestFieldSerialization::test_ipv4_interface_field PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_ipv6_interface_field PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_enum_field_by_symbol_serialization PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_enum_field_by_value_true_serialization PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_enum_field_by_value_field_serialization PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_decimal_field PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_decimal_field_string PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_decimal_field_special_values PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_decimal_field_special_values_not_permitted PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_decimal_field_fixed_point_representation PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_boolean_field_serialization PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_email_field_serialize_none PASSED [ 74%] 173s tests/test_serialization.py::TestFieldSerialization::test_dict_field_serialize_none PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_dict_field_serialize PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_dict_field_serialize_ordereddict PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_structured_dict_value_serialize PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_structured_dict_key_serialize PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_structured_dict_key_value_serialize PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_url_field_serialize_none PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_method_field_with_method_missing PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_method_field_passed_serialize_only_is_dump_only PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_method_field_passed_deserialize_only_is_load_only PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_method_field_with_uncallable_attribute PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_method_field_does_not_swallow_attribute_error PASSED [ 75%] 173s tests/test_serialization.py::TestFieldSerialization::test_method_with_no_serialize_is_missing PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_serialize_with_data_key_param PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_serialize_with_data_key_as_empty_string PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_serialize_with_attribute_and_data_key_uses_data_key PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_rfc822[value0-Sun, 10 Nov 2013 01:23:45 -0000-rfc] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_rfc822[value0-Sun, 10 Nov 2013 01:23:45 -0000-rfc822] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_rfc822[value1-Sun, 10 Nov 2013 01:23:45 +0000-rfc] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_rfc822[value1-Sun, 10 Nov 2013 01:23:45 +0000-rfc822] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_rfc822[value2-Sun, 10 Nov 2013 01:23:45 -0600-rfc] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_rfc822[value2-Sun, 10 Nov 2013 01:23:45 -0600-rfc822] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_timestamp[timestamp-value0-0] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_timestamp[timestamp-value1-1384043025] PASSED [ 76%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_timestamp[timestamp-value2-1384043025] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_timestamp[timestamp-value3-1384064625] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_timestamp[timestamp_ms-value4-1384043025000] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_timestamp[timestamp_ms-value5-1384043025000] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_timestamp[timestamp_ms-value6-1384064625000] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value0-2013-11-10T01:23:45-iso] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value0-2013-11-10T01:23:45-iso8601] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value0-2013-11-10T01:23:45-None] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value1-2013-11-10T01:23:45.123456+00:00-iso] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value1-2013-11-10T01:23:45.123456+00:00-iso8601] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value1-2013-11-10T01:23:45.123456+00:00-None] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value2-2013-11-10T01:23:45+00:00-iso] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value2-2013-11-10T01:23:45+00:00-iso8601] PASSED [ 77%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value2-2013-11-10T01:23:45+00:00-None] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value3-2013-11-10T01:23:45-06:00-iso] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value3-2013-11-10T01:23:45-06:00-iso8601] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_iso8601[value3-2013-11-10T01:23:45-06:00-None] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_field_format PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_string_field PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_string_field_default_to_empty_string PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value0-01:23:45-iso] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value0-01:23:45-iso8601] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value0-01:23:45-None] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value1-01:23:45.123000-iso] PASSED [ 78%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value1-01:23:45.123000-iso8601] PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value1-01:23:45.123000-None] PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value2-01:23:45.123456-iso] PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value2-01:23:45.123456-iso8601] PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_iso8601[value2-01:23:45.123456-None] PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_time_field_format PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_date_field PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_timedelta_field PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_list_field PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_list_field_serialize_none_returns_none PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_list_field_work_with_generator_single_value PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_list_field_work_with_generators_multiple_values PASSED [ 79%] 173s tests/test_serialization.py::TestFieldSerialization::test_list_field_work_with_generators_empty_generator_returns_none_for_every_non_returning_yield_statement PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_list_field_work_with_set PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_list_field_work_with_custom_class_with_iterator_protocol PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_bad_list_field PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_datetime_integer_tuple_field PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_tuple_field_serialize_none_returns_none PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_bad_tuple_field PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_serialize_does_not_apply_validators PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_constant_field_serialization PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_constant_is_always_included_in_serialized_data PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_constant_field_serialize_when_omitted PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[String] PASSED [ 80%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Integer] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Boolean] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Float] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Number] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[DateTime] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Time] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Date] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[TimeDelta] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Dict] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Url] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Email] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[UUID] PASSED [ 81%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[Decimal] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[IP] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[IPv4] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[IPv6] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[IPInterface] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[IPv4Interface] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[IPv6Interface] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[FieldClass20] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[FieldClass21] PASSED [ 82%] 173s tests/test_serialization.py::TestFieldSerialization::test_all_fields_serialize_none_to_none[FieldClass22] PASSED [ 82%] 173s tests/test_serialization.py::TestSchemaSerialization::test_serialize_with_missing_param_value PASSED [ 82%] 173s tests/test_serialization.py::TestSchemaSerialization::test_serialize_with_missing_param_callable PASSED [ 82%] 173s tests/test_serialization.py::test_serializing_named_tuple PASSED [ 83%] 173s tests/test_serialization.py::test_serializing_named_tuple_with_meta PASSED [ 83%] 173s tests/test_serialization.py::test_serializing_slice PASSED [ 83%] 173s tests/test_serialization.py::test_nested_field_many_serializing_generator PASSED [ 83%] 173s tests/test_utils.py::test_missing_singleton_copy PASSED [ 83%] 173s tests/test_utils.py::test_get_value_from_object[obj0] PASSED [ 83%] 173s tests/test_utils.py::test_get_value_from_object[obj1] PASSED [ 83%] 173s tests/test_utils.py::test_get_value_from_object[obj2] PASSED [ 83%] 173s tests/test_utils.py::test_get_value_from_object[obj3] PASSED [ 83%] 173s tests/test_utils.py::test_get_value_from_namedtuple_with_default PASSED [ 83%] 173s tests/test_utils.py::test_get_value_for_nested_object PASSED [ 83%] 173s tests/test_utils.py::test_get_value_from_dict PASSED [ 83%] 173s tests/test_utils.py::test_get_value PASSED [ 83%] 173s tests/test_utils.py::test_set_value PASSED [ 84%] 173s tests/test_utils.py::test_is_keyed_tuple PASSED [ 84%] 173s tests/test_utils.py::test_is_collection PASSED [ 84%] 173s tests/test_utils.py::test_rfc_format[value0-Sun, 10 Nov 2013 01:23:45 -0000] PASSED [ 84%] 173s tests/test_utils.py::test_rfc_format[value1-Sun, 10 Nov 2013 01:23:45 +0000] PASSED [ 84%] 173s tests/test_utils.py::test_rfc_format[value2-Sun, 10 Nov 2013 01:23:45 -0600] PASSED [ 84%] 173s tests/test_utils.py::test_isoformat[value0-2013-11-10T01:23:45] PASSED [ 84%] 173s tests/test_utils.py::test_isoformat[value1-2013-11-10T01:23:45.123456+00:00] PASSED [ 84%] 173s tests/test_utils.py::test_isoformat[value2-2013-11-10T01:23:45+00:00] PASSED [ 84%] 173s tests/test_utils.py::test_isoformat[value3-2013-11-10T01:23:45-06:00] PASSED [ 84%] 173s tests/test_utils.py::test_from_rfc[Sun, 10 Nov 2013 01:23:45 -0000-expected0] PASSED [ 84%] 173s tests/test_utils.py::test_from_rfc[Sun, 10 Nov 2013 01:23:45 +0000-expected1] PASSED [ 84%] 173s tests/test_utils.py::test_from_rfc[Sun, 10 Nov 2013 01:23:45 -0600-expected2] PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_datetime[2013-11-10T01:23:45-expected0] PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_datetime[2013-11-10T01:23:45+00:00-expected1] PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_datetime[2013-11-10T01:23:45.123+00:00-expected2] PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_datetime[2013-11-10T01:23:45.123456+00:00-expected3] PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_datetime[2013-11-10T01:23:45-06:00-expected4] PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_time_with_microseconds PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_time_without_microseconds PASSED [ 85%] 173s tests/test_utils.py::test_from_iso_date PASSED [ 85%] 174s tests/test_utils.py::test_from_timestamp[1676386740-expected0] PASSED [ 85%] 174s tests/test_utils.py::test_from_timestamp[1676386740.58-expected1] PASSED [ 85%] 174s tests/test_utils.py::test_from_timestamp_with_negative_value PASSED [ 85%] 174s tests/test_utils.py::test_from_timestamp_with_overflow_value PASSED [ 86%] 174s tests/test_utils.py::test_get_func_args PASSED [ 86%] 174s tests/test_utils.py::test_function_field_using_type_annotation PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[http://example.org] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[https://example.org] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[ftp://example.org] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[ftps://example.org] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[http://example.co.jp] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[http://www.example.com/a%C2%B1b] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[http://www.example.com/~username/] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[http://info.example.com/?fred] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[http://xn--mgbh0fb.xn--kgbechtv/] PASSED [ 86%] 174s tests/test_validate.py::test_url_absolute_valid[http://example.com/blue/red%3Fand+green] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://www.example.com/?array%5Bkey%5D=value] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://xn--rsum-bpad.example.org/] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://123.45.67.8/] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://123.45.67.8:8329/] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://[2001:db8::ff00:42]:8329] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://[2001::1]:8329] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://www.example.com:8000/foo] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://user@example.com] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_valid[http://user:pass@example.com] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_invalid[http:///example.com/] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_invalid[https:///example.com/] PASSED [ 87%] 174s tests/test_validate.py::test_url_absolute_invalid[https://example.org\\] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[https://example.org\n] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[ftp:///example.com/] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[ftps:///example.com/] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[http//example.org] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[http:///] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[http:/example.org] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[foo://example.org] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[../icons/logo.gif] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[http://2001:db8::ff00:42:8329] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[http://[192.168.1.1]:8329] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[abc] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[..] PASSED [ 88%] 174s tests/test_validate.py::test_url_absolute_invalid[/] PASSED [ 89%] 174s tests/test_validate.py::test_url_absolute_invalid[ ] PASSED [ 89%] 174s tests/test_validate.py::test_url_absolute_invalid[] PASSED [ 89%] 174s tests/test_validate.py::test_url_absolute_invalid[None] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[http://example.org] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[http://123.45.67.8/] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[http://example.com/foo/bar/../baz] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[https://example.com/../icons/logo.gif] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[http://example.com/./icons/logo.gif] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[ftp://example.com/../../../../g] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[http://example.com/g?y/./x] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[/foo/bar] PASSED [ 89%] 174s tests/test_validate.py::test_url_relative_valid[/foo?bar] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_valid[/foo?bar#baz] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[http//example.org] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[http://example.org\n] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[suppliers.html] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[../icons/logo.gif] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[icons/logo.gif] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[../.../g] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[...] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[\\] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[ ] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[] PASSED [ 90%] 174s tests/test_validate.py::test_url_relative_invalid[None] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_valid[/foo/bar] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_valid[/foo?bar] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_valid[?bar] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_valid[/foo?bar#baz] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[http//example.org] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[http://example.org\n] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[suppliers.html] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[../icons/logo.gif] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[icons/logo.gif] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[../.../g] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[...] PASSED [ 91%] 174s tests/test_validate.py::test_url_relative_only_invalid[\\] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[ ] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[http://example.org] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[http://123.45.67.8/] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[http://example.com/foo/bar/../baz] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[https://example.com/../icons/logo.gif] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[http://example.com/./icons/logo.gif] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[ftp://example.com/../../../../g] PASSED [ 92%] 174s tests/test_validate.py::test_url_relative_only_invalid[http://example.com/g?y/./x] PASSED [ 92%] 174s tests/test_validate.py::test_url_dont_require_tld_valid[http://example.org] PASSED [ 92%] 174s tests/test_validate.py::test_url_dont_require_tld_valid[http://123.45.67.8/] PASSED [ 92%] 174s tests/test_validate.py::test_url_dont_require_tld_valid[http://example] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_valid[http://example.] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_valid[http://example:80] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_valid[http://user.name:pass.word@example] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_valid[http://example/foo/bar] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_invalid[http//example] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_invalid[http://example\n] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_invalid[http://.example.org] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_invalid[http:///foo/bar] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_invalid[http:// /foo/bar] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_invalid[] PASSED [ 93%] 174s tests/test_validate.py::test_url_dont_require_tld_invalid[None] PASSED [ 93%] 174s tests/test_validate.py::test_url_custom_scheme PASSED [ 94%] 174s tests/test_validate.py::test_url_relative_and_custom_schemes PASSED [ 94%] 174s tests/test_validate.py::test_url_custom_message PASSED [ 94%] 174s tests/test_validate.py::test_url_repr PASSED [ 94%] 174s tests/test_validate.py::test_url_rejects_invalid_relative_usage PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[niceandsimple@example.com] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[NiCeAnDsImPlE@eXaMpLe.CoM] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[very.common@example.com] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[a.little.lengthy.but.fine@a.iana-servers.net] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[disposable.style.email.with+symbol@example.com] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid["very.unusual.@.unusual.com"@example.com] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[!#$%&'*+-/=?^_`{}|~@example.org] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[niceandsimple@[64.233.160.0]] PASSED [ 94%] 174s tests/test_validate.py::test_email_valid[niceandsimple@localhost] PASSED [ 95%] 174s tests/test_validate.py::test_email_valid[jos\xe9@blah.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_valid[\u03b4\u03bf\u03ba.\u03b9\u03bc\u03ae@\u03c0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1.\u03b4\u03bf\u03ba\u03b9\u03bc\u03ae] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[niceandsimple\n@example.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[NiCeAnDsImPlE@eXaMpLe.CoM\n] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[a"b(c)d,e:f;gi[j\\k]l@example.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[just"not"right@example.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[this is"not\x07llowed@example.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[this\\ still\\"not\\\\allowed@example.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid["much.more unusual"@example.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid["very.(),:;<>[]".VERY."very@\\ "very".unusual"@strange.example.com] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[" "@example.org] PASSED [ 95%] 174s tests/test_validate.py::test_email_invalid[user@example] PASSED [ 96%] 174s tests/test_validate.py::test_email_invalid[@nouser.com] PASSED [ 96%] 174s tests/test_validate.py::test_email_invalid[example.com] PASSED [ 96%] 174s tests/test_validate.py::test_email_invalid[user] PASSED [ 96%] 174s tests/test_validate.py::test_email_invalid[] PASSED [ 96%] 174s tests/test_validate.py::test_email_invalid[None] PASSED [ 96%] 174s tests/test_validate.py::test_email_custom_message PASSED [ 96%] 174s tests/test_validate.py::test_email_repr PASSED [ 96%] 174s tests/test_validate.py::test_range_min PASSED [ 96%] 174s tests/test_validate.py::test_range_max PASSED [ 96%] 174s tests/test_validate.py::test_range_custom_message PASSED [ 96%] 174s tests/test_validate.py::test_range_repr PASSED [ 96%] 174s tests/test_validate.py::test_length_min PASSED [ 97%] 174s tests/test_validate.py::test_length_max PASSED [ 97%] 174s tests/test_validate.py::test_length_equal PASSED [ 97%] 174s tests/test_validate.py::test_length_custom_message PASSED [ 97%] 174s tests/test_validate.py::test_length_repr PASSED [ 97%] 174s tests/test_validate.py::test_equal PASSED [ 97%] 174s tests/test_validate.py::test_equal_custom_message PASSED [ 97%] 174s tests/test_validate.py::test_equal_repr PASSED [ 97%] 174s tests/test_validate.py::test_regexp_str PASSED [ 97%] 174s tests/test_validate.py::test_regexp_compile PASSED [ 97%] 174s tests/test_validate.py::test_regexp_custom_message PASSED [ 97%] 174s tests/test_validate.py::test_regexp_repr PASSED [ 97%] 174s tests/test_validate.py::test_predicate PASSED [ 98%] 174s tests/test_validate.py::test_predicate_custom_message PASSED [ 98%] 174s tests/test_validate.py::test_predicate_repr PASSED [ 98%] 174s tests/test_validate.py::test_noneof PASSED [ 98%] 174s tests/test_validate.py::test_noneof_custom_message PASSED [ 98%] 174s tests/test_validate.py::test_noneof_repr PASSED [ 98%] 174s tests/test_validate.py::test_oneof PASSED [ 98%] 174s tests/test_validate.py::test_oneof_options PASSED [ 98%] 174s tests/test_validate.py::test_oneof_text PASSED [ 98%] 174s tests/test_validate.py::test_oneof_custom_message PASSED [ 98%] 174s tests/test_validate.py::test_oneof_repr PASSED [ 98%] 174s tests/test_validate.py::test_containsonly_in_list PASSED [ 98%] 174s tests/test_validate.py::test_contains_only_unhashable_types PASSED [ 99%] 174s tests/test_validate.py::test_containsonly_in_tuple PASSED [ 99%] 174s tests/test_validate.py::test_contains_only_in_string PASSED [ 99%] 174s tests/test_validate.py::test_containsonly_custom_message PASSED [ 99%] 174s tests/test_validate.py::test_containsonly_repr PASSED [ 99%] 174s tests/test_validate.py::test_containsnoneof_error_message PASSED [ 99%] 174s tests/test_validate.py::test_containsnoneof_in_list PASSED [ 99%] 174s tests/test_validate.py::test_containsnoneof_unhashable_types PASSED [ 99%] 174s tests/test_validate.py::test_containsnoneof_in_tuple PASSED [ 99%] 174s tests/test_validate.py::test_containsnoneof_in_string PASSED [ 99%] 174s tests/test_validate.py::test_containsnoneof_custom_message PASSED [ 99%] 174s tests/test_validate.py::test_containsnoneof_mixing_types PASSED [ 99%] 174s tests/test_validate.py::test_and PASSED [100%] 174s 174s =============================== warnings summary =============================== 174s tests/test_deserialization.py::TestFieldDeserialization::test_datetime_list_field_deserialization 174s /tmp/autopkgtest.dn4ovj/build.H1r/src/tests/test_deserialization.py:1293: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). 174s dtimes = dt.datetime.now(), dt.datetime.now(), dt.datetime.utcnow() 174s 174s tests/test_schema.py::test_load_validation_error_stores_input_data_and_valid_data 174s /tmp/autopkgtest.dn4ovj/build.H1r/src/tests/test_schema.py:88: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). 174s "always_valid": dt.datetime.utcnow().isoformat(), 174s 174s tests/test_serialization.py::TestFieldSerialization::test_datetime_list_field 174s /tmp/autopkgtest.dn4ovj/build.H1r/src/tests/test_serialization.py:829: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). 174s obj = DateTimeList([dt.datetime.utcnow(), dt.datetime.now()]) 174s 174s tests/test_serialization.py::TestFieldSerialization::test_list_field_work_with_generator_single_value 174s /tmp/autopkgtest.dn4ovj/build.H1r/src/tests/test_serialization.py:841: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). 174s yield dt.datetime.utcnow() 174s 174s tests/test_serialization.py::TestFieldSerialization::test_list_field_work_with_generators_multiple_values 174s /tmp/autopkgtest.dn4ovj/build.H1r/src/tests/test_serialization.py:850: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). 174s yield from [dt.datetime.utcnow(), dt.datetime.now()] 174s 174s tests/test_serialization.py::TestFieldSerialization::test_datetime_integer_tuple_field 174s /tmp/autopkgtest.dn4ovj/build.H1r/src/tests/test_serialization.py:912: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). 174s obj = DateTimeIntegerTuple((dt.datetime.utcnow(), 42)) 174s 174s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 174s ======================= 1218 passed, 6 warnings in 1.82s ======================= 174s /tmp/autopkgtest.dn4ovj/wrapper.sh: checking for leaked background processes... 174s /tmp/autopkgtest.dn4ovj/wrapper.sh: waiting for tee/cat subprocesses... 174s /tmp/autopkgtest.dn4ovj/wrapper.sh: cleaning up... 174s /tmp/autopkgtest.dn4ovj/wrapper.sh: Exit status: 0 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest [12:47:47]: test unittests: -----------------------] 174s autopkgtest: DBG: testbed executing test finished with exit status 0 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/unittests-stdout /tmp/autopkgtest-work.lunb4519/out/unittests-stdout 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/unittests-stderr /tmp/autopkgtest-work.lunb4519/out/unittests-stderr 174s autopkgtest: DBG: got reply from testbed: ok 174s autopkgtest [12:47:47]: test unittests: - - - - - - - - - - results - - - - - - - - - - 174s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/unittests-artifacts/ /tmp/autopkgtest-work.lunb4519/out/artifacts/ 174s unittests PASS 175s autopkgtest: DBG: got reply from testbed: ok 175s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.dn4ovj/unittests-artifacts', '/tmp/autopkgtest.dn4ovj/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 175s autopkgtest: DBG: testbed command exited with code 0 175s autopkgtest [12:47:48]: test autodep8-python3: preparing testbed 175s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['debhelper-compat (= 13)', 'dh-python', 'python3-all', 'python3-dateutil', 'python3-pytest', 'python3-setuptools', 'python3-simplejson', 'python3-sphinx', 'python3-tz', 'tzdata-legacy', 'build-essential'], deps_new=['python3-all', 'python3-marshmallow'] 175s autopkgtest: DBG: testbed reset 175s autopkgtest: DBG: sending command to testbed: revert 317s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.dn4ovj 317s autopkgtest: DBG: sending command to testbed: print-execute-command 317s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.sxm0p3zk/runcmd 317s autopkgtest: DBG: sending command to testbed: capabilities 317s autopkgtest: DBG: got reply from testbed: ok isolation-machine root-on-testbed revert revert-full-system ok reboot suggested-normal-user=ubuntu 317s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'root-on-testbed', 'revert', 'revert-full-system', 'ok', 'reboot', 'suggested-normal-user=ubuntu', 'has_internet'] 317s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 318s autopkgtest: DBG: testbed command exited with code 0 318s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.dn4ovj/wrapper.sh 318s autopkgtest: DBG: got reply from testbed: ok 318s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/wrapper.sh'], kind short, sout raw, serr pipe, env [] 318s autopkgtest: DBG: testbed command exited with code 0 318s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 318s autopkgtest: DBG: testbed command exited with code 0 318s autopkgtest [12:50:11]: testbed dpkg architecture: s390x 318s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 318s autopkgtest: DBG: testbed command exited with code 0 318s autopkgtest [12:50:11]: testbed apt version: 2.9.30 318s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 318s autopkgtest: DBG: testbed command exited with code 0 318s autopkgtest: DBG: testbed has eatmydata 318s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 319s autopkgtest: DBG: testbed command exited with code 0 319s autopkgtest [12:50:12]: @@@@@@@@@@@@@@@@@@@@ test bed setup 319s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Copyright © 2006-2018 Canonical Ltd.\n# Copyright © 2015-2017 Martin Pitt\n# Copyright © 2017 Steve Langasek\n# Copyright © 2017-2022 Paul Gevers\n# Copyright © 2018 Simon McVittie\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the first suite found in apt sources. We can\'t just rely\n# on /etc/os-release because it doesn\'t allow to distinguish between Debian\n# unstable and testing.\n#\n# This release detection logic should be kept in sync with similar code in the\n# setup-testbed script.\n#\n# For more information on APT data sources see sources.list(5).\n\n# Usage $0\n\nset -eux\n\ndistro=UNKNOWN\nif [ -r /etc/os-release ]; then\n # shellcheck disable=SC1091\n distro=$(. /etc/os-release && echo "${ID:-$distro}")\nfi\n\n# Try guessing the default release from deb822-style format sources.\n#\n# While not mandatory, APT upstream expects distros to follow the\n# .sources naming pattern for the default deb822 sources.\napt_sources="/etc/apt/sources.list.d/$distro.sources"\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'s/^Suites:\\s*(\\w+).*/\\1/Ip\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Try guessing the default release from one-line-style format sources.\napt_sources=/etc/apt/sources.list\nif [ -r "$apt_sources" ]; then\n release=$(sed -En \'/^(deb|deb-src) +(\\[.*\\] *)?(http|https|file):/ { s/\\[.*\\] +//; s/^[^ ]+ +[^ ]* +([^ ]+) +.*$/\\1/p }\' "$apt_sources" | head -n1)\n [ -n "$release" ] && echo "$release" && exit\nfi\n\n# Could not guess the default release\necho "Could not guess the default release from the APT sources." >&2\nexit 1\n'], kind short, sout pipe, serr pipe, env [] 319s autopkgtest: DBG: testbed command exited with code 0 319s autopkgtest [12:50:12]: testbed release detected to be: plucky 319s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured "deb" sources in one-line-style\n# source lists (/etc/apt/sources.list, /etc/apt/sources.list.d/*.list).\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# grep(1) returns 1 if no lines were selected from the input files, which\n# can happen if there are .list files, but they contain no "deb" entries.\n# We don\'t want to fail in this case, hence the "|| true", which we put\n# in a subshell because we want it to affect only the grep invocation.\n{\n if [ -f /etc/apt/sources.list ]; then\n printf \'%s\\0\' /etc/apt/sources.list\n fi\n if [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.list\' -print0 \\\n | LC_ALL=C sort --zero-terminated\n fi\n} | xargs -0 --no-run-if-empty -- sh -c \'grep -h "^deb " "$@" || true\' "$(basename "$0")"\n'], kind short, sout pipe, serr pipe, env [] 319s autopkgtest: DBG: testbed command exited with code 0 319s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# SPDX-License-Identifier: GPL-2.0-or-later\n\n# This script returns the list of configured sources in deb822-style source\n# lists (/etc/apt/sources.list.d/*.sources). Sources are not stripped out of\n# comments, extra blank lines or similar: the output of this script is meant to\n# be consumed by a deb822 parser that is able to correctly handle those.\n# See sources.list(5) for more information on the APT source list formats.\n#\n# This script takes no arguments.\n\nset -eu\n\n# Awk concatenates files making sure stanzas from separate files are separated\n# by a blank line, even if there are no newlines at EOF in the .sources files.\nif [ -d /etc/apt/sources.list.d ]; then\n find /etc/apt/sources.list.d -maxdepth 1 -type f -regex \'.*/[a-zA-Z0-9_.-]+\\.sources\' -print0 \\\n | LC_ALL=C sort --zero-terminated \\\n | xargs -0 --no-run-if-empty -- awk \'FNR == 1 && NR != 1 { print "" } { print }\'\nfi\n'], kind short, sout pipe, serr pipe, env [] 319s autopkgtest: DBG: testbed command exited with code 0 319s autopkgtest: DBG: adding APT source: Types: deb deb-src 319s URIs: http://ftpmaster.internal/ubuntu/ 319s Suites: plucky-proposed 319s Components: main restricted universe multiverse 319s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 319s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" >> "/etc/apt/sources.list.d/autopkgtest-add-apt-release-plucky-proposed.sources"', 'add_apt_source', 'printf', '%s\\n', 'Types: deb deb-src\nURIs: http://ftpmaster.internal/ubuntu/\nSuites: plucky-proposed\nComponents: main restricted universe multiverse\nSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg\n'], kind short, sout raw, serr pipe, env [] 319s autopkgtest: DBG: testbed command exited with code 0 319s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 319s Package: * 319s Pin: release plucky-proposed 319s Pin-Priority: 500 319s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-zz-plucky-proposed-baseline.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 500'], kind short, sout raw, serr pipe, env [] 319s autopkgtest: DBG: testbed command exited with code 0 319s autopkgtest [12:50:12]: updating testbed package index (apt update) 319s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 320s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 320s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 320s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 320s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 320s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 320s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 320s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 320s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 320s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 320s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 320s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 320s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 321s Fetched 1700 kB in 1s (1700 kB/s) 321s Reading package lists... 321s autopkgtest: DBG: testbed command exited with code 0 321s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 321s Package: * 321s Pin: release plucky-proposed 321s Pin-Priority: 100 321s 321s Package: src:sphinx:any 321s Pin: release plucky-proposed 321s Pin-Priority: 995 321s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 321s autopkgtest: DBG: testbed command exited with code 0 321s autopkgtest: DBG: testbed command ['bash', '-ec', 'for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do [ ! -d $d ] || touch -r $d /tmp/autopkgtest.dn4ovj/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 322s autopkgtest: DBG: testbed command exited with code 0 322s autopkgtest: DBG: testbed command ['sh', '-ec', '#!/bin/sh\n# Canonical/Ubuntu specific testbed setup\n\nset -x\n\nRELEASE=$(lsb_release --codename --short 2>/dev/null)\n\n# Make the installed package versions match what is available from the configured\n# repositories, even if a downgrade is required.\n#\n# We may end up with images with packages newer than those available from the\n# repositories when opening a new release (images are created using the\n# previous release dailies as a base, which may include 0-day SRUs, or\n# Launchpad may fail to copy packages, see openssl 3.0.8-1ubuntu2), or when\n# package versions are pulled from the archive.\n#\n# Note: \'release a=\' matches the Suite field in the repository Release file.\ncat >/etc/apt/preferences.d/force-downgrade-to-release.pref <= Focal).\n#\n# Note: autoremove/--autoremove always runs on the entire set of installed\n# packages. Together with --autopurge/purge each removal becomes a purge.\n#\n# Removing \'?obsolete\' packages may remove the running kernel. This is not\n# expected to be an issue.\nif /usr/lib/apt/apt-helper analyze-pattern \'?true\' >/dev/null 2>&1; then\n # DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove \'?obsolete\'\n # Avoid removing the running kernel\n running_kernel_pattern="^linux-.*$(uname -r | sed \'s/\\./\\\\./g\').*"\n obsolete_pkgs="$(apt list \'?obsolete\' 2>/dev/null \\\n | tail -n+2 \\\n | cut -d\'/\' -f1 \\\n | grep -v "${running_kernel_pattern}" || true)"\n DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove ${obsolete_pkgs}\nelse\n # We\'re on an older release (analyze-pattern is not available).\n # Still do an autopurge to get rid of packages that got orphaned\n # by downgrades.\n eatmydata apt-get -y autoremove --purge\nfi\n\n# compatibility with old Jenkins testbeds for trusty\nif grep -q trusty /etc/lsb-release; then apt-get update || (sleep 10; apt-get update); apt-get install -y build-essential; fi\n\n# these packages really break tests, purge them if we use standard cloud images\n# (on lcy01)\nfor p in unattended-upgrades lxd lxd-client snapd; do\n [ ! -d /usr/share/doc/$p ] || $(which eatmydata || true) apt-get purge --auto-remove -y $p\ndone\n\nif type iptables >/dev/null 2>&1; then\n cat < /etc/rc.local\n#!/bin/sh\n\n# work around broken PTMU; LP: #1572026, RT#90771\niptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu || true\n\n# These addresses are used at least by rust-reqwest and should not be reachable\n# See https://bugs.launchpad.net/ubuntu/+source/rust-reqwest/+bug/2080346\niptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP || true\niptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP || true\nEOF\n chmod 755 /etc/rc.local\n # shellcheck disable=SC1091\n . /etc/rc.local\nfi\n\n# work around broken tty on ppc64el instances (LP: #1607075)\nif [ "$(uname -m)" = ppc64le ] && [ "$(systemctl is-active keyboard-setup.service 2>/dev/null|| true)" = failed ]; then\n systemctl reset-failed keyboard-setup.service\n systemctl mask keyboard-setup.service\nfi\n\n# work around late urandom pool initialization (LP: #1622893)\nif [ -d /run/systemd/system ] && systemd-detect-virt --quiet --vm; then\n mkdir -p /etc/systemd/system/systemd-random-seed.service.d/\n cat < /etc/systemd/system/systemd-random-seed.service.d/fakeentropy.conf\n[Service]\nExecStart=/usr/bin/perl -E \'open \\$\\$f, "/bin/bash" or die; open \\$\\$rnd, ">/dev/random" or die; for (\\$\\$i = 0; \\$\\$i < 10; ++\\$\\$i) {read \\$\\$f, \\$\\$d, 64; ioctl \\$\\$rnd, 0x40085203, pack("ii", 64*8, 64) . \\$\\$d}\'\nEOF\nfi\n\n# set compressor to lz4 where supported, we care about compression speed\nif grep -q lz4 /etc/initramfs-tools/initramfs.conf; then\n echo COMPRESS=lz4 > /etc/initramfs-tools/conf.d/lz4\nfi'], kind install, sout raw, serr raw, env ['AUTOPKGTEST_IS_SETUP_COMMAND=1', 'AUTOPKGTEST_NORMAL_USER=ubuntu', 'ADT_NORMAL_USER=ubuntu'] 322s + lsb_release --codename --short 322s + RELEASE=plucky 322s + cat 322s + [ plucky != trusty ] 322s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 322s Reading package lists... 322s Building dependency tree... 322s Reading state information... 322s Calculating upgrade... 322s The following packages were automatically installed and are no longer required: 322s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 322s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 322s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 322s linux-tools-6.11.0-8-generic 322s Use 'sudo apt autoremove' to remove them. 322s The following packages will be upgraded: 322s iproute2 liblsof0 libp11-kit0 lsof 322s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 322s Need to get 1791 kB of archives. 322s After this operation, 17.4 kB of additional disk space will be used. 322s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 323s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 323s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 323s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 323s Preconfiguring packages ... 323s Fetched 1791 kB in 1s (2618 kB/s) 323s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 323s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 323s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 323s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 323s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 324s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 324s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 324s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 324s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 324s Setting up liblsof0 (4.99.4+dfsg-1) ... 324s Setting up iproute2 (6.13.0-1ubuntu1) ... 324s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 324s Setting up lsof (4.99.4+dfsg-1) ... 324s Processing triggers for man-db (2.13.0-1) ... 324s Processing triggers for libc-bin (2.40-4ubuntu1) ... 324s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 324s + /usr/lib/apt/apt-helper analyze-pattern ?true 324s + uname -r 324s + sed s/\./\\./g 324s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 324s + apt list ?obsolete 324s + + tailcut -d/ -f1 324s -n+2 324s + grep -v ^linux-.*6\.12\.0-15-generic.* 325s + true 325s + obsolete_pkgs= 325s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 325s Reading package lists... 325s Building dependency tree... 325s Reading state information... 325s The following packages will be REMOVED: 325s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 325s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 325s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 325s linux-tools-6.11.0-8-generic* 325s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 325s After this operation, 167 MB disk space will be freed. 325s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 325s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 325s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 325s Removing libpython3.12t64:s390x (3.12.9-1) ... 325s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 325s Removing libnsl2:s390x (1.3.0-3build3) ... 325s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 325s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 325s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 326s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 327s Processing triggers for libc-bin (2.40-4ubuntu1) ... 327s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 327s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 327s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 327s + grep -q trusty /etc/lsb-release 327s + [ ! -d /usr/share/doc/unattended-upgrades ] 327s + [ ! -d /usr/share/doc/lxd ] 327s + [ ! -d /usr/share/doc/lxd-client ] 327s + [ ! -d /usr/share/doc/snapd ] 327s + type iptables 327s + cat 327s + chmod 755 /etc/rc.local 327s + . /etc/rc.local 327s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 327s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 327s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 327s + uname -m 327s + [ s390x = ppc64le ] 327s + [ -d /run/systemd/system ] 327s + systemd-detect-virt --quiet --vm 327s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 327s + cat 327s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 327s + echo COMPRESS=lz4 327s autopkgtest: DBG: testbed command exited with code 0 327s autopkgtest [12:50:20]: upgrading testbed (apt dist-upgrade and autopurge) 327s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'dist-upgrade'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 327s Reading package lists... 327s Building dependency tree... 327s Reading state information... 327s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 327s Starting 2 pkgProblemResolver with broken count: 0 327s Done 328s Entering ResolveByKeep 328s 328s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 328s autopkgtest: DBG: testbed command exited with code 0 328s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 328s Reading package lists... 328s Building dependency tree... 328s Reading state information... 329s Starting pkgProblemResolver with broken count: 0 329s Starting 2 pkgProblemResolver with broken count: 0 329s Done 329s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 329s autopkgtest: DBG: testbed command exited with code 0 329s autopkgtest: DBG: testbed command ['bash', '-ec', '[ ! -e /run/autopkgtest_no_reboot.stamp ] || exit 0;for d in /boot /boot/efi /boot/grub /etc/init /etc/init.d /etc/systemd/system /lib/systemd/system; do s=/tmp/autopkgtest.dn4ovj/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 329s autopkgtest: DBG: testbed command exited with code 1 329s autopkgtest [12:50:22]: rebooting testbed after setup commands that affected boot 329s autopkgtest: DBG: sending command to testbed: reboot 351s autopkgtest: DBG: got reply from testbed: ok 351s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 351s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 351s autopkgtest: DBG: testbed command exited with code 0 351s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot 351s autopkgtest: DBG: got reply from testbed: ok 351s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 351s autopkgtest: DBG: testbed command exited with code 0 351s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 351s autopkgtest: DBG: testbed command exited with code 0 351s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 352s autopkgtest: DBG: testbed command exited with code 0 352s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 352s autopkgtest: DBG: testbed command exited with code 0 352s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare 352s autopkgtest: DBG: got reply from testbed: ok 352s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 352s autopkgtest: DBG: testbed command exited with code 0 352s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 352s autopkgtest: DBG: testbed command exited with code 0 352s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 352s autopkgtest: DBG: testbed command exited with code 0 352s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dn4ovj/testbed-packages"], kind short, sout raw, serr pipe, env [] 353s autopkgtest: DBG: testbed command exited with code 0 353s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/testbed-packages /tmp/autopkgtest-work.lunb4519/out/testbed-packages 353s autopkgtest: DBG: got reply from testbed: ok 353s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 353s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 353s autopkgtest: DBG: testbed command exited with code 0 353s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot 353s autopkgtest: DBG: got reply from testbed: ok 353s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 353s autopkgtest: DBG: testbed command exited with code 0 353s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 354s autopkgtest: DBG: testbed command exited with code 0 354s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 354s autopkgtest: DBG: testbed command exited with code 0 354s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj'], kind short, sout raw, serr pipe, env [] 354s autopkgtest: DBG: testbed command exited with code 0 354s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare 354s autopkgtest: DBG: got reply from testbed: ok 354s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 354s autopkgtest: DBG: testbed command exited with code 0 354s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.dn4ovj/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 354s autopkgtest: DBG: testbed command exited with code 0 354s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 355s autopkgtest: DBG: testbed command exited with code 0 355s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 355s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-marshmallow'] 355s autopkgtest: DBG: install-deps: satisfying python3-all, python3-marshmallow 355s autopkgtest: DBG: can use apt-get on testbed: True 355s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-all, python3-marshmallow'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 355s Reading package lists... 355s Building dependency tree... 355s Reading state information... 355s Starting pkgProblemResolver with broken count: 0 355s Starting 2 pkgProblemResolver with broken count: 0 355s Done 355s The following NEW packages will be installed: 355s libnsl2 libpython3.12-minimal libpython3.12-stdlib python3-all 355s python3-marshmallow python3-packaging python3.12 python3.12-minimal 356s 0 upgraded, 8 newly installed, 0 to remove and 0 not upgraded. 356s Need to get 6124 kB of archives. 356s After this operation, 24.4 MB of additional disk space will be used. 356s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 356s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 356s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 356s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 357s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 357s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 357s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 357s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-marshmallow all 3.20.1-1.1 [46.0 kB] 357s Fetched 6124 kB in 1s (5221 kB/s) 357s Selecting previously unselected package libpython3.12-minimal:s390x. 357s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 357s Preparing to unpack .../0-libpython3.12-minimal_3.12.9-1_s390x.deb ... 357s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 357s Selecting previously unselected package python3.12-minimal. 357s Preparing to unpack .../1-python3.12-minimal_3.12.9-1_s390x.deb ... 357s Unpacking python3.12-minimal (3.12.9-1) ... 357s Selecting previously unselected package libnsl2:s390x. 357s Preparing to unpack .../2-libnsl2_1.3.0-3build3_s390x.deb ... 357s Unpacking libnsl2:s390x (1.3.0-3build3) ... 357s Selecting previously unselected package libpython3.12-stdlib:s390x. 357s Preparing to unpack .../3-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 357s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 357s Selecting previously unselected package python3.12. 357s Preparing to unpack .../4-python3.12_3.12.9-1_s390x.deb ... 357s Unpacking python3.12 (3.12.9-1) ... 357s Selecting previously unselected package python3-all. 357s Preparing to unpack .../5-python3-all_3.13.1-1~exp2_s390x.deb ... 357s Unpacking python3-all (3.13.1-1~exp2) ... 357s Selecting previously unselected package python3-packaging. 357s Preparing to unpack .../6-python3-packaging_24.2-1_all.deb ... 357s Unpacking python3-packaging (24.2-1) ... 357s Selecting previously unselected package python3-marshmallow. 357s Preparing to unpack .../7-python3-marshmallow_3.20.1-1.1_all.deb ... 357s Unpacking python3-marshmallow (3.20.1-1.1) ... 357s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 357s Setting up python3-packaging (24.2-1) ... 358s Setting up libnsl2:s390x (1.3.0-3build3) ... 358s Setting up python3.12-minimal (3.12.9-1) ... 358s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 358s Setting up python3.12 (3.12.9-1) ... 360s Setting up python3-marshmallow (3.20.1-1.1) ... 360s Setting up python3-all (3.13.1-1~exp2) ... 360s Processing triggers for man-db (2.13.0-1) ... 360s Processing triggers for libc-bin (2.40-4ubuntu1) ... 360s Processing triggers for systemd (257.2-3ubuntu1) ... 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-marshmallow'], kind short, sout pipe, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.dn4ovj/autodep8-python3-packages.all"], kind short, sout raw, serr pipe, env [] 361s autopkgtest: DBG: testbed command exited with code 0 361s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/autodep8-python3-packages.all /tmp/autopkgtest-work.lunb4519/out/autodep8-python3-packages.all 361s autopkgtest: DBG: got reply from testbed: ok 361s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.dn4ovj/build.H1r/src'], kind short, sout raw, serr raw, env [] 361s autopkgtest: DBG: testbed command exited with code 1 361s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.dn4ovj/build.H1r'], kind short, sout raw, serr pipe, env [] 362s autopkgtest: DBG: testbed command exited with code 0 362s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.lunb4519/out/tests-tree/ /tmp/autopkgtest.dn4ovj/build.H1r/src/ 362s autopkgtest: DBG: got reply from testbed: ok 362s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.dn4ovj/build.H1r/src'], kind short, sout raw, serr pipe, env [] 363s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest [12:50:56]: test autodep8-python3: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import marshmallow; print(marshmallow)" ; done 363s autopkgtest [12:50:56]: test autodep8-python3: [----------------------- 363s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.dn4ovj/wrapper.sh --debug --artifacts=/tmp/autopkgtest.dn4ovj/autodep8-python3-artifacts --chdir=/tmp/autopkgtest.dn4ovj/build.H1r/src --env=AUTOPKGTEST_TESTBED_ARCH=s390x --env=AUTOPKGTEST_TEST_ARCH=s390x --env=DEB_BUILD_OPTIONS=parallel=2 --env=DEBIAN_FRONTEND=noninteractive --env=LANG=C.UTF-8 --unset-env=LANGUAGE --unset-env=LC_ADDRESS --unset-env=LC_ALL --unset-env=LC_COLLATE --unset-env=LC_CTYPE --unset-env=LC_IDENTIFICATION --unset-env=LC_MEASUREMENT --unset-env=LC_MESSAGES --unset-env=LC_MONETARY --unset-env=LC_NAME --unset-env=LC_NUMERIC --unset-env=LC_PAPER --unset-env=LC_TELEPHONE --unset-env=LC_TIME --script-pid-file=/tmp/autopkgtest_script_pid --source-profile --stderr=/tmp/autopkgtest.dn4ovj/autodep8-python3-stderr --stdout=/tmp/autopkgtest.dn4ovj/autodep8-python3-stdout --tmp=/tmp/autopkgtest.dn4ovj/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import marshmallow; print(marshmallow)" ; done\''], kind test, sout raw, serr raw, env [] 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.dn4ovj/autodep8-python3-artifacts 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: changing to directory: /tmp/autopkgtest.dn4ovj/build.H1r/src 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: LANG=C.UTF-8 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LANGUAGE 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_ADDRESS 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_ALL 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_COLLATE 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_CTYPE 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_IDENTIFICATION 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_MEASUREMENT 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_MESSAGES 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_MONETARY 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_NAME 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_NUMERIC 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_PAPER 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_TELEPHONE 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: unsetting environment: LC_TIME 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: pretending to be a login shell 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: will write standard error to /tmp/autopkgtest.dn4ovj/autodep8-python3-stderr 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: will write stdout to /tmp/autopkgtest.dn4ovj/autodep8-python3-stdout 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.dn4ovj/autopkgtest_tmp 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: command to run: bash -ec set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import marshmallow; print(marshmallow)" ; done 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: copying /tmp/tmp.iwt0e0dbcL/out to stdout and file: /tmp/autopkgtest.dn4ovj/autodep8-python3-stdout 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: copying /tmp/tmp.iwt0e0dbcL/err to standard error and file: /tmp/autopkgtest.dn4ovj/autodep8-python3-stdout 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: writing script pid 1322 to /tmp/autopkgtest_script_pid 363s Testing with python3.12: 363s 363s Testing with python3.13: 363s 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: checking for leaked background processes... 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: waiting for tee/cat subprocesses... 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: cleaning up... 363s /tmp/autopkgtest.dn4ovj/wrapper.sh: Exit status: 0 363s autopkgtest: DBG: testbed command exited with code 0 363s autopkgtest [12:50:56]: test autodep8-python3: -----------------------] 363s autopkgtest: DBG: testbed executing test finished with exit status 0 363s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/autodep8-python3-stdout /tmp/autopkgtest-work.lunb4519/out/autodep8-python3-stdout 363s autopkgtest: DBG: got reply from testbed: ok 363s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/autodep8-python3-stderr /tmp/autopkgtest-work.lunb4519/out/autodep8-python3-stderr 363s autopkgtest: DBG: got reply from testbed: ok 364s autodep8-python3 PASS (superficial) 364s autopkgtest [12:50:57]: test autodep8-python3: - - - - - - - - - - results - - - - - - - - - - 364s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.dn4ovj/autodep8-python3-artifacts/ /tmp/autopkgtest-work.lunb4519/out/artifacts/ 364s autopkgtest: DBG: got reply from testbed: ok 364s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.dn4ovj/autodep8-python3-artifacts', '/tmp/autopkgtest.dn4ovj/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 364s autopkgtest: DBG: testbed command exited with code 0 364s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 364s autopkgtest [12:50:57]: @@@@@@@@@@@@@@@@@@@@ summary 364s unittests PASS 364s autodep8-python3 PASS (superficial) 364s autopkgtest: DBG: testbed stop 364s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.dn4ovj 364s autopkgtest: DBG: sending command to testbed: close 382s autopkgtest: DBG: got reply from testbed: ok 382s autopkgtest: DBG: sending command to testbed: quit 382s nova [W] Using flock in prodstack6-s390x 382s Creating nova instance adt-plucky-s390x-python-marshmallow-20250219-124453-juju-7f2275-prod-proposed-migration-environment-15-99b6aabe-51c6-4fd1-9ac6-ea72e2a15ceb from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 382s nova [W] Timed out waiting for c58673f9-3f7b-49df-b806-277c1d6be7be to get deleted. 382s nova [W] Using flock in prodstack6-s390x 382s Creating nova instance adt-plucky-s390x-python-marshmallow-20250219-124453-juju-7f2275-prod-proposed-migration-environment-15-99b6aabe-51c6-4fd1-9ac6-ea72e2a15ceb from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 382s nova [W] Timed out waiting for 7fda6de4-25db-469a-87c8-07cbaa40f998 to get deleted.