0s autopkgtest: DBG: testbed init 0s autopkgtest [04:29:09]: starting date and time: 2025-02-19 04:29:09+0000 0s autopkgtest [04:29:09]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [04:29:09]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.4lr1d2ol/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:python-click --apt-upgrade python-renault-api --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=python-click/8.2.0-1 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-10.secgroup --name adt-plucky-s390x-python-renault-api-20250219-042908-juju-7f2275-prod-proposed-migration-environment-15-1389e687-b4a0-4eef-a279-01c76613f31e --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 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.IOzCcs 103s autopkgtest: DBG: sending command to testbed: print-execute-command 103s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.gawbkmp1/runcmd 103s autopkgtest: DBG: sending command to testbed: capabilities 103s autopkgtest: DBG: got reply from testbed: ok revert-full-system revert isolation-machine reboot suggested-normal-user=ubuntu root-on-testbed 103s autopkgtest: DBG: testbed capabilities: ['revert-full-system', 'revert', 'isolation-machine', 'reboot', 'suggested-normal-user=ubuntu', 'root-on-testbed', 'has_internet'] 103s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IOzCcs'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.IOzCcs/wrapper.sh 103s autopkgtest: DBG: got reply from testbed: ok 103s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IOzCcs/wrapper.sh'], kind short, sout raw, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest [04:30:52]: testbed dpkg architecture: s390x 103s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [04:30:53]: testbed apt version: 2.9.29 104s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed has eatmydata 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [04:30:53]: @@@@@@@@@@@@@@@@@@@@ test bed setup 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [04:30:53]: testbed release detected to be: None 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s 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 [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: adding APT source: Types: deb deb-src 104s URIs: http://ftpmaster.internal/ubuntu/ 104s Suites: plucky-proposed 104s Components: main restricted universe multiverse 104s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 104s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 105s Package: * 105s Pin: release plucky-proposed 105s Pin-Priority: 500 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [04:30:54]: updating testbed package index (apt update) 105s 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'] 105s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 105s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 105s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 105s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 106s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [79.1 kB] 106s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [14.6 kB] 106s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [788 kB] 106s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 106s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [98.8 kB] 106s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 106s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [656 kB] 106s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [5192 B] 106s Fetched 1755 kB in 1s (1790 kB/s) 107s Reading package lists... 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 107s Package: * 107s Pin: release plucky-proposed 107s Pin-Priority: 100 107s 107s Package: src:python-click:any 107s Pin: release plucky-proposed 107s Pin-Priority: 995 107s 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:python-click:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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.IOzCcs/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 107s autopkgtest: DBG: testbed command exited with code 0 107s 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'] 107s + lsb_release --codename --short 107s Reading package lists... 107s Building dependency tree...+ RELEASE=plucky 107s + cat 107s + [ plucky != trusty ] 107s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 107s 107s Reading state information... 107s Calculating upgrade... 107s The following packages were automatically installed and are no longer required: 107s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 107s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 107s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 107s linux-tools-6.11.0-8-generic 107s Use 'sudo apt autoremove' to remove them. 107s The following packages will be upgraded: 107s dhcpcd-base s390-tools s390-tools-data s390-tools-signed 108s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 108s Need to get 5637 kB of archives. 108s After this operation, 54.3 kB of additional disk space will be used. 108s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dhcpcd-base s390x 1:10.1.0-7 [219 kB] 108s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-data all 2.37.0-0ubuntu2 [20.4 kB] 108s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools s390x 2.37.0-0ubuntu2 [5385 kB] 108s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x s390-tools-signed all 2.37.0-0ubuntu2 [12.4 kB] 109s Fetched 5637 kB in 1s (6796 kB/s) 109s (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 ... 80980 files and directories currently installed.) 109s Preparing to unpack .../dhcpcd-base_1%3a10.1.0-7_s390x.deb ... 109s Unpacking dhcpcd-base (1:10.1.0-7) over (1:10.1.0-6) ... 109s Preparing to unpack .../s390-tools-data_2.37.0-0ubuntu2_all.deb ... 109s Unpacking s390-tools-data (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 109s Preparing to unpack .../s390-tools_2.37.0-0ubuntu2_s390x.deb ... 109s Unpacking s390-tools (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 109s Preparing to unpack .../s390-tools-signed_2.37.0-0ubuntu2_all.deb ... 109s Unpacking s390-tools-signed (2.37.0-0ubuntu2) over (2.37.0-0ubuntu1) ... 109s Setting up s390-tools-signed (2.37.0-0ubuntu2) ... 109s Setting up dhcpcd-base (1:10.1.0-7) ... 109s Setting up s390-tools-data (2.37.0-0ubuntu2) ... 109s Setting up s390-tools (2.37.0-0ubuntu2) ... 110s Processing triggers for man-db (2.13.0-1) ... 111s Processing triggers for initramfs-tools (0.145ubuntu2) ... 111s update-initramfs: Generating /boot/initrd.img-6.12.0-15-generic 111s W: No lz4 in /usr/bin:/sbin:/bin, using gzip 115s Using config file '/etc/zipl.conf' 115s Building bootmap in '/boot' 115s Adding IPL section 'ubuntu' (default) 116s Preparing boot device for LD-IPL: vda (0000). 116s Done. 116s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 116s + /usr/lib/apt/apt-helper analyze-pattern ?true 116s + uname -r 116s + sed s/\./\\./g 116s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 116s + apt list ?obsolete 116s + tail -n+2 116s + + grep -v ^linux-.*6\.12\.0-15-generic.* 116s cut -d/ -f1 116s + true 116s + obsolete_pkgs= 116s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 116s Reading package lists... 116s Building dependency tree... 116s Reading state information... 116s The following packages will be REMOVED: 116s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 116s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 116s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 116s linux-tools-6.11.0-8-generic* 116s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 116s After this operation, 167 MB disk space will be freed. 116s (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 ... 80981 files and directories currently installed.) 116s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 116s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 116s Removing libpython3.12t64:s390x (3.12.9-1) ... 116s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 116s Removing libnsl2:s390x (1.3.0-3build3) ... 116s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 117s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 117s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 118s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s Processing triggers for libc-bin (2.40-4ubuntu1) ... 118s (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 ... 55881 files and directories currently installed.) 118s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 118s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 118s + grep -q trusty /etc/lsb-release 118s + [ ! -d /usr/share/doc/unattended-upgrades ] 118s + [ ! -d /usr/share/doc/lxd ] 118s + [ ! -d /usr/share/doc/lxd-client ] 118s + [ ! -d /usr/share/doc/snapd ] 118s + type iptables 118s + cat 118s + chmod 755 /etc/rc.local 118s + . /etc/rc.local 118s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 118s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 118s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 118s + uname -m 118s + [ s390x = ppc64le ] 118s + [ -d /run/systemd/system ] 118s + systemd-detect-virt --quiet --vm 118s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 118s + cat 118s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 118s + echo COMPRESS=lz4 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest [04:31:07]: upgrading testbed (apt dist-upgrade and autopurge) 118s 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'] 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 119s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 119s Entering ResolveByKeep 119s 119s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s autopkgtest: DBG: testbed command exited with code 0 119s 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'] 120s Reading package lists... 120s Building dependency tree... 120s Reading state information... 120s Starting pkgProblemResolver with broken count: 0 120s Starting 2 pkgProblemResolver with broken count: 0 120s Done 120s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 120s autopkgtest: DBG: testbed command exited with code 0 120s 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.IOzCcs/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 121s autopkgtest: DBG: testbed command exited with code 1 121s autopkgtest [04:31:10]: rebooting testbed after setup commands that affected boot 121s autopkgtest: DBG: sending command to testbed: reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IOzCcs'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.IOzCcs/autopkgtest-reboot 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IOzCcs'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.IOzCcs/autopkgtest-reboot-prepare 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest [04:31:30]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 141s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.IOzCcs/testbed-packages"], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IOzCcs/testbed-packages /tmp/autopkgtest-work.4lr1d2ol/out/testbed-packages 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IOzCcs'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.IOzCcs/autopkgtest-reboot 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.IOzCcs'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.IOzCcs/autopkgtest-reboot-prepare 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.IOzCcs/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: Binaries: initialising 143s autopkgtest [04:31:32]: @@@@@@@@@@@@@@@@@@@@ apt-source python-renault-api 143s autopkgtest: DBG: blame += python-renault-api 143s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 143s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-renault-api'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-renault-api$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-renault-api=0.2.9-1'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: install_deps: deps_new=[] 144s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s 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.IOzCcs/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-renault-api=0.2.9-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-renault-api_*.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=python-click/8.2.0-1'] 145s + cd / 145s + mktemp -d /tmp/autopkgtest.IOzCcs/build.XXX 145s + builddir=/tmp/autopkgtest.IOzCcs/build.Q4y 145s + cd /tmp/autopkgtest.IOzCcs/build.Q4y 145s + apt-get source -d -q --only-source python-renault-api=0.2.9-1 145s + OUT=Reading package lists... 145s NOTICE: 'python-renault-api' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/homeassistant-team/deps/python-renault-api.git 145s Please use: 145s git clone https://salsa.debian.org/homeassistant-team/deps/python-renault-api.git 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 167 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (dsc) [2754 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (tar) [162 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (diff) [2500 B] 145s Fetched 167 kB in 0s (351 kB/s) 145s Download complete and in download only mode 145s + [ -n ] 145s + + echo Reading package lists... 145s NOTICE: 'python-renault-api' packaging is maintained in the 'Git' version control system at: 145s https://salsa.debian.org/homeassistant-team/deps/python-renault-api.git 145s Please use: 145s git clone https://salsa.debian.org/homeassistant-team/deps/python-renault-api.git 145s to retrieve the latest (possibly unreleased) updates to the package. 145s Need to get 167 kB of source archives. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (dsc) [2754 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (tar) [162 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (diff) [2500 B] 145s Fetched 167 kB in 0s (351 kB/s) 145s Download complete and in download only mode 145s grep ^Get: 145s Get:1 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (dsc) [2754 B] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (tar) [162 kB] 145s Get:3 http://ftpmaster.internal/ubuntu plucky/universe python-renault-api 0.2.9-1 (diff) [2500 B] 145s + dpkg-source -x python-renault-api_0.2.9-1.dsc src 145s gpgv: Signature made Sat Jan 11 20:30:11 2025 UTC 145s gpgv: using RSA key FB8ACFA78C726089C38AD0269605A1098C63B92A 145s gpgv: Can't check signature: No public key 145s dpkg-source: warning: cannot verify inline signature for ./python-renault-api_0.2.9-1.dsc: no acceptable signature found 145s + chmod -R a+rX . 145s + cd src/. 145s + pwd 145s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [04:31:34]: testing package python-renault-api version 0.2.9-1 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IOzCcs/build.Q4y/src/debian/ /tmp/autopkgtest-work.4lr1d2ol/out/pkg/debian/ 145s autopkgtest: DBG: got reply from testbed: ok 145s autopkgtest: DBG: processing dependency python3-aiohttp 145s autopkgtest: DBG: processing dependency python3-aioresponses 145s autopkgtest: DBG: processing dependency python3-all 145s autopkgtest: DBG: processing dependency python3-click 145s autopkgtest: DBG: processing dependency python3-dateparser 145s autopkgtest: DBG: processing dependency python3-jwt 145s autopkgtest: DBG: processing dependency python3-marshmallow 145s autopkgtest: DBG: processing dependency python3-marshmallow-dataclass 145s autopkgtest: DBG: processing dependency python3-pytest 145s autopkgtest: DBG: processing dependency python3-pytest-asyncio 145s autopkgtest: DBG: processing dependency python3-tabulate 145s autopkgtest: DBG: processing dependency python3-typeguard 145s autopkgtest: DBG: processing dependency @ 145s autopkgtest: DBG: synthesised dependency python3-renault-api 145s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-aiohttp', 'python3-aioresponses', 'python3-all', 'python3-click', 'python3-dateparser', 'python3-jwt', 'python3-marshmallow', 'python3-marshmallow-dataclass', 'python3-pytest', 'python3-pytest-asyncio', 'python3-tabulate', 'python3-typeguard', 'python3-renault-api'] 145s autopkgtest [04:31:34]: build not needed 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IOzCcs/build.Q4y/src/ /tmp/autopkgtest-work.4lr1d2ol/out/tests-tree/ 146s autopkgtest: DBG: got reply from testbed: ok 146s autopkgtest: DBG: processing dependency python3-aiohttp 146s autopkgtest: DBG: processing dependency python3-aioresponses 146s autopkgtest: DBG: processing dependency python3-all 146s autopkgtest: DBG: processing dependency python3-click 146s autopkgtest: DBG: processing dependency python3-dateparser 146s autopkgtest: DBG: processing dependency python3-jwt 146s autopkgtest: DBG: processing dependency python3-marshmallow 146s autopkgtest: DBG: processing dependency python3-marshmallow-dataclass 146s autopkgtest: DBG: processing dependency python3-pytest 146s autopkgtest: DBG: processing dependency python3-pytest-asyncio 146s autopkgtest: DBG: processing dependency python3-tabulate 146s autopkgtest: DBG: processing dependency python3-typeguard 146s autopkgtest: DBG: processing dependency @ 146s autopkgtest: DBG: synthesised dependency python3-renault-api 146s autopkgtest: DBG: Test defined: name run-tests path debian/tests/run-tests command "None" restrictions [] features [] depends ['python3-aiohttp', 'python3-aioresponses', 'python3-all', 'python3-click', 'python3-dateparser', 'python3-jwt', 'python3-marshmallow', 'python3-marshmallow-dataclass', 'python3-pytest', 'python3-pytest-asyncio', 'python3-tabulate', 'python3-typeguard', 'python3-renault-api'] 146s autopkgtest [04:31:35]: test run-tests: preparing testbed 146s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-aiohttp', 'python3-aioresponses', 'python3-all', 'python3-click', 'python3-dateparser', 'python3-jwt', 'python3-marshmallow', 'python3-marshmallow-dataclass', 'python3-pytest', 'python3-pytest-asyncio', 'python3-tabulate', 'python3-typeguard', 'python3-renault-api'] 146s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 146s autopkgtest: DBG: install_deps: deps_new=['python3-aiohttp', 'python3-aioresponses', 'python3-all', 'python3-click', 'python3-dateparser', 'python3-jwt', 'python3-marshmallow', 'python3-marshmallow-dataclass', 'python3-pytest', 'python3-pytest-asyncio', 'python3-tabulate', 'python3-typeguard', 'python3-renault-api'] 146s autopkgtest: DBG: install-deps: satisfying python3-aiohttp, python3-aioresponses, python3-all, python3-click, python3-dateparser, python3-jwt, python3-marshmallow, python3-marshmallow-dataclass, python3-pytest, python3-pytest-asyncio, python3-tabulate, python3-typeguard, python3-renault-api 146s autopkgtest: DBG: can use apt-get on testbed: True 146s 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-aiohttp, python3-aioresponses, python3-all, python3-click, python3-dateparser, python3-jwt, python3-marshmallow, python3-marshmallow-dataclass, python3-pytest, python3-pytest-asyncio, python3-tabulate, python3-typeguard, python3-renault-api'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 146s Reading package lists... 146s Building dependency tree... 146s Reading state information... 146s Starting pkgProblemResolver with broken count: 0 146s Starting 2 pkgProblemResolver with broken count: 0 146s Done 147s The following NEW packages will be installed: 147s libnsl2 libpython3.12-minimal libpython3.12-stdlib python3-aiohappyeyeballs 147s python3-aiohttp python3-aioresponses python3-aiosignal python3-all 147s python3-async-generator python3-async-timeout python3-click 147s python3-dateparser python3-dateutil python3-frozenlist python3-iniconfig 147s python3-marshmallow python3-marshmallow-dataclass python3-multidict 147s python3-mypy-extensions python3-packaging python3-pluggy python3-pytest 147s python3-pytest-asyncio python3-pytz python3-regex python3-renault-api 147s python3-tabulate python3-typing-inspect python3-tz python3-tzlocal 147s python3-yarl python3.12 python3.12-minimal 147s 0 upgraded, 33 newly installed, 0 to remove and 0 not upgraded. 147s Need to get 8014 kB of archives. 147s After this operation, 36.4 MB of additional disk space will be used. 147s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 148s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 148s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 148s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 148s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 148s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aiohappyeyeballs all 2.4.6-1 [10.5 kB] 148s Get:7 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-multidict s390x 6.1.0-1build1 [38.4 kB] 148s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-yarl s390x 1.13.1-1build1 [122 kB] 148s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-async-timeout all 5.0.1-1 [6830 B] 148s Get:10 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-frozenlist s390x 1.5.0-1build1 [64.2 kB] 148s Get:11 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aiosignal all 1.3.2-1 [5182 B] 148s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aiohttp s390x 3.10.11-1 [363 kB] 148s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 148s Get:14 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-aioresponses all 0.7.6-2 [10.9 kB] 148s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 148s Get:16 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-async-generator all 1.10-4 [17.5 kB] 148s Get:17 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-click all 8.2.0-1 [81.9 kB] 148s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 148s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-regex s390x 0.1.20241106-1 [317 kB] 148s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 148s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 148s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tzlocal all 5.2-1.1 [20.5 kB] 148s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-dateparser all 1.2.0-4 [180 kB] 148s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 148s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-marshmallow all 3.20.1-1.1 [46.0 kB] 148s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mypy-extensions all 1.0.0-1 [6148 B] 148s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-typing-inspect all 0.9.0-1 [10.7 kB] 148s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-marshmallow-dataclass all 8.5.14-1 [16.4 kB] 148s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 148s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 148s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-asyncio all 0.25.1-1 [17.0 kB] 148s Get:32 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-renault-api all 0.2.9-1 [33.5 kB] 148s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tabulate all 0.9.0-1 [45.3 kB] 148s Fetched 8014 kB in 1s (6719 kB/s) 148s Selecting previously unselected package libpython3.12-minimal:s390x. 148s (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 ... 55879 files and directories currently installed.) 148s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 148s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 148s Selecting previously unselected package python3.12-minimal. 148s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 148s Unpacking python3.12-minimal (3.12.9-1) ... 148s Selecting previously unselected package libnsl2:s390x. 148s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 148s Unpacking libnsl2:s390x (1.3.0-3build3) ... 148s Selecting previously unselected package libpython3.12-stdlib:s390x. 148s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 148s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 149s Selecting previously unselected package python3.12. 149s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 149s Unpacking python3.12 (3.12.9-1) ... 149s Selecting previously unselected package python3-aiohappyeyeballs. 149s Preparing to unpack .../05-python3-aiohappyeyeballs_2.4.6-1_all.deb ... 149s Unpacking python3-aiohappyeyeballs (2.4.6-1) ... 149s Selecting previously unselected package python3-multidict. 149s Preparing to unpack .../06-python3-multidict_6.1.0-1build1_s390x.deb ... 149s Unpacking python3-multidict (6.1.0-1build1) ... 149s Selecting previously unselected package python3-yarl. 149s Preparing to unpack .../07-python3-yarl_1.13.1-1build1_s390x.deb ... 149s Unpacking python3-yarl (1.13.1-1build1) ... 149s Selecting previously unselected package python3-async-timeout. 149s Preparing to unpack .../08-python3-async-timeout_5.0.1-1_all.deb ... 149s Unpacking python3-async-timeout (5.0.1-1) ... 149s Selecting previously unselected package python3-frozenlist. 149s Preparing to unpack .../09-python3-frozenlist_1.5.0-1build1_s390x.deb ... 149s Unpacking python3-frozenlist (1.5.0-1build1) ... 149s Selecting previously unselected package python3-aiosignal. 149s Preparing to unpack .../10-python3-aiosignal_1.3.2-1_all.deb ... 149s Unpacking python3-aiosignal (1.3.2-1) ... 149s Selecting previously unselected package python3-aiohttp. 149s Preparing to unpack .../11-python3-aiohttp_3.10.11-1_s390x.deb ... 149s Unpacking python3-aiohttp (3.10.11-1) ... 149s Selecting previously unselected package python3-packaging. 149s Preparing to unpack .../12-python3-packaging_24.2-1_all.deb ... 149s Unpacking python3-packaging (24.2-1) ... 149s Selecting previously unselected package python3-aioresponses. 149s Preparing to unpack .../13-python3-aioresponses_0.7.6-2_all.deb ... 149s Unpacking python3-aioresponses (0.7.6-2) ... 149s Selecting previously unselected package python3-all. 149s Preparing to unpack .../14-python3-all_3.13.1-1~exp2_s390x.deb ... 149s Unpacking python3-all (3.13.1-1~exp2) ... 149s Selecting previously unselected package python3-async-generator. 149s Preparing to unpack .../15-python3-async-generator_1.10-4_all.deb ... 149s Unpacking python3-async-generator (1.10-4) ... 149s Selecting previously unselected package python3-click. 149s Preparing to unpack .../16-python3-click_8.2.0-1_all.deb ... 149s Unpacking python3-click (8.2.0-1) ... 149s Selecting previously unselected package python3-dateutil. 149s Preparing to unpack .../17-python3-dateutil_2.9.0-3_all.deb ... 149s Unpacking python3-dateutil (2.9.0-3) ... 149s Selecting previously unselected package python3-regex. 149s Preparing to unpack .../18-python3-regex_0.1.20241106-1_s390x.deb ... 149s Unpacking python3-regex (0.1.20241106-1) ... 149s Selecting previously unselected package python3-pytz. 149s Preparing to unpack .../19-python3-pytz_2025.1-3_all.deb ... 149s Unpacking python3-pytz (2025.1-3) ... 149s Selecting previously unselected package python3-tz. 149s Preparing to unpack .../20-python3-tz_2025.1-3_all.deb ... 149s Unpacking python3-tz (2025.1-3) ... 149s Selecting previously unselected package python3-tzlocal. 149s Preparing to unpack .../21-python3-tzlocal_5.2-1.1_all.deb ... 149s Unpacking python3-tzlocal (5.2-1.1) ... 149s Selecting previously unselected package python3-dateparser. 149s Preparing to unpack .../22-python3-dateparser_1.2.0-4_all.deb ... 149s Unpacking python3-dateparser (1.2.0-4) ... 149s Selecting previously unselected package python3-iniconfig. 149s Preparing to unpack .../23-python3-iniconfig_1.1.1-2_all.deb ... 149s Unpacking python3-iniconfig (1.1.1-2) ... 149s Selecting previously unselected package python3-marshmallow. 149s Preparing to unpack .../24-python3-marshmallow_3.20.1-1.1_all.deb ... 149s Unpacking python3-marshmallow (3.20.1-1.1) ... 149s Selecting previously unselected package python3-mypy-extensions. 149s Preparing to unpack .../25-python3-mypy-extensions_1.0.0-1_all.deb ... 149s Unpacking python3-mypy-extensions (1.0.0-1) ... 149s Selecting previously unselected package python3-typing-inspect. 149s Preparing to unpack .../26-python3-typing-inspect_0.9.0-1_all.deb ... 149s Unpacking python3-typing-inspect (0.9.0-1) ... 149s Selecting previously unselected package python3-marshmallow-dataclass. 149s Preparing to unpack .../27-python3-marshmallow-dataclass_8.5.14-1_all.deb ... 149s Unpacking python3-marshmallow-dataclass (8.5.14-1) ... 149s Selecting previously unselected package python3-pluggy. 149s Preparing to unpack .../28-python3-pluggy_1.5.0-1_all.deb ... 149s Unpacking python3-pluggy (1.5.0-1) ... 149s Selecting previously unselected package python3-pytest. 149s Preparing to unpack .../29-python3-pytest_8.3.4-1_all.deb ... 149s Unpacking python3-pytest (8.3.4-1) ... 149s Selecting previously unselected package python3-pytest-asyncio. 149s Preparing to unpack .../30-python3-pytest-asyncio_0.25.1-1_all.deb ... 149s Unpacking python3-pytest-asyncio (0.25.1-1) ... 149s Selecting previously unselected package python3-renault-api. 149s Preparing to unpack .../31-python3-renault-api_0.2.9-1_all.deb ... 149s Unpacking python3-renault-api (0.2.9-1) ... 149s Selecting previously unselected package python3-tabulate. 149s Preparing to unpack .../32-python3-tabulate_0.9.0-1_all.deb ... 149s Unpacking python3-tabulate (0.9.0-1) ... 149s Setting up python3-iniconfig (1.1.1-2) ... 149s Setting up python3-async-generator (1.10-4) ... 149s Setting up python3-mypy-extensions (1.0.0-1) ... 149s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 149s Setting up python3-tabulate (0.9.0-1) ... 150s Setting up python3-pytz (2025.1-3) ... 150s Setting up python3-click (8.2.0-1) ... 150s Setting up python3-multidict (6.1.0-1build1) ... 150s Setting up python3-tz (2025.1-3) ... 150s Setting up python3-frozenlist (1.5.0-1build1) ... 150s Setting up python3-aiosignal (1.3.2-1) ... 150s Setting up python3-async-timeout (5.0.1-1) ... 150s Setting up python3-packaging (24.2-1) ... 151s Setting up python3-aiohappyeyeballs (2.4.6-1) ... 151s Setting up python3-regex (0.1.20241106-1) ... 151s Setting up python3-pluggy (1.5.0-1) ... 151s Setting up libnsl2:s390x (1.3.0-3build3) ... 151s Setting up python3-typing-inspect (0.9.0-1) ... 151s Setting up python3-dateutil (2.9.0-3) ... 151s Setting up python3-tzlocal (5.2-1.1) ... 152s Setting up python3-yarl (1.13.1-1build1) ... 152s Setting up python3.12-minimal (3.12.9-1) ... 152s Setting up python3-dateparser (1.2.0-4) ... 153s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 153s Setting up python3-pytest (8.3.4-1) ... 153s Setting up python3.12 (3.12.9-1) ... 155s Setting up python3-aiohttp (3.10.11-1) ... 155s Setting up python3-marshmallow (3.20.1-1.1) ... 155s Setting up python3-all (3.13.1-1~exp2) ... 155s Setting up python3-pytest-asyncio (0.25.1-1) ... 155s Setting up python3-marshmallow-dataclass (8.5.14-1) ... 156s Setting up python3-aioresponses (0.7.6-2) ... 156s Setting up python3-renault-api (0.2.9-1) ... 156s Processing triggers for systemd (257.2-3ubuntu1) ... 156s Processing triggers for man-db (2.13.0-1) ... 156s Processing triggers for libc-bin (2.40-4ubuntu1) ... 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-renault-api'], kind short, sout pipe, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.IOzCcs/run-tests-packages.all"], kind short, sout raw, serr pipe, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IOzCcs/run-tests-packages.all /tmp/autopkgtest-work.4lr1d2ol/out/run-tests-packages.all 157s autopkgtest: DBG: got reply from testbed: ok 157s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.IOzCcs/build.Q4y/src'], kind short, sout raw, serr raw, env [] 157s autopkgtest: DBG: testbed command exited with code 0 157s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.IOzCcs/build.Q4y/src already exists 157s autopkgtest [04:31:46]: test run-tests: [----------------------- 157s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.IOzCcs/wrapper.sh --debug --artifacts=/tmp/autopkgtest.IOzCcs/run-tests-artifacts --chdir=/tmp/autopkgtest.IOzCcs/build.Q4y/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.IOzCcs/run-tests-stderr --stdout=/tmp/autopkgtest.IOzCcs/run-tests-stdout --tmp=/tmp/autopkgtest.IOzCcs/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=python-click/8.2.0-1 --make-executable=/tmp/autopkgtest.IOzCcs/build.Q4y/src/debian/tests/run-tests -- /tmp/autopkgtest.IOzCcs/build.Q4y/src/debian/tests/run-tests'], kind test, sout raw, serr raw, env [] 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.IOzCcs/run-tests-artifacts 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: changing to directory: /tmp/autopkgtest.IOzCcs/build.Q4y/src 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: setting environment: LANG=C.UTF-8 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LANGUAGE 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_ADDRESS 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_ALL 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_COLLATE 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_CTYPE 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_IDENTIFICATION 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_MEASUREMENT 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_MESSAGES 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_MONETARY 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_NAME 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_NUMERIC 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_PAPER 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_TELEPHONE 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: unsetting environment: LC_TIME 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: pretending to be a login shell 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: will write standard error to /tmp/autopkgtest.IOzCcs/run-tests-stderr 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: will write stdout to /tmp/autopkgtest.IOzCcs/run-tests-stdout 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.IOzCcs/autopkgtest_tmp 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=python-click/8.2.0-1 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: marking as executable: /tmp/autopkgtest.IOzCcs/build.Q4y/src/debian/tests/run-tests 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: command to run: /tmp/autopkgtest.IOzCcs/build.Q4y/src/debian/tests/run-tests 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: copying /tmp/tmp.NJSGyx4Cp3/out to stdout and file: /tmp/autopkgtest.IOzCcs/run-tests-stdout 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: copying /tmp/tmp.NJSGyx4Cp3/err to standard error and file: /tmp/autopkgtest.IOzCcs/run-tests-stdout 157s /tmp/autopkgtest.IOzCcs/wrapper.sh: writing script pid 1853 to /tmp/autopkgtest_script_pid 158s /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:207: PytestDeprecationWarning: The configuration option "asyncio_default_fixture_loop_scope" is unset. 158s The event loop scope for asynchronous fixtures will default to the fixture caching scope. Future versions of pytest-asyncio will default the loop scope for asynchronous fixtures to function scope. Set the default fixture loop scope explicitly in order to avoid unexpected behavior in the future. Valid fixture loop scopes are: "function", "class", "module", "package", "session" 158s 158s warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET)) 158s ============================= test session starts ============================== 158s platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0 -- /usr/bin/python3.12 158s cachedir: .pytest_cache 158s rootdir: /tmp/autopkgtest.IOzCcs/autopkgtest_tmp 158s plugins: asyncio-0.25.1, typeguard-4.4.1 158s asyncio: mode=Mode.STRICT, asyncio_default_fixture_loop_scope=None 159s collecting ... collected 291 items 159s 159s tests/cli/test_account.py::test_list_vehicles_prompt PASSED [ 0%] 159s tests/cli/test_account.py::test_list_vehicles_store PASSED [ 0%] 159s tests/cli/test_account.py::test_list_vehicles_no_prompt PASSED [ 1%] 159s tests/cli/test_client.py::test_login_prompt PASSED [ 1%] 159s tests/cli/test_client.py::test_login_no_prompt PASSED [ 1%] 159s tests/cli/test_client.py::test_list_accounts_prompt PASSED [ 2%] 159s tests/cli/test_client.py::test_list_accounts_no_prompt PASSED [ 2%] 159s tests/cli/test_main.py::test_main_succeeds FAILED [ 2%] 159s 159s =================================== FAILURES =================================== 159s ______________________________ test_main_succeeds ______________________________ 159s 159s cli_runner = 159s 159s def test_main_succeeds(cli_runner: CliRunner) -> None: 159s """It exits with a status code of zero.""" 159s result = cli_runner.invoke(__main__.main) 159s > assert result.exit_code == 0, result.exception 159s E AssertionError: SystemExit(2) 159s E assert 2 == 0 159s E + where 2 = .exit_code 159s 159s tests/cli/test_main.py:46: AssertionError 159s =============================== warnings summary =============================== 159s tests/cli/test_account.py::test_list_vehicles_prompt 159s tests/cli/test_account.py::test_list_vehicles_store 159s tests/cli/test_account.py::test_list_vehicles_no_prompt 159s tests/cli/test_client.py::test_list_accounts_prompt 159s tests/cli/test_client.py::test_list_accounts_no_prompt 159s /tmp/autopkgtest.IOzCcs/autopkgtest_tmp/tests/fixtures.py:41: 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). 159s payload={"exp": datetime.datetime.utcnow() + timedelta}, 159s 159s tests/cli/test_account.py::test_list_vehicles_prompt 159s tests/cli/test_client.py::test_login_prompt 159s tests/cli/test_client.py::test_list_accounts_prompt 159s /usr/lib/python3/dist-packages/renault_api/cli/renault_client.py:34: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead. 159s default_locale = getdefaultlocale()[0] 159s 159s tests/cli/test_account.py::test_list_vehicles_prompt 159s /tmp/autopkgtest.IOzCcs/autopkgtest_tmp/tests/cli/test_account.py:55: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead. 159s default_locale = getdefaultlocale()[0] 159s 159s tests/cli/test_client.py::test_login_prompt 159s /tmp/autopkgtest.IOzCcs/autopkgtest_tmp/tests/cli/test_client.py:37: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead. 159s default_locale = getdefaultlocale()[0] 159s 159s tests/cli/test_client.py::test_list_accounts_prompt 159s /tmp/autopkgtest.IOzCcs/autopkgtest_tmp/tests/cli/test_client.py:76: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead. 159s default_locale = getdefaultlocale()[0] 159s 159s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 159s =========================== short test summary info ============================ 159s FAILED tests/cli/test_main.py::test_main_succeeds - AssertionError: SystemExi... 159s !!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!! 159s =================== 1 failed, 7 passed, 11 warnings in 1.01s =================== 159s /tmp/autopkgtest.IOzCcs/wrapper.sh: checking for leaked background processes... 159s /tmp/autopkgtest.IOzCcs/wrapper.sh: waiting for tee/cat subprocesses... 159s /tmp/autopkgtest.IOzCcs/wrapper.sh: cleaning up... 159s /tmp/autopkgtest.IOzCcs/wrapper.sh: Exit status: 1 159s autopkgtest: DBG: testbed command exited with code 1 159s autopkgtest [04:31:48]: test run-tests: -----------------------] 159s autopkgtest: DBG: testbed executing test finished with exit status 1 159s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IOzCcs/run-tests-stdout /tmp/autopkgtest-work.4lr1d2ol/out/run-tests-stdout 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IOzCcs/run-tests-stderr /tmp/autopkgtest-work.4lr1d2ol/out/run-tests-stderr 160s autopkgtest: DBG: got reply from testbed: ok 160s run-tests FAIL non-zero exit status 1 160s autopkgtest [04:31:49]: test run-tests: - - - - - - - - - - results - - - - - - - - - - 160s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.IOzCcs/run-tests-artifacts/ /tmp/autopkgtest-work.4lr1d2ol/out/artifacts/ 160s autopkgtest: DBG: got reply from testbed: ok 160s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.IOzCcs/run-tests-artifacts', '/tmp/autopkgtest.IOzCcs/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 160s autopkgtest: DBG: testbed command exited with code 0 160s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 160s autopkgtest [04:31:49]: @@@@@@@@@@@@@@@@@@@@ summary 160s run-tests FAIL non-zero exit status 1 160s autopkgtest: DBG: testbed stop 160s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.IOzCcs 160s autopkgtest: DBG: sending command to testbed: close 178s autopkgtest: DBG: got reply from testbed: ok 178s autopkgtest: DBG: sending command to testbed: quit 178s nova [W] Using flock in prodstack6-s390x 178s flock: timeout while waiting to get lock 178s Creating nova instance adt-plucky-s390x-python-renault-api-20250219-042908-juju-7f2275-prod-proposed-migration-environment-15-1389e687-b4a0-4eef-a279-01c76613f31e from image adt/ubuntu-plucky-s390x-server-20250218.img (UUID d4b3949f-1d31-4fe6-9e99-080adec067af)... 178s nova [W] Timed out waiting for 1ea50005-542e-4d5e-9369-dff35db80799 to get deleted.