0s autopkgtest: DBG: testbed init 0s autopkgtest [21:29:07]: starting date and time: 2025-02-15 21:29:07+0000 0s autopkgtest [21:29:07]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [21:29:07]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.s8b9kwxn/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:glibc,src:iproute2,src:php-twig,src:postgresql-17,src:postgresql-common,src:roundcube --apt-upgrade astropy --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 '--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1' -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-17.secgroup --name adt-plucky-s390x-astropy-20250215-212907-juju-7f2275-prod-proposed-migration-environment-15-fdc7a3da-2f84-4dc6-aca6-fd5db3aa7d2d --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 66s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Ifug6q 66s autopkgtest: DBG: sending command to testbed: print-execute-command 66s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ln4_plm3/runcmd 66s autopkgtest: DBG: sending command to testbed: capabilities 66s autopkgtest: DBG: got reply from testbed: ok reboot revert suggested-normal-user=ubuntu revert-full-system isolation-machine root-on-testbed 66s autopkgtest: DBG: testbed capabilities: ['reboot', 'revert', 'suggested-normal-user=ubuntu', 'revert-full-system', 'isolation-machine', 'root-on-testbed', 'has_internet'] 66s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ifug6q'], kind short, sout raw, serr pipe, env [] 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Ifug6q/wrapper.sh 67s autopkgtest: DBG: got reply from testbed: ok 67s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ifug6q/wrapper.sh'], kind short, sout raw, serr pipe, env [] 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest [21:30:14]: testbed dpkg architecture: s390x 67s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 67s autopkgtest: DBG: testbed command exited with code 0 67s autopkgtest [21:30:14]: testbed apt version: 2.9.28 67s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: testbed has eatmydata 68s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest [21:30:15]: @@@@@@@@@@@@@@@@@@@@ test bed setup 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest [21:30:15]: testbed release detected to be: None 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: adding APT source: Types: deb deb-src 68s URIs: http://ftpmaster.internal/ubuntu/ 68s Suites: plucky-proposed 68s Components: main restricted universe multiverse 68s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 68s 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 [] 68s autopkgtest: DBG: testbed command exited with code 0 68s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 68s Package: * 68s Pin: release plucky-proposed 68s Pin-Priority: 500 68s 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 [] 69s autopkgtest: DBG: testbed command exited with code 0 69s autopkgtest [21:30:16]: updating testbed package index (apt update) 69s 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'] 69s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 69s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 69s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 69s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 69s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 69s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [820 kB] 69s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [62.8 kB] 70s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.1 kB] 70s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [80.2 kB] 70s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 70s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [795 kB] 70s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [3740 B] 70s Fetched 1889 kB in 1s (2115 kB/s) 70s Reading package lists... 70s autopkgtest: DBG: testbed command exited with code 0 70s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 70s Package: * 70s Pin: release plucky-proposed 70s Pin-Priority: 100 70s 70s Package: src:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any 70s Pin: release plucky-proposed 70s Pin-Priority: 995 70s 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:glibc:any src:iproute2:any src:php-twig:any src:postgresql-17:any src:postgresql-common:any src:roundcube:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 70s autopkgtest: DBG: testbed command exited with code 0 70s 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.Ifug6q/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 71s autopkgtest: DBG: testbed command exited with code 0 71s 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'] 71s + lsb_release --codename --short 71s + RELEASE=plucky 71s + cat 71s + [ plucky != trusty ] 71s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 71s Reading package lists... 71s Building dependency tree... 71s Reading state information... 71s Calculating upgrade... 71s The following packages were automatically installed and are no longer required: 71s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 71s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 71s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 71s linux-tools-6.11.0-8-generic 71s Use 'sudo apt autoremove' to remove them. 71s The following packages will be upgraded: 71s dash gcc-14-base libatomic1 libgcc-s1 libstdc++6 libtasn1-6 libxdmcp6 71s 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 71s Need to get 1155 kB of archives. 71s After this operation, 16.4 kB of additional disk space will be used. 71s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x dash s390x 0.5.12-12ubuntu1 [100 kB] 72s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libatomic1 s390x 14.2.0-17ubuntu1 [9430 B] 72s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-base s390x 14.2.0-17ubuntu1 [53.5 kB] 72s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++6 s390x 14.2.0-17ubuntu1 [896 kB] 72s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-s1 s390x 14.2.0-17ubuntu1 [35.9 kB] 72s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6 s390x 4.20.0-2 [48.6 kB] 72s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x libxdmcp6 s390x 1:1.1.5-1 [11.0 kB] 72s Preconfiguring packages ... 72s Fetched 1155 kB in 1s (1852 kB/s) 72s (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 ... 80969 files and directories currently installed.) 72s Preparing to unpack .../dash_0.5.12-12ubuntu1_s390x.deb ... 72s Unpacking dash (0.5.12-12ubuntu1) over (0.5.12-9ubuntu1) ... 72s Setting up dash (0.5.12-12ubuntu1) ... 72s (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 ... 80969 files and directories currently installed.) 72s Preparing to unpack .../libatomic1_14.2.0-17ubuntu1_s390x.deb ... 72s Unpacking libatomic1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 72s Preparing to unpack .../gcc-14-base_14.2.0-17ubuntu1_s390x.deb ... 72s Unpacking gcc-14-base:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 72s Setting up gcc-14-base:s390x (14.2.0-17ubuntu1) ... 72s (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 ... 80969 files and directories currently installed.) 72s Preparing to unpack .../libstdc++6_14.2.0-17ubuntu1_s390x.deb ... 72s Unpacking libstdc++6:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 72s Setting up libstdc++6:s390x (14.2.0-17ubuntu1) ... 72s (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 ... 80969 files and directories currently installed.) 72s Preparing to unpack .../libgcc-s1_14.2.0-17ubuntu1_s390x.deb ... 72s Unpacking libgcc-s1:s390x (14.2.0-17ubuntu1) over (14.2.0-16ubuntu1) ... 72s Setting up libgcc-s1:s390x (14.2.0-17ubuntu1) ... 72s (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 ... 80969 files and directories currently installed.) 72s Preparing to unpack .../libtasn1-6_4.20.0-2_s390x.deb ... 72s Unpacking libtasn1-6:s390x (4.20.0-2) over (4.19.0-3build1) ... 72s Preparing to unpack .../libxdmcp6_1%3a1.1.5-1_s390x.deb ... 72s Unpacking libxdmcp6:s390x (1:1.1.5-1) over (1:1.1.3-0ubuntu6) ... 72s Setting up libxdmcp6:s390x (1:1.1.5-1) ... 72s Setting up libatomic1:s390x (14.2.0-17ubuntu1) ... 72s Setting up libtasn1-6:s390x (4.20.0-2) ... 72s Processing triggers for libc-bin (2.40-4ubuntu1) ... 72s Processing triggers for man-db (2.13.0-1) ... 73s Processing triggers for debianutils (5.21) ... 73s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 73s + /usr/lib/apt/apt-helper analyze-pattern ?true 73s + uname -r 73s + sed s/\./\\./g 73s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 73s + apt list ?obsolete 73s + tail+ cut -d/ -f1 73s -n+2 73s + grep -v ^linux-.*6\.12\.0-15-generic.* 73s + true 73s + obsolete_pkgs= 73s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 73s Reading package lists... 73s Building dependency tree... 73s Reading state information... 73s The following packages will be REMOVED: 73s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 73s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 73s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 73s linux-tools-6.11.0-8-generic* 74s 0 upgraded, 0 newly installed, 9 to remove and 6 not upgraded. 74s After this operation, 167 MB disk space will be freed. 74s (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 ... 80969 files and directories currently installed.) 74s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 74s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 74s Removing libpython3.12t64:s390x (3.12.9-1) ... 74s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 74s Removing libnsl2:s390x (1.3.0-3build3) ... 74s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 74s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 74s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 75s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 75s Processing triggers for libc-bin (2.40-4ubuntu1) ... 75s (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 ... 55869 files and directories currently installed.) 75s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 75s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 75s + grep -q trusty /etc/lsb-release 75s + [ ! -d /usr/share/doc/unattended-upgrades ] 75s + [ ! -d /usr/share/doc/lxd ] 75s + [ ! -d /usr/share/doc/lxd-client ] 75s + [ ! -d /usr/share/doc/snapd ] 75s + type iptables 75s + cat 75s + chmod 755 /etc/rc.local 75s + . /etc/rc.local 75s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 75s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 75s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 75s + uname -m 75s + [ s390x = ppc64le ] 75s + [ -d /run/systemd/system ] 75s + systemd-detect-virt --quiet --vm 75s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 75s + cat 75s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 75s + echo COMPRESS=lz4 75s autopkgtest: DBG: testbed command exited with code 0 75s autopkgtest [21:30:22]: upgrading testbed (apt dist-upgrade and autopurge) 75s 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'] 75s Reading package lists... 75s Building dependency tree... 75s Reading state information... 75s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 75s Starting 2 pkgProblemResolver with broken count: 0 75s Done 75s Entering ResolveByKeep 76s 76s The following packages will be upgraded: 76s iproute2 libc-bin libc-dev-bin libc6 libc6-dev locales 76s 6 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 76s Need to get 10.7 MB of archives. 76s After this operation, 305 kB of additional disk space will be used. 76s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-dev-bin s390x 2.41-1ubuntu1 [24.3 kB] 76s Get:2 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6-dev s390x 2.41-1ubuntu1 [1679 kB] 76s Get:3 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x locales all 2.41-1ubuntu1 [4246 kB] 76s Get:4 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc6 s390x 2.41-1ubuntu1 [2891 kB] 77s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libc-bin s390x 2.41-1ubuntu1 [672 kB] 77s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 77s Preconfiguring packages ... 77s Fetched 10.7 MB in 1s (10.4 MB/s) 77s (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 ... 55867 files and directories currently installed.) 77s Preparing to unpack .../libc-dev-bin_2.41-1ubuntu1_s390x.deb ... 77s Unpacking libc-dev-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 77s Preparing to unpack .../libc6-dev_2.41-1ubuntu1_s390x.deb ... 77s Unpacking libc6-dev:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 77s Preparing to unpack .../locales_2.41-1ubuntu1_all.deb ... 77s Unpacking locales (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 77s Preparing to unpack .../libc6_2.41-1ubuntu1_s390x.deb ... 77s Checking for services that may need to be restarted... 77s Checking init scripts... 77s Checking for services that may need to be restarted... 77s Checking init scripts... 77s Stopping some services possibly affected by the upgrade (will be restarted later): 77s cron: stopping...done. 77s 77s Unpacking libc6:s390x (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 77s Setting up libc6:s390x (2.41-1ubuntu1) ... 78s Checking for services that may need to be restarted... 78s Checking init scripts... 78s Restarting services possibly affected by the upgrade: 78s cron: restarting...done. 78s 78s Services restarted successfully. 78s (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 ... 55868 files and directories currently installed.) 78s Preparing to unpack .../libc-bin_2.41-1ubuntu1_s390x.deb ... 78s Unpacking libc-bin (2.41-1ubuntu1) over (2.40-4ubuntu1) ... 78s Setting up libc-bin (2.41-1ubuntu1) ... 78s (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 ... 55868 files and directories currently installed.) 78s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 78s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 78s Setting up iproute2 (6.13.0-1ubuntu1) ... 78s Setting up locales (2.41-1ubuntu1) ... 78s Installing new version of config file /etc/locale.alias ... 78s Generating locales (this might take a while)... 79s en_US.UTF-8... done 79s Generation complete. 79s Setting up libc-dev-bin (2.41-1ubuntu1) ... 79s Setting up libc6-dev:s390x (2.41-1ubuntu1) ... 79s Processing triggers for man-db (2.13.0-1) ... 80s Processing triggers for systemd (257.2-3ubuntu1) ... 81s autopkgtest: DBG: testbed command exited with code 0 81s 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'] 81s Reading package lists... 81s Building dependency tree... 81s Reading state information... 81s Starting pkgProblemResolver with broken count: 0 81s Starting 2 pkgProblemResolver with broken count: 0 81s Done 81s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 81s autopkgtest: DBG: testbed command exited with code 0 81s 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.Ifug6q/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 81s autopkgtest: DBG: testbed command exited with code 1 81s autopkgtest [21:30:28]: rebooting testbed after setup commands that affected boot 81s autopkgtest: DBG: sending command to testbed: reboot 97s autopkgtest: DBG: got reply from testbed: ok 97s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 97s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ifug6q'], kind short, sout raw, serr pipe, env [] 97s autopkgtest: DBG: testbed command exited with code 0 97s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Ifug6q/autopkgtest-reboot 98s autopkgtest: DBG: got reply from testbed: ok 98s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ifug6q'], kind short, sout raw, serr pipe, env [] 98s autopkgtest: DBG: testbed command exited with code 0 98s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Ifug6q/autopkgtest-reboot-prepare 98s autopkgtest: DBG: got reply from testbed: ok 98s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest [21:30:46]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 99s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Ifug6q/testbed-packages"], kind short, sout raw, serr pipe, env [] 99s autopkgtest: DBG: testbed command exited with code 0 99s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ifug6q/testbed-packages /tmp/autopkgtest-work.s8b9kwxn/out/testbed-packages 99s autopkgtest: DBG: got reply from testbed: ok 99s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 99s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ifug6q'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Ifug6q/autopkgtest-reboot 100s autopkgtest: DBG: got reply from testbed: ok 100s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Ifug6q'], kind short, sout raw, serr pipe, env [] 100s autopkgtest: DBG: testbed command exited with code 0 100s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Ifug6q/autopkgtest-reboot-prepare 101s autopkgtest: DBG: got reply from testbed: ok 101s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Ifug6q/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: Binaries: initialising 101s autopkgtest [21:30:48]: @@@@@@@@@@@@@@@@@@@@ apt-source astropy 101s autopkgtest: DBG: blame += astropy 101s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 101s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'astropy'], kind short, sout pipe, serr pipe, env [] 101s autopkgtest: DBG: testbed command exited with code 0 101s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-astropy-doc$'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-astropy-doc=7.0.1-1'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^astropy-utils$'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'astropy-utils=7.0.1-1'], kind short, sout pipe, serr raw, env [] 102s autopkgtest: DBG: testbed command exited with code 0 102s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-astropy$'], kind short, sout pipe, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-astropy=7.0.1-1'], kind short, sout pipe, serr raw, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s autopkgtest: DBG: install_deps: deps_new=[] 103s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 103s autopkgtest: DBG: testbed command exited with code 0 103s 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.Ifug6q/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source astropy=7.0.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 astropy_*.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=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1'] 103s + cd / 103s + mktemp -d /tmp/autopkgtest.Ifug6q/build.XXX 103s + builddir=/tmp/autopkgtest.Ifug6q/build.kRg 103s + cd /tmp/autopkgtest.Ifug6q/build.kRg 103s + apt-get source -d -q --only-source astropy=7.0.1-1 104s + OUT=Reading package lists... 104s NOTICE: 'astropy' packaging is maintained in the 'Git' version control system at: 104s https://salsa.debian.org/debian-astro-team/astropy.git 104s Please use: 104s git clone https://salsa.debian.org/debian-astro-team/astropy.git 104s to retrieve the latest (possibly unreleased) updates to the package. 104s Need to get 7172 kB of source archives. 104s Get:1 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (dsc) [3279 B] 104s Get:2 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (tar) [7140 kB] 104s Get:3 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (diff) [29.2 kB] 104s Fetched 7172 kB in 1s (8158 kB/s) 104s Download complete and in download only mode 104s + [ -n ] 104s + echo Reading package lists... 104s NOTICE: 'astropy' packaging is maintained in the 'Git' version control system at: 104s https://salsa.debian.org/debian-astro-team/astropy.git 104s Please use: 104s git clone https://salsa.debian.org/debian-astro-team/astropy.git 104s to retrieve the latest (possibly unreleased) updates to the package. 104s Need to get 7172 kB of source archives. 104s Get:1 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (dsc) [3279 B] 104s Get:2 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (tar) [7140 kB] 104s Get:3 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (diff) [29.2 kB] 104s Fetched 7172 kB in 1s (8158 kB/s) 104s Download complete and in download only mode 104s + grep ^Get: 104s Get:1 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (dsc) [3279 B] 104s Get:2 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (tar) [7140 kB] 104s Get:3 http://ftpmaster.internal/ubuntu plucky/universe astropy 7.0.1-1 (diff) [29.2 kB] 104s + dpkg-source -x astropy_7.0.1-1.dsc src 104s gpgv: Signature made Fri Feb 7 18:58:53 2025 UTC 104s gpgv: using RSA key BAFC6C85F7CB143FEEB6FB157115AFD07710DCF7 104s gpgv: Can't check signature: No public key 104s dpkg-source: warning: cannot verify inline signature for ./astropy_7.0.1-1.dsc: no acceptable signature found 104s + chmod -R a+rX . 104s + cd src/. 104s + pwd 104s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [21:30:51]: testing package astropy version 7.0.1-1 104s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ifug6q/build.kRg/src/debian/ /tmp/autopkgtest-work.s8b9kwxn/out/pkg/debian/ 105s autopkgtest: DBG: got reply from testbed: ok 105s autopkgtest: DBG: processing dependency @ 105s autopkgtest: DBG: synthesised dependency python3-astropy 105s autopkgtest: DBG: synthesised dependency python-astropy-doc 105s autopkgtest: DBG: synthesised dependency astropy-utils 105s autopkgtest: DBG: processing dependency python3-asdf 105s autopkgtest: DBG: processing dependency python3-matplotlib 105s autopkgtest: DBG: processing dependency python3-pandas 105s autopkgtest: DBG: processing dependency python3-pytest 105s autopkgtest: DBG: processing dependency python3-pytest-astropy 105s autopkgtest: DBG: processing dependency python3-pytest-mpl 105s autopkgtest: DBG: processing dependency python3-scipy 105s autopkgtest: DBG: processing dependency python3-skimage 105s autopkgtest: DBG: processing dependency python3-tz 105s autopkgtest: DBG: processing dependency python3-yaml 105s autopkgtest: DBG: processing dependency tzdata-legacy 105s autopkgtest: DBG: Test defined: name command1 path None command "cd $AUTOPKGTEST_TMP && python3 -m pytest --astropy-header -m "not hypothesis" --pyargs astropy" restrictions ['allow-stderr'] features [] depends ['python3-astropy', 'python-astropy-doc', 'astropy-utils', 'python3-asdf', 'python3-matplotlib', 'python3-pandas', 'python3-pytest', 'python3-pytest-astropy', 'python3-pytest-mpl', 'python3-scipy', 'python3-skimage', 'python3-tz', 'python3-yaml', 'tzdata-legacy'] 105s autopkgtest [21:30:52]: build not needed 105s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ifug6q/build.kRg/src/ /tmp/autopkgtest-work.s8b9kwxn/out/tests-tree/ 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: processing dependency @ 108s autopkgtest: DBG: synthesised dependency python3-astropy 108s autopkgtest: DBG: synthesised dependency python-astropy-doc 108s autopkgtest: DBG: synthesised dependency astropy-utils 108s autopkgtest: DBG: processing dependency python3-asdf 108s autopkgtest: DBG: processing dependency python3-matplotlib 108s autopkgtest: DBG: processing dependency python3-pandas 108s autopkgtest: DBG: processing dependency python3-pytest 108s autopkgtest: DBG: processing dependency python3-pytest-astropy 108s autopkgtest: DBG: processing dependency python3-pytest-mpl 108s autopkgtest: DBG: processing dependency python3-scipy 108s autopkgtest: DBG: processing dependency python3-skimage 108s autopkgtest: DBG: processing dependency python3-tz 108s autopkgtest: DBG: processing dependency python3-yaml 108s autopkgtest: DBG: processing dependency tzdata-legacy 108s autopkgtest: DBG: Test defined: name command1 path None command "cd $AUTOPKGTEST_TMP && python3 -m pytest --astropy-header -m "not hypothesis" --pyargs astropy" restrictions ['allow-stderr'] features [] depends ['python3-astropy', 'python-astropy-doc', 'astropy-utils', 'python3-asdf', 'python3-matplotlib', 'python3-pandas', 'python3-pytest', 'python3-pytest-astropy', 'python3-pytest-mpl', 'python3-scipy', 'python3-skimage', 'python3-tz', 'python3-yaml', 'tzdata-legacy'] 108s autopkgtest [21:30:55]: test command1: preparing testbed 108s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-astropy', 'python-astropy-doc', 'astropy-utils', 'python3-asdf', 'python3-matplotlib', 'python3-pandas', 'python3-pytest', 'python3-pytest-astropy', 'python3-pytest-mpl', 'python3-scipy', 'python3-skimage', 'python3-tz', 'python3-yaml', 'tzdata-legacy'] 108s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 108s autopkgtest: DBG: install_deps: deps_new=['python3-astropy', 'python-astropy-doc', 'astropy-utils', 'python3-asdf', 'python3-matplotlib', 'python3-pandas', 'python3-pytest', 'python3-pytest-astropy', 'python3-pytest-mpl', 'python3-scipy', 'python3-skimage', 'python3-tz', 'python3-yaml', 'tzdata-legacy'] 108s autopkgtest: DBG: install-deps: satisfying python3-astropy, python-astropy-doc, astropy-utils, python3-asdf, python3-matplotlib, python3-pandas, python3-pytest, python3-pytest-astropy, python3-pytest-mpl, python3-scipy, python3-skimage, python3-tz, python3-yaml, tzdata-legacy 108s autopkgtest: DBG: can use apt-get on testbed: True 108s 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-astropy, python-astropy-doc, astropy-utils, python3-asdf, python3-matplotlib, python3-pandas, python3-pytest, python3-pytest-astropy, python3-pytest-mpl, python3-scipy, python3-skimage, python3-tz, python3-yaml, tzdata-legacy'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 109s Reading package lists... 109s Building dependency tree... 109s Reading state information... 109s Starting pkgProblemResolver with broken count: 0 109s Starting 2 pkgProblemResolver with broken count: 0 109s Done 109s The following NEW packages will be installed: 109s astropy-utils blt fontconfig-config fonts-dejavu-core fonts-dejavu-mono 109s fonts-glyphicons-halflings fonts-lyx javascript-common libblas3 libdeflate0 109s liberfa1 libfontconfig1 libfreetype6 libgfortran5 libgomp1 libgraphite2-3 109s libharfbuzz0b libimagequant0 libjbig0 libjpeg-turbo8 libjpeg8 109s libjs-bootstrap libjs-bootstrap4 libjs-jquery libjs-jquery-hotkeys 109s libjs-jquery-isonscreen libjs-jquery-metadata libjs-jquery-tablesorter 109s libjs-jquery-throttle-debounce libjs-jquery-ui libjs-popper.js 109s libjs-sphinxdoc libjs-underscore liblapack3 liblbfgsb0 liblcms2-2 libnsl2 109s libopenjp2-7 libpython3.12-minimal libpython3.12-stdlib libqhull-r8.0 109s libraqm0 libsharpyuv0 libtcl8.6 libtiff6 libtk8.6 libwcs8 libwebp7 109s libwebpdemux2 libwebpmux3 libxft2 libxrender1 libxslt1.1 libxss1 109s python-astropy-doc python-matplotlib-data python3-asdf python3-asdf-standard 109s python3-asdf-transform-schemas python3-astropy python3-astropy-iers-data 109s python3-brotli python3-contourpy python3-coverage python3-cycler 109s python3-dateutil python3-decorator python3-erfa python3-fonttools python3-fs 109s python3-hypothesis python3-imageio python3-iniconfig python3-jmespath 109s python3-kiwisolver python3-lazy-loader python3-lxml python3-lz4 109s python3-matplotlib python3-mpmath python3-networkx python3-numpy 109s python3-packaging python3-pandas python3-pandas-lib python3-pil 109s python3-pil.imagetk python3-platformdirs python3-pluggy python3-ply 109s python3-pytest python3-pytest-arraydiff python3-pytest-astropy 109s python3-pytest-astropy-header python3-pytest-cov python3-pytest-doctestplus 109s python3-pytest-filter-subpackage python3-pytest-mock python3-pytest-mpl 109s python3-pytest-remotedata python3-pytz python3-scipy 109s python3-semantic-version python3-skimage python3-skimage-lib 109s python3-sortedcontainers python3-sympy python3-tifffile python3-tk 109s python3-tz python3-ufolib2 python3-unicodedata2 python3.12 109s python3.12-minimal python3.12-tk python3.13-tk tk8.6-blt2.5 tzdata-legacy 109s unicode-data x11-common 109s 0 upgraded, 120 newly installed, 0 to remove and 0 not upgraded. 109s Need to get 145 MB of archives. 109s After this operation, 705 MB of additional disk space will be used. 109s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 110s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 110s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 110s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 110s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 110s Get:6 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-iniconfig all 1.1.1-2 [6024 B] 110s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 110s Get:8 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pluggy all 1.5.0-1 [21.0 kB] 110s Get:9 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest all 8.3.4-1 [252 kB] 110s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 110s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 110s Get:12 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-hypothesis all 6.125.2-1 [333 kB] 110s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 110s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 14.2.0-17ubuntu1 [588 kB] 110s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 110s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 110s Get:17 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-arraydiff all 0.6.1-3 [10.2 kB] 110s Get:18 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-astropy-header all 0.2.2-2 [8620 B] 110s Get:19 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-coverage s390x 7.4.4+dfsg1-0ubuntu3 [150 kB] 110s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 110s Get:21 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-hotkeys all 0.2.0-1 [13.3 kB] 110s Get:22 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-isonscreen all 1.2.0-1.1 [3244 B] 110s Get:23 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-metadata all 12-4 [6582 B] 110s Get:24 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-tablesorter all 1:2.31.3+dfsg1-4 [192 kB] 110s Get:25 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-throttle-debounce all 1.1+dfsg.1-2 [12.5 kB] 110s Get:26 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-cov all 5.0.0-1 [21.3 kB] 110s Get:27 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-doctestplus all 1.4.0-1 [23.8 kB] 110s Get:28 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-filter-subpackage all 0.2.0-1 [6094 B] 110s Get:29 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-mock all 3.14.0-2 [11.7 kB] 110s Get:30 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-remotedata all 0.4.1-1 [8650 B] 110s Get:31 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-astropy all 0.11.0-1 [5902 B] 110s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x python3-ply all 3.11-7 [45.4 kB] 110s Get:33 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-astropy-iers-data all 0.2025.1.6.0.33.42-1 [1212 kB] 110s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x liberfa1 s390x 2.0.1-1build1 [137 kB] 110s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 110s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-sphinxdoc all 8.1.3-4 [30.9 kB] 110s Get:37 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-erfa s390x 2.0.1.5+ds-1build1 [315 kB] 110s Get:38 http://ftpmaster.internal/ubuntu plucky/universe s390x libwcs8 s390x 8.4+ds-1 [293 kB] 110s Get:39 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-astropy s390x 7.0.1-1 [4093 kB] 110s Get:40 http://ftpmaster.internal/ubuntu plucky/universe s390x astropy-utils all 7.0.1-1 [12.7 kB] 110s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x libtcl8.6 s390x 8.6.16+dfsg-1 [1034 kB] 110s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 110s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 110s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 110s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-1.1ubuntu2 [37.4 kB] 110s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-1.1ubuntu2 [150 kB] 110s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 110s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libxft2 s390x 2.3.6-1build1 [49.6 kB] 110s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 111s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libxss1 s390x 1:1.2.3-1build3 [7396 B] 111s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x libtk8.6 s390x 8.6.16-1 [830 kB] 111s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x tk8.6-blt2.5 s390x 2.5.3+dfsg-7build1 [662 kB] 111s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x blt s390x 2.5.3+dfsg-7build1 [4840 B] 111s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-glyphicons-halflings all 1.009~3.4.1+dfsg-3 [118 kB] 111s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-lyx all 2.4.3-1 [171 kB] 111s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x javascript-common all 11+nmu1 [5936 B] 111s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 111s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-17ubuntu1 [151 kB] 111s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 111s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 111s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 111s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 111s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 111s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap all 3.4.1+dfsg-3 [129 kB] 111s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-popper.js all 1.16.1+ds-6 [54.1 kB] 111s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap4 all 4.6.1+dfsg1-4 [537 kB] 111s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-jquery-ui all 1.13.2+dfsg-1 [252 kB] 111s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x liblbfgsb0 s390x 3.0+dfsg.4-1build1 [32.4 kB] 111s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 111s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 111s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 111s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 111s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 111s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 111s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 111s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 111s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 111s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 111s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x python-astropy-doc all 7.0.1-1 [16.5 MB] 111s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x python-matplotlib-data all 3.8.3-3ubuntu2 [2929 kB] 111s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asdf-standard all 1.1.1-1 [31.7 kB] 111s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asdf-transform-schemas all 0.5.0-1 [41.8 kB] 111s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jmespath all 1.0.1-1 [21.3 kB] 111s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x python3-semantic-version all 2.10.0-3 [15.2 kB] 111s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-asdf all 4.1.0-1 [431 kB] 111s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-brotli s390x 1.1.0-2build3 [381 kB] 111s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-contourpy s390x 1.3.1-1 [235 kB] 111s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-cycler all 0.12.1-1 [9716 B] 111s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 112s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 112s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 112s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 112s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fs all 2.4.16-6 [90.7 kB] 112s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 112s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lz4 s390x 4.4.0+dfsg-1 [27.0 kB] 112s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-scipy s390x 1.14.1-4ubuntu1 [21.2 MB] 112s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-mpmath all 1.3.0-1 [425 kB] 112s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sympy all 1.13.3-1 [4228 kB] 112s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-ufolib2 all 0.17.0+dfsg1-1 [33.5 kB] 112s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-unicodedata2 s390x 15.1.0+ds-1build2 [362 kB] 112s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x unicode-data all 15.1.0-1 [8878 kB] 113s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-fonttools s390x 4.55.3-2 [1723 kB] 113s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-tk s390x 3.12.9-1 [117 kB] 113s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-tk s390x 3.13.2-1 [108 kB] 113s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tk s390x 3.13.1-1 [9770 B] 113s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pil.imagetk s390x 11.1.0-5 [9766 B] 113s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 113s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 113s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-imageio all 2.37.0-1 [234 kB] 113s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-kiwisolver s390x 1.4.7-3 [65.6 kB] 113s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-lazy-loader all 0.4-1 [11.1 kB] 113s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-matplotlib s390x 3.8.3-3ubuntu2 [4657 kB] 114s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 114s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pandas-lib s390x 2.2.3+dfsg-8 [8022 kB] 115s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pandas all 2.2.3+dfsg-8 [3112 kB] 115s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pytest-mpl all 0.17.0-1 [26.5 kB] 115s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-skimage-lib s390x 0.25.1-1 [4716 kB] 115s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tifffile all 20250110-1 [177 kB] 115s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-skimage all 0.25.1-1 [21.5 MB] 117s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x tzdata-legacy all 2024b-6ubuntu1 [99.3 kB] 117s Fetched 145 MB in 8s (18.9 MB/s) 117s Selecting previously unselected package libpython3.12-minimal:s390x. 117s (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 ... 55869 files and directories currently installed.) 117s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 117s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 117s Selecting previously unselected package python3.12-minimal. 117s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 117s Unpacking python3.12-minimal (3.12.9-1) ... 117s Selecting previously unselected package libnsl2:s390x. 117s Preparing to unpack .../002-libnsl2_1.3.0-3build3_s390x.deb ... 117s Unpacking libnsl2:s390x (1.3.0-3build3) ... 117s Selecting previously unselected package libpython3.12-stdlib:s390x. 117s Preparing to unpack .../003-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 117s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 117s Selecting previously unselected package python3.12. 117s Preparing to unpack .../004-python3.12_3.12.9-1_s390x.deb ... 117s Unpacking python3.12 (3.12.9-1) ... 117s Selecting previously unselected package python3-iniconfig. 117s Preparing to unpack .../005-python3-iniconfig_1.1.1-2_all.deb ... 117s Unpacking python3-iniconfig (1.1.1-2) ... 117s Selecting previously unselected package python3-packaging. 117s Preparing to unpack .../006-python3-packaging_24.2-1_all.deb ... 117s Unpacking python3-packaging (24.2-1) ... 117s Selecting previously unselected package python3-pluggy. 117s Preparing to unpack .../007-python3-pluggy_1.5.0-1_all.deb ... 117s Unpacking python3-pluggy (1.5.0-1) ... 117s Selecting previously unselected package python3-pytest. 117s Preparing to unpack .../008-python3-pytest_8.3.4-1_all.deb ... 117s Unpacking python3-pytest (8.3.4-1) ... 117s Selecting previously unselected package python3-dateutil. 117s Preparing to unpack .../009-python3-dateutil_2.9.0-3_all.deb ... 117s Unpacking python3-dateutil (2.9.0-3) ... 117s Selecting previously unselected package python3-sortedcontainers. 117s Preparing to unpack .../010-python3-sortedcontainers_2.4.0-2_all.deb ... 117s Unpacking python3-sortedcontainers (2.4.0-2) ... 117s Selecting previously unselected package python3-hypothesis. 117s Preparing to unpack .../011-python3-hypothesis_6.125.2-1_all.deb ... 117s Unpacking python3-hypothesis (6.125.2-1) ... 117s Selecting previously unselected package libblas3:s390x. 117s Preparing to unpack .../012-libblas3_3.12.1-2_s390x.deb ... 117s Unpacking libblas3:s390x (3.12.1-2) ... 117s Selecting previously unselected package libgfortran5:s390x. 117s Preparing to unpack .../013-libgfortran5_14.2.0-17ubuntu1_s390x.deb ... 117s Unpacking libgfortran5:s390x (14.2.0-17ubuntu1) ... 117s Selecting previously unselected package liblapack3:s390x. 117s Preparing to unpack .../014-liblapack3_3.12.1-2_s390x.deb ... 117s Unpacking liblapack3:s390x (3.12.1-2) ... 117s Selecting previously unselected package python3-numpy. 117s Preparing to unpack .../015-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 117s Unpacking python3-numpy (1:1.26.4+ds-13) ... 118s Selecting previously unselected package python3-pytest-arraydiff. 118s Preparing to unpack .../016-python3-pytest-arraydiff_0.6.1-3_all.deb ... 118s Unpacking python3-pytest-arraydiff (0.6.1-3) ... 118s Selecting previously unselected package python3-pytest-astropy-header. 118s Preparing to unpack .../017-python3-pytest-astropy-header_0.2.2-2_all.deb ... 118s Unpacking python3-pytest-astropy-header (0.2.2-2) ... 118s Selecting previously unselected package python3-coverage. 118s Preparing to unpack .../018-python3-coverage_7.4.4+dfsg1-0ubuntu3_s390x.deb ... 118s Unpacking python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 118s Selecting previously unselected package libjs-jquery. 118s Preparing to unpack .../019-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 118s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 118s Selecting previously unselected package libjs-jquery-hotkeys. 118s Preparing to unpack .../020-libjs-jquery-hotkeys_0.2.0-1_all.deb ... 118s Unpacking libjs-jquery-hotkeys (0.2.0-1) ... 118s Selecting previously unselected package libjs-jquery-isonscreen. 118s Preparing to unpack .../021-libjs-jquery-isonscreen_1.2.0-1.1_all.deb ... 118s Unpacking libjs-jquery-isonscreen (1.2.0-1.1) ... 118s Selecting previously unselected package libjs-jquery-metadata. 118s Preparing to unpack .../022-libjs-jquery-metadata_12-4_all.deb ... 118s Unpacking libjs-jquery-metadata (12-4) ... 118s Selecting previously unselected package libjs-jquery-tablesorter. 118s Preparing to unpack .../023-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-4_all.deb ... 118s Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 118s Selecting previously unselected package libjs-jquery-throttle-debounce. 118s Preparing to unpack .../024-libjs-jquery-throttle-debounce_1.1+dfsg.1-2_all.deb ... 118s Unpacking libjs-jquery-throttle-debounce (1.1+dfsg.1-2) ... 118s Selecting previously unselected package python3-pytest-cov. 118s Preparing to unpack .../025-python3-pytest-cov_5.0.0-1_all.deb ... 118s Unpacking python3-pytest-cov (5.0.0-1) ... 118s Selecting previously unselected package python3-pytest-doctestplus. 118s Preparing to unpack .../026-python3-pytest-doctestplus_1.4.0-1_all.deb ... 118s Unpacking python3-pytest-doctestplus (1.4.0-1) ... 118s Selecting previously unselected package python3-pytest-filter-subpackage. 118s Preparing to unpack .../027-python3-pytest-filter-subpackage_0.2.0-1_all.deb ... 118s Unpacking python3-pytest-filter-subpackage (0.2.0-1) ... 118s Selecting previously unselected package python3-pytest-mock. 118s Preparing to unpack .../028-python3-pytest-mock_3.14.0-2_all.deb ... 118s Unpacking python3-pytest-mock (3.14.0-2) ... 118s Selecting previously unselected package python3-pytest-remotedata. 118s Preparing to unpack .../029-python3-pytest-remotedata_0.4.1-1_all.deb ... 118s Unpacking python3-pytest-remotedata (0.4.1-1) ... 118s Selecting previously unselected package python3-pytest-astropy. 118s Preparing to unpack .../030-python3-pytest-astropy_0.11.0-1_all.deb ... 118s Unpacking python3-pytest-astropy (0.11.0-1) ... 118s Selecting previously unselected package python3-ply. 118s Preparing to unpack .../031-python3-ply_3.11-7_all.deb ... 118s Unpacking python3-ply (3.11-7) ... 118s Selecting previously unselected package python3-astropy-iers-data. 118s Preparing to unpack .../032-python3-astropy-iers-data_0.2025.1.6.0.33.42-1_all.deb ... 118s Unpacking python3-astropy-iers-data (0.2025.1.6.0.33.42-1) ... 118s Selecting previously unselected package liberfa1:s390x. 118s Preparing to unpack .../033-liberfa1_2.0.1-1build1_s390x.deb ... 118s Unpacking liberfa1:s390x (2.0.1-1build1) ... 118s Selecting previously unselected package libjs-underscore. 118s Preparing to unpack .../034-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 118s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 118s Selecting previously unselected package libjs-sphinxdoc. 118s Preparing to unpack .../035-libjs-sphinxdoc_8.1.3-4_all.deb ... 118s Unpacking libjs-sphinxdoc (8.1.3-4) ... 118s Selecting previously unselected package python3-erfa. 118s Preparing to unpack .../036-python3-erfa_2.0.1.5+ds-1build1_s390x.deb ... 118s Unpacking python3-erfa (2.0.1.5+ds-1build1) ... 118s Selecting previously unselected package libwcs8:s390x. 118s Preparing to unpack .../037-libwcs8_8.4+ds-1_s390x.deb ... 118s Unpacking libwcs8:s390x (8.4+ds-1) ... 118s Selecting previously unselected package python3-astropy. 118s Preparing to unpack .../038-python3-astropy_7.0.1-1_s390x.deb ... 118s Unpacking python3-astropy (7.0.1-1) ... 118s Selecting previously unselected package astropy-utils. 118s Preparing to unpack .../039-astropy-utils_7.0.1-1_all.deb ... 118s Unpacking astropy-utils (7.0.1-1) ... 118s Selecting previously unselected package libtcl8.6:s390x. 118s Preparing to unpack .../040-libtcl8.6_8.6.16+dfsg-1_s390x.deb ... 118s Unpacking libtcl8.6:s390x (8.6.16+dfsg-1) ... 118s Selecting previously unselected package libfreetype6:s390x. 118s Preparing to unpack .../041-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 118s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 118s Selecting previously unselected package fonts-dejavu-mono. 118s Preparing to unpack .../042-fonts-dejavu-mono_2.37-8_all.deb ... 118s Unpacking fonts-dejavu-mono (2.37-8) ... 118s Selecting previously unselected package fonts-dejavu-core. 118s Preparing to unpack .../043-fonts-dejavu-core_2.37-8_all.deb ... 118s Unpacking fonts-dejavu-core (2.37-8) ... 118s Selecting previously unselected package fontconfig-config. 118s Preparing to unpack .../044-fontconfig-config_2.15.0-1.1ubuntu2_s390x.deb ... 118s Unpacking fontconfig-config (2.15.0-1.1ubuntu2) ... 118s Selecting previously unselected package libfontconfig1:s390x. 118s Preparing to unpack .../045-libfontconfig1_2.15.0-1.1ubuntu2_s390x.deb ... 118s Unpacking libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 118s Selecting previously unselected package libxrender1:s390x. 118s Preparing to unpack .../046-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 118s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 118s Selecting previously unselected package libxft2:s390x. 118s Preparing to unpack .../047-libxft2_2.3.6-1build1_s390x.deb ... 118s Unpacking libxft2:s390x (2.3.6-1build1) ... 118s Selecting previously unselected package x11-common. 118s Preparing to unpack .../048-x11-common_1%3a7.7+23ubuntu3_all.deb ... 118s Unpacking x11-common (1:7.7+23ubuntu3) ... 118s Selecting previously unselected package libxss1:s390x. 118s Preparing to unpack .../049-libxss1_1%3a1.2.3-1build3_s390x.deb ... 118s Unpacking libxss1:s390x (1:1.2.3-1build3) ... 118s Selecting previously unselected package libtk8.6:s390x. 118s Preparing to unpack .../050-libtk8.6_8.6.16-1_s390x.deb ... 118s Unpacking libtk8.6:s390x (8.6.16-1) ... 118s Selecting previously unselected package tk8.6-blt2.5. 118s Preparing to unpack .../051-tk8.6-blt2.5_2.5.3+dfsg-7build1_s390x.deb ... 118s Unpacking tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 118s Selecting previously unselected package blt. 118s Preparing to unpack .../052-blt_2.5.3+dfsg-7build1_s390x.deb ... 118s Unpacking blt (2.5.3+dfsg-7build1) ... 118s Selecting previously unselected package fonts-glyphicons-halflings. 118s Preparing to unpack .../053-fonts-glyphicons-halflings_1.009~3.4.1+dfsg-3_all.deb ... 118s Unpacking fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 118s Selecting previously unselected package fonts-lyx. 118s Preparing to unpack .../054-fonts-lyx_2.4.3-1_all.deb ... 118s Unpacking fonts-lyx (2.4.3-1) ... 118s Selecting previously unselected package javascript-common. 118s Preparing to unpack .../055-javascript-common_11+nmu1_all.deb ... 118s Unpacking javascript-common (11+nmu1) ... 118s Selecting previously unselected package libdeflate0:s390x. 118s Preparing to unpack .../056-libdeflate0_1.23-1_s390x.deb ... 118s Unpacking libdeflate0:s390x (1.23-1) ... 118s Selecting previously unselected package libgomp1:s390x. 118s Preparing to unpack .../057-libgomp1_14.2.0-17ubuntu1_s390x.deb ... 118s Unpacking libgomp1:s390x (14.2.0-17ubuntu1) ... 118s Selecting previously unselected package libgraphite2-3:s390x. 118s Preparing to unpack .../058-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 118s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 118s Selecting previously unselected package libharfbuzz0b:s390x. 118s Preparing to unpack .../059-libharfbuzz0b_10.2.0-1_s390x.deb ... 118s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 118s Selecting previously unselected package libimagequant0:s390x. 118s Preparing to unpack .../060-libimagequant0_2.18.0-1build1_s390x.deb ... 118s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 118s Selecting previously unselected package libjpeg-turbo8:s390x. 118s Preparing to unpack .../061-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 118s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 118s Selecting previously unselected package libjpeg8:s390x. 118s Preparing to unpack .../062-libjpeg8_8c-2ubuntu11_s390x.deb ... 118s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 118s Selecting previously unselected package libjs-bootstrap. 118s Preparing to unpack .../063-libjs-bootstrap_3.4.1+dfsg-3_all.deb ... 118s Unpacking libjs-bootstrap (3.4.1+dfsg-3) ... 118s Selecting previously unselected package libjs-popper.js. 118s Preparing to unpack .../064-libjs-popper.js_1.16.1+ds-6_all.deb ... 118s Unpacking libjs-popper.js (1.16.1+ds-6) ... 119s Selecting previously unselected package libjs-bootstrap4. 119s Preparing to unpack .../065-libjs-bootstrap4_4.6.1+dfsg1-4_all.deb ... 119s Unpacking libjs-bootstrap4 (4.6.1+dfsg1-4) ... 119s Selecting previously unselected package libjs-jquery-ui. 119s Preparing to unpack .../066-libjs-jquery-ui_1.13.2+dfsg-1_all.deb ... 119s Unpacking libjs-jquery-ui (1.13.2+dfsg-1) ... 119s Selecting previously unselected package liblbfgsb0:s390x. 119s Preparing to unpack .../067-liblbfgsb0_3.0+dfsg.4-1build1_s390x.deb ... 119s Unpacking liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 119s Selecting previously unselected package liblcms2-2:s390x. 119s Preparing to unpack .../068-liblcms2-2_2.16-2_s390x.deb ... 119s Unpacking liblcms2-2:s390x (2.16-2) ... 119s Selecting previously unselected package libqhull-r8.0:s390x. 119s Preparing to unpack .../069-libqhull-r8.0_2020.2-6build1_s390x.deb ... 119s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 119s Selecting previously unselected package libraqm0:s390x. 119s Preparing to unpack .../070-libraqm0_0.10.2-1_s390x.deb ... 119s Unpacking libraqm0:s390x (0.10.2-1) ... 119s Selecting previously unselected package libsharpyuv0:s390x. 119s Preparing to unpack .../071-libsharpyuv0_1.5.0-0.1_s390x.deb ... 119s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 119s Selecting previously unselected package libjbig0:s390x. 119s Preparing to unpack .../072-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 119s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 119s Selecting previously unselected package libwebp7:s390x. 119s Preparing to unpack .../073-libwebp7_1.5.0-0.1_s390x.deb ... 119s Unpacking libwebp7:s390x (1.5.0-0.1) ... 119s Selecting previously unselected package libtiff6:s390x. 119s Preparing to unpack .../074-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 119s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 119s Selecting previously unselected package libwebpdemux2:s390x. 119s Preparing to unpack .../075-libwebpdemux2_1.5.0-0.1_s390x.deb ... 119s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 119s Selecting previously unselected package libwebpmux3:s390x. 119s Preparing to unpack .../076-libwebpmux3_1.5.0-0.1_s390x.deb ... 119s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 119s Selecting previously unselected package libxslt1.1:s390x. 119s Preparing to unpack .../077-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 119s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 119s Selecting previously unselected package python-astropy-doc. 119s Preparing to unpack .../078-python-astropy-doc_7.0.1-1_all.deb ... 119s Unpacking python-astropy-doc (7.0.1-1) ... 119s Selecting previously unselected package python-matplotlib-data. 119s Preparing to unpack .../079-python-matplotlib-data_3.8.3-3ubuntu2_all.deb ... 119s Unpacking python-matplotlib-data (3.8.3-3ubuntu2) ... 119s Selecting previously unselected package python3-asdf-standard. 119s Preparing to unpack .../080-python3-asdf-standard_1.1.1-1_all.deb ... 119s Unpacking python3-asdf-standard (1.1.1-1) ... 119s Selecting previously unselected package python3-asdf-transform-schemas. 119s Preparing to unpack .../081-python3-asdf-transform-schemas_0.5.0-1_all.deb ... 119s Unpacking python3-asdf-transform-schemas (0.5.0-1) ... 119s Selecting previously unselected package python3-jmespath. 119s Preparing to unpack .../082-python3-jmespath_1.0.1-1_all.deb ... 119s Unpacking python3-jmespath (1.0.1-1) ... 119s Selecting previously unselected package python3-semantic-version. 119s Preparing to unpack .../083-python3-semantic-version_2.10.0-3_all.deb ... 119s Unpacking python3-semantic-version (2.10.0-3) ... 119s Selecting previously unselected package python3-asdf. 119s Preparing to unpack .../084-python3-asdf_4.1.0-1_all.deb ... 119s Unpacking python3-asdf (4.1.0-1) ... 119s Selecting previously unselected package python3-brotli. 119s Preparing to unpack .../085-python3-brotli_1.1.0-2build3_s390x.deb ... 119s Unpacking python3-brotli (1.1.0-2build3) ... 119s Selecting previously unselected package python3-contourpy. 119s Preparing to unpack .../086-python3-contourpy_1.3.1-1_s390x.deb ... 119s Unpacking python3-contourpy (1.3.1-1) ... 119s Selecting previously unselected package python3-cycler. 119s Preparing to unpack .../087-python3-cycler_0.12.1-1_all.deb ... 119s Unpacking python3-cycler (0.12.1-1) ... 119s Selecting previously unselected package python3-decorator. 119s Preparing to unpack .../088-python3-decorator_5.1.1-5_all.deb ... 119s Unpacking python3-decorator (5.1.1-5) ... 119s Selecting previously unselected package python3-pytz. 119s Preparing to unpack .../089-python3-pytz_2025.1-3_all.deb ... 119s Unpacking python3-pytz (2025.1-3) ... 119s Selecting previously unselected package python3-tz. 119s Preparing to unpack .../090-python3-tz_2025.1-3_all.deb ... 119s Unpacking python3-tz (2025.1-3) ... 119s Selecting previously unselected package python3-platformdirs. 119s Preparing to unpack .../091-python3-platformdirs_4.3.6-1_all.deb ... 119s Unpacking python3-platformdirs (4.3.6-1) ... 119s Selecting previously unselected package python3-fs. 119s Preparing to unpack .../092-python3-fs_2.4.16-6_all.deb ... 119s Unpacking python3-fs (2.4.16-6) ... 119s Selecting previously unselected package python3-lxml:s390x. 119s Preparing to unpack .../093-python3-lxml_5.3.1-1_s390x.deb ... 119s Unpacking python3-lxml:s390x (5.3.1-1) ... 119s Selecting previously unselected package python3-lz4. 119s Preparing to unpack .../094-python3-lz4_4.4.0+dfsg-1_s390x.deb ... 119s Unpacking python3-lz4 (4.4.0+dfsg-1) ... 119s Selecting previously unselected package python3-scipy. 119s Preparing to unpack .../095-python3-scipy_1.14.1-4ubuntu1_s390x.deb ... 119s Unpacking python3-scipy (1.14.1-4ubuntu1) ... 120s Selecting previously unselected package python3-mpmath. 120s Preparing to unpack .../096-python3-mpmath_1.3.0-1_all.deb ... 120s Unpacking python3-mpmath (1.3.0-1) ... 120s Selecting previously unselected package python3-sympy. 120s Preparing to unpack .../097-python3-sympy_1.13.3-1_all.deb ... 120s Unpacking python3-sympy (1.13.3-1) ... 120s Selecting previously unselected package python3-ufolib2. 120s Preparing to unpack .../098-python3-ufolib2_0.17.0+dfsg1-1_all.deb ... 120s Unpacking python3-ufolib2 (0.17.0+dfsg1-1) ... 120s Selecting previously unselected package python3-unicodedata2. 120s Preparing to unpack .../099-python3-unicodedata2_15.1.0+ds-1build2_s390x.deb ... 120s Unpacking python3-unicodedata2 (15.1.0+ds-1build2) ... 120s Selecting previously unselected package unicode-data. 120s Preparing to unpack .../100-unicode-data_15.1.0-1_all.deb ... 120s Unpacking unicode-data (15.1.0-1) ... 120s Selecting previously unselected package python3-fonttools. 120s Preparing to unpack .../101-python3-fonttools_4.55.3-2_s390x.deb ... 120s Unpacking python3-fonttools (4.55.3-2) ... 120s Selecting previously unselected package python3.12-tk. 120s Preparing to unpack .../102-python3.12-tk_3.12.9-1_s390x.deb ... 120s Unpacking python3.12-tk (3.12.9-1) ... 120s Selecting previously unselected package python3.13-tk. 120s Preparing to unpack .../103-python3.13-tk_3.13.2-1_s390x.deb ... 120s Unpacking python3.13-tk (3.13.2-1) ... 120s Selecting previously unselected package python3-tk:s390x. 120s Preparing to unpack .../104-python3-tk_3.13.1-1_s390x.deb ... 120s Unpacking python3-tk:s390x (3.13.1-1) ... 120s Selecting previously unselected package python3-pil.imagetk:s390x. 120s Preparing to unpack .../105-python3-pil.imagetk_11.1.0-5_s390x.deb ... 120s Unpacking python3-pil.imagetk:s390x (11.1.0-5) ... 120s Selecting previously unselected package libopenjp2-7:s390x. 120s Preparing to unpack .../106-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 120s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 120s Selecting previously unselected package python3-pil:s390x. 120s Preparing to unpack .../107-python3-pil_11.1.0-5_s390x.deb ... 120s Unpacking python3-pil:s390x (11.1.0-5) ... 120s Selecting previously unselected package python3-imageio. 120s Preparing to unpack .../108-python3-imageio_2.37.0-1_all.deb ... 120s Unpacking python3-imageio (2.37.0-1) ... 120s Selecting previously unselected package python3-kiwisolver. 120s Preparing to unpack .../109-python3-kiwisolver_1.4.7-3_s390x.deb ... 120s Unpacking python3-kiwisolver (1.4.7-3) ... 121s Selecting previously unselected package python3-lazy-loader. 121s Preparing to unpack .../110-python3-lazy-loader_0.4-1_all.deb ... 121s Unpacking python3-lazy-loader (0.4-1) ... 121s Selecting previously unselected package python3-matplotlib. 121s Preparing to unpack .../111-python3-matplotlib_3.8.3-3ubuntu2_s390x.deb ... 121s Unpacking python3-matplotlib (3.8.3-3ubuntu2) ... 121s Selecting previously unselected package python3-networkx. 121s Preparing to unpack .../112-python3-networkx_3.2.1-4ubuntu1_all.deb ... 121s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 121s Selecting previously unselected package python3-pandas-lib:s390x. 121s Preparing to unpack .../113-python3-pandas-lib_2.2.3+dfsg-8_s390x.deb ... 121s Unpacking python3-pandas-lib:s390x (2.2.3+dfsg-8) ... 121s Selecting previously unselected package python3-pandas. 121s Preparing to unpack .../114-python3-pandas_2.2.3+dfsg-8_all.deb ... 121s Unpacking python3-pandas (2.2.3+dfsg-8) ... 121s Selecting previously unselected package python3-pytest-mpl. 121s Preparing to unpack .../115-python3-pytest-mpl_0.17.0-1_all.deb ... 121s Unpacking python3-pytest-mpl (0.17.0-1) ... 121s Selecting previously unselected package python3-skimage-lib:s390x. 121s Preparing to unpack .../116-python3-skimage-lib_0.25.1-1_s390x.deb ... 121s Unpacking python3-skimage-lib:s390x (0.25.1-1) ... 121s Selecting previously unselected package python3-tifffile. 121s Preparing to unpack .../117-python3-tifffile_20250110-1_all.deb ... 121s Unpacking python3-tifffile (20250110-1) ... 121s Selecting previously unselected package python3-skimage. 121s Preparing to unpack .../118-python3-skimage_0.25.1-1_all.deb ... 121s Unpacking python3-skimage (0.25.1-1) ... 121s Selecting previously unselected package tzdata-legacy. 121s Preparing to unpack .../119-tzdata-legacy_2024b-6ubuntu1_all.deb ... 121s Unpacking tzdata-legacy (2024b-6ubuntu1) ... 122s Setting up libwcs8:s390x (8.4+ds-1) ... 122s Setting up liberfa1:s390x (2.0.1-1build1) ... 122s Setting up javascript-common (11+nmu1) ... 122s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 122s Setting up liblcms2-2:s390x (2.16-2) ... 122s Setting up python3-iniconfig (1.1.1-2) ... 122s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 122s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 122s Setting up libjs-popper.js (1.16.1+ds-6) ... 122s Setting up python3-lz4 (4.4.0+dfsg-1) ... 122s Setting up fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 122s Setting up python3-unicodedata2 (15.1.0+ds-1build2) ... 122s Setting up fonts-lyx (2.4.3-1) ... 122s Setting up python3-ply (3.11-7) ... 122s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 122s Setting up x11-common (1:7.7+23ubuntu3) ... 122s Setting up libdeflate0:s390x (1.23-1) ... 122s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 122s Setting up python3-pytz (2025.1-3) ... 122s Setting up python3-sortedcontainers (2.4.0-2) ... 123s Setting up libjs-jquery-throttle-debounce (1.1+dfsg.1-2) ... 123s Setting up libgomp1:s390x (14.2.0-17ubuntu1) ... 123s Setting up python3-asdf-standard (1.1.1-1) ... 123s Setting up python3-networkx (3.2.1-4ubuntu1) ... 125s Setting up python3-astropy-iers-data (0.2025.1.6.0.33.42-1) ... 125s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 125s Setting up python3-platformdirs (4.3.6-1) ... 125s Setting up tzdata-legacy (2024b-6ubuntu1) ... 125s Setting up python3-tz (2025.1-3) ... 125s Setting up python3-fs (2.4.16-6) ... 125s Setting up unicode-data (15.1.0-1) ... 125s Setting up python3-decorator (5.1.1-5) ... 125s Setting up libblas3:s390x (3.12.1-2) ... 125s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 125s Setting up python3-packaging (24.2-1) ... 126s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 126s Setting up python3-jmespath (1.0.1-1) ... 126s Setting up python3-brotli (1.1.0-2build3) ... 126s Setting up python3-cycler (0.12.1-1) ... 126s Setting up libimagequant0:s390x (2.18.0-1build1) ... 126s Setting up fonts-dejavu-mono (2.37-8) ... 126s Setting up python3-kiwisolver (1.4.7-3) ... 126s Setting up python3-semantic-version (2.10.0-3) ... 126s Setting up libtcl8.6:s390x (8.6.16+dfsg-1) ... 126s Setting up fonts-dejavu-core (2.37-8) ... 126s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 126s Setting up libgfortran5:s390x (14.2.0-17ubuntu1) ... 126s Setting up python3-pluggy (1.5.0-1) ... 126s Setting up libwebp7:s390x (1.5.0-0.1) ... 126s Setting up libnsl2:s390x (1.3.0-3build3) ... 126s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 126s Setting up python3-asdf-transform-schemas (0.5.0-1) ... 126s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 126s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 126s Setting up python3-dateutil (2.9.0-3) ... 127s Setting up libxss1:s390x (1:1.2.3-1build3) ... 127s Setting up libjs-bootstrap4 (4.6.1+dfsg1-4) ... 127s Setting up python3-lazy-loader (0.4-1) ... 127s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 127s Setting up python3-mpmath (1.3.0-1) ... 128s Setting up libjs-jquery-hotkeys (0.2.0-1) ... 128s Setting up python-matplotlib-data (3.8.3-3ubuntu2) ... 128s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 128s Setting up libjs-bootstrap (3.4.1+dfsg-3) ... 128s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 128s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 128s Setting up python3-sympy (1.13.3-1) ... 138s Setting up python3.12-minimal (3.12.9-1) ... 139s Setting up liblapack3:s390x (3.12.1-2) ... 139s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 139s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 139s Setting up fontconfig-config (2.15.0-1.1ubuntu2) ... 139s Setting up python3-pytest (8.3.4-1) ... 139s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 139s Setting up python3.12 (3.12.9-1) ... 140s Setting up python3-hypothesis (6.125.2-1) ... 141s Setting up python3-coverage (7.4.4+dfsg1-0ubuntu3) ... 141s Setting up libjs-jquery-ui (1.13.2+dfsg-1) ... 141s Setting up libjs-jquery-metadata (12-4) ... 141s Setting up libraqm0:s390x (0.10.2-1) ... 141s Setting up libjs-jquery-isonscreen (1.2.0-1.1) ... 141s Setting up python3-pytest-remotedata (0.4.1-1) ... 141s Setting up python3-numpy (1:1.26.4+ds-13) ... 144s Setting up libjs-sphinxdoc (8.1.3-4) ... 144s Setting up python3-pytest-doctestplus (1.4.0-1) ... 145s Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-4) ... 145s Setting up python3-pytest-mock (3.14.0-2) ... 145s Setting up python3-lxml:s390x (5.3.1-1) ... 145s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 145s Setting up python3-contourpy (1.3.1-1) ... 145s Setting up libfontconfig1:s390x (2.15.0-1.1ubuntu2) ... 145s Setting up python3-pytest-filter-subpackage (0.2.0-1) ... 145s Setting up python3-asdf (4.1.0-1) ... 146s Setting up python3-pytest-astropy-header (0.2.2-2) ... 146s Setting up liblbfgsb0:s390x (3.0+dfsg.4-1build1) ... 146s Setting up libxft2:s390x (2.3.6-1build1) ... 146s Setting up python3-scipy (1.14.1-4ubuntu1) ... 151s Setting up python3-skimage-lib:s390x (0.25.1-1) ... 151s Setting up libtk8.6:s390x (8.6.16-1) ... 151s Setting up python3-pandas-lib:s390x (2.2.3+dfsg-8) ... 151s Setting up python-astropy-doc (7.0.1-1) ... 151s Setting up python3.12-tk (3.12.9-1) ... 152s Setting up python3-pytest-cov (5.0.0-1) ... 152s Setting up python3-tifffile (20250110-1) ... 152s Setting up python3-pytest-arraydiff (0.6.1-3) ... 152s Setting up python3.13-tk (3.13.2-1) ... 152s Setting up python3-pil:s390x (11.1.0-5) ... 153s Setting up python3-erfa (2.0.1.5+ds-1build1) ... 153s Setting up python3-pandas (2.2.3+dfsg-8) ... 161s Setting up python3-pytest-astropy (0.11.0-1) ... 161s Setting up python3-imageio (2.37.0-1) ... 162s Setting up python3-astropy (7.0.1-1) ... 167s Setting up tk8.6-blt2.5 (2.5.3+dfsg-7build1) ... 167s Setting up blt (2.5.3+dfsg-7build1) ... 167s Setting up python3-tk:s390x (3.13.1-1) ... 167s Setting up python3-pil.imagetk:s390x (11.1.0-5) ... 167s Setting up astropy-utils (7.0.1-1) ... 167s Setting up python3-fonttools (4.55.3-2) ... 168s Setting up python3-ufolib2 (0.17.0+dfsg1-1) ... 168s Setting up python3-matplotlib (3.8.3-3ubuntu2) ... 171s Setting up python3-pytest-mpl (0.17.0-1) ... 171s Setting up python3-skimage (0.25.1-1) ... 172s Processing triggers for libc-bin (2.41-1ubuntu1) ... 172s Processing triggers for systemd (257.2-3ubuntu1) ... 172s Processing triggers for man-db (2.13.0-1) ... 172s autopkgtest: DBG: testbed command exited with code 0 172s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-astropy'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-astropy-doc'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'astropy-utils'], kind short, sout pipe, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Ifug6q/command1-packages.all"], kind short, sout raw, serr pipe, env [] 173s autopkgtest: DBG: testbed command exited with code 0 173s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ifug6q/command1-packages.all /tmp/autopkgtest-work.s8b9kwxn/out/command1-packages.all 173s autopkgtest: DBG: got reply from testbed: ok 173s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Ifug6q/build.kRg/src'], kind short, sout raw, serr raw, env [] 174s autopkgtest: DBG: testbed command exited with code 0 174s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.Ifug6q/build.kRg/src already exists 174s autopkgtest [21:32:01]: test command1: cd $AUTOPKGTEST_TMP && python3 -m pytest --astropy-header -m "not hypothesis" --pyargs astropy 174s autopkgtest [21:32:01]: test command1: [----------------------- 174s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.Ifug6q/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Ifug6q/command1-artifacts --chdir=/tmp/autopkgtest.Ifug6q/build.kRg/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.Ifug6q/command1-stderr --stdout=/tmp/autopkgtest.Ifug6q/command1-stdout --tmp=/tmp/autopkgtest.Ifug6q/autopkgtest_tmp \'--env=ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1\' -- bash -ec \'cd $AUTOPKGTEST_TMP && python3 -m pytest --astropy-header -m "not hypothesis" --pyargs astropy\''], kind test, sout raw, serr raw, env [] 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Ifug6q/command1-artifacts 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: changing to directory: /tmp/autopkgtest.Ifug6q/build.kRg/src 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: setting environment: LANG=C.UTF-8 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LANGUAGE 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_ADDRESS 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_ALL 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_COLLATE 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_CTYPE 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_IDENTIFICATION 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_MEASUREMENT 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_MESSAGES 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_MONETARY 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_NAME 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_NUMERIC 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_PAPER 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_TELEPHONE 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: unsetting environment: LC_TIME 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: pretending to be a login shell 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: will write standard error to /tmp/autopkgtest.Ifug6q/command1-stderr 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: will write stdout to /tmp/autopkgtest.Ifug6q/command1-stdout 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Ifug6q/autopkgtest_tmp 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=glibc/2.41-1ubuntu1 iproute2/6.13.0-1ubuntu1 php-twig/3.19.0-1 postgresql-17/17.3-2 postgresql-common/273 roundcube/1.6.10+dfsg-1 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: command to run: bash -ec cd $AUTOPKGTEST_TMP && python3 -m pytest --astropy-header -m "not hypothesis" --pyargs astropy 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: copying /tmp/tmp.QUQwrEUxKn/out to stdout and file: /tmp/autopkgtest.Ifug6q/command1-stdout 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: copying /tmp/tmp.QUQwrEUxKn/err to standard error and file: /tmp/autopkgtest.Ifug6q/command1-stdout 174s /tmp/autopkgtest.Ifug6q/wrapper.sh: writing script pid 3415 to /tmp/autopkgtest_script_pid 193s ============================= test session starts ============================== 193s platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0 193s Matplotlib: 3.8.3 193s Freetype: 2.13.3 193s Running tests in astropy. 193s 193s Date: 2025-02-15T21:32:01 193s 193s Platform: Linux-6.12.0-15-generic-s390x-with-glibc2.41 193s 193s Executable: /usr/bin/python3 193s 193s Full Python Version: 193s 3.13.2 (main, Feb 5 2025, 01:23:35) [GCC 14.2.0] 193s 193s encodings: sys: utf-8, locale: UTF-8, filesystem: utf-8 193s byteorder: big 193s float info: dig: 15, mant_dig: 15 193s 193s Package versions: 193s Numpy: 1.26.4 193s Scipy: 1.14.1 193s Matplotlib: 3.8.3 193s h5py: not available 193s Pandas: 2.2.3 193s 193s Using Astropy options: remote_data: none. 193s 193s rootdir: /tmp/autopkgtest.Ifug6q/autopkgtest_tmp 193s plugins: doctestplus-1.4.0, mock-3.14.0, cov-5.0.0, hypothesis-6.125.2, filter-subpackage-0.2.0, asdf-4.1.0, remotedata-0.4.1, mpl-0.17.0, astropy-0.11.0, astropy-header-0.2.2, arraydiff-0.6.1, typeguard-4.4.1 193s collected 29390 items / 72 deselected / 6 skipped / 29318 selected 193s 193s config/tests/test_configs.py ...................... [ 0%] 193s constants/tests/test_constant.py ........ [ 0%] 193s constants/tests/test_pickle.py ......... [ 0%] 193s constants/tests/test_prior_version.py .......... [ 0%] 193s constants/tests/test_sciencestate.py .. [ 0%] 193s convolution/tests/test_convolve.py ..................................... [ 0%] 193s ........................................................................ [ 0%] 193s ........................................................................ [ 0%] 193s ........................................................................ [ 1%] 193s ........................................................................ [ 1%] 193s ........................................................................ [ 1%] 193s ........................................................................ [ 1%] 193s ...........x.x.x.x.x.x.x.x.............................................. [ 2%] 194s ........................................................................ [ 2%] 195s .... [ 2%] 195s convolution/tests/test_convolve_fft.py ................................. [ 2%] 195s ........................................................................ [ 2%] 195s ........................................................................ [ 2%] 195s ........................................................................ [ 3%] 195s ........................................................................ [ 3%] 195s ........................................................................ [ 3%] 196s ........................................................................ [ 3%] 196s ........................................................................ [ 4%] 196s ........................................................................ [ 4%] 196s ........ [ 4%] 196s convolution/tests/test_convolve_kernels.py ............................. [ 4%] 196s ........................................................................ [ 4%] 196s .......... [ 4%] 196s convolution/tests/test_convolve_models.py ............ [ 4%] 196s convolution/tests/test_convolve_nddata.py ... [ 4%] 196s convolution/tests/test_discretize.py ...s...........s........s........s. [ 4%] 197s .......... [ 4%] 197s convolution/tests/test_kernel_class.py ................................. [ 5%] 198s ........................................................................ [ 5%] 198s ........................................................................ [ 5%] 198s ..... [ 5%] 198s convolution/tests/test_pickle.py .xx.xx.xx [ 5%] 198s coordinates/tests/accuracy/test_altaz_icrs.py ...x [ 5%] 199s coordinates/tests/accuracy/test_ecliptic.py ........................... [ 5%] 199s coordinates/tests/accuracy/test_fk4_no_e_fk4.py . [ 5%] 199s coordinates/tests/accuracy/test_fk4_no_e_fk5.py . [ 5%] 199s coordinates/tests/accuracy/test_galactic_fk4.py . [ 5%] 199s coordinates/tests/accuracy/test_icrs_fk5.py . [ 5%] 199s coordinates/tests/test_angle_generators.py .... [ 5%] 199s coordinates/tests/test_angles.py ....................................... [ 5%] 203s ........................................................................ [ 6%] 203s .............. [ 6%] 203s coordinates/tests/test_angular_separation.py .. [ 6%] 203s coordinates/tests/test_api_ape5.py ....s [ 6%] 203s coordinates/tests/test_arrays.py .s............ [ 6%] 203s coordinates/tests/test_atc_replacements.py .... [ 6%] 203s coordinates/tests/test_celestial_transformations.py .................... [ 6%] 203s ... [ 6%] 203s coordinates/tests/test_distance.py ............ [ 6%] 203s coordinates/tests/test_earth.py ..............s.... [ 6%] 203s coordinates/tests/test_earth_orientation.py ...... [ 6%] 204s coordinates/tests/test_erfa_astrom.py ..... [ 6%] 204s coordinates/tests/test_exceptions.py ........ [ 6%] 205s coordinates/tests/test_finite_difference_velocities.py ...........xx [ 6%] 205s coordinates/tests/test_formatting.py ....................... [ 6%] 205s coordinates/tests/test_frames.py ....................................... [ 6%] 205s ............................... [ 6%] 205s coordinates/tests/test_frames_with_velocity.py ......................... [ 6%] 205s ......................... [ 7%] 205s coordinates/tests/test_funcs.py ..x........................... [ 7%] 205s coordinates/tests/test_geodetic_representations.py .................... [ 7%] 205s coordinates/tests/test_iau_fullstack.py ................................ [ 7%] 206s .................... [ 7%] 206s coordinates/tests/test_icrs_observed_transformations.py .. [ 7%] 206s coordinates/tests/test_intermediate_transformations.py ................. [ 7%] 206s .................................................ss...s.... [ 7%] 207s coordinates/tests/test_masked.py ....................................... [ 7%] 207s ...... [ 7%] 207s coordinates/tests/test_matching.py ............................ [ 7%] 207s coordinates/tests/test_matrix_utilities.py .... [ 7%] 207s coordinates/tests/test_name_resolve.py ss.ss [ 7%] 207s coordinates/tests/test_pickle.py ....xx.x...xx.x...xx.x............. [ 8%] 207s coordinates/tests/test_polarization.py ................ [ 8%] 208s coordinates/tests/test_regression.py ................................... [ 8%] 208s .s............. [ 8%] 208s coordinates/tests/test_representation.py ............................... [ 8%] 208s ........................................................................ [ 8%] 208s .................................. [ 8%] 209s coordinates/tests/test_representation_arithmetic.py .................... [ 8%] 209s ........................................................................ [ 9%] 209s ....................................................... [ 9%] 209s coordinates/tests/test_representation_methods.py ....................... [ 9%] 209s ...... [ 9%] 209s coordinates/tests/test_separation.py ................................... [ 9%] 209s ........................................................................ [ 9%] 209s ................................. [ 9%] 209s coordinates/tests/test_shape_manipulation.py ............ [ 9%] 209s coordinates/tests/test_sites.py .ss.............s... [ 9%] 210s coordinates/tests/test_sky_coord.py .................................... [ 10%] 210s ........................................................................ [ 10%] 210s ........................................................................ [ 10%] 211s ........................................................................ [ 10%] 211s ........................................................................ [ 11%] 211s ................................................................x....... [ 11%] 211s .........s...................... [ 11%] 212s coordinates/tests/test_sky_coord_velocities.py ........x.......x.x...... [ 11%] 212s ......... [ 11%] 212s coordinates/tests/test_skyoffset_transformations.py .................... [ 11%] 212s ........................................................................ [ 11%] 212s . [ 11%] 212s coordinates/tests/test_solar_system.py sss......sssssssssssss....sssssss [ 11%] 212s sssss.s [ 11%] 212s coordinates/tests/test_spectral_coordinate.py .......................... [ 12%] 213s ..................................x...........ssssss [ 12%] 213s coordinates/tests/test_spectral_quantity.py ............................ [ 12%] 213s x [ 12%] 213s coordinates/tests/test_transformations.py .............................. [ 12%] 213s .............. [ 12%] 213s coordinates/tests/test_unit_representation.py . [ 12%] 213s coordinates/tests/test_utils.py .. [ 12%] 213s coordinates/tests/test_velocity_corrs.py .........s [ 12%] 213s cosmology/_io/tests/test_.py .. [ 12%] 213s cosmology/_io/tests/test_cosmology.py .................................. [ 12%] 213s ...................... [ 12%] 214s cosmology/_io/tests/test_ecsv.py ....................................... [ 12%] 215s ......................................... [ 12%] 215s cosmology/_io/tests/test_html.py sssssssssssssssssssssssssssssssssssssss [ 13%] 215s sssssssssssssssssssssssssssssssssssssssss [ 13%] 215s cosmology/_io/tests/test_json.py ........ [ 13%] 215s cosmology/_io/tests/test_latex.py ...................................... [ 13%] 215s .......................... [ 13%] 215s cosmology/_io/tests/test_mapping.py .................................... [ 13%] 215s ........................................................................ [ 13%] 216s ............................s [ 13%] 216s cosmology/_io/tests/test_model.py ...................................... [ 14%] 216s ............................ [ 14%] 216s cosmology/_io/tests/test_row.py ........................................ [ 14%] 216s ........................................ [ 14%] 216s cosmology/_io/tests/test_table.py ...................................... [ 14%] 216s ........................................................................ [ 14%] 216s .................................. [ 14%] 216s cosmology/_io/tests/test_yaml.py ....................................... [ 15%] 217s ................... [ 15%] 217s cosmology/flrw/tests/test_base.py s [ 15%] 217s cosmology/flrw/tests/test_flrw.py ...................................... [ 15%] 217s ..................................................sssssssss...........sx [ 15%] 217s .x.sx.x................................................................. [ 15%] 217s .......................s................................................ [ 16%] 217s ........................................................................ [ 16%] 217s ..... [ 16%] 217s cosmology/flrw/tests/test_lambdacdm.py s................................ [ 16%] 218s ........................................................sssssssss....... [ 16%] 218s ....sx.x.sx.x........................................................... [ 16%] 218s ........................................................................ [ 17%] 218s ........................................................................ [ 17%] 218s ........................................................................ [ 17%] 218s ...................................................................sssss [ 17%] 218s ssss...........sx.x.sx.x................................................ [ 18%] 218s ........................................................................ [ 18%] 218s ........................................................................ [ 18%] 219s ........................................................................ [ 18%] 219s .......................................... [ 19%] 219s cosmology/flrw/tests/test_w.py .. [ 19%] 219s cosmology/flrw/tests/test_w0cdm.py ..................................... [ 19%] 219s ...................................................sssssssss...........s [ 19%] 219s x.x.sx.x................................................................ [ 19%] 219s ........................................................................ [ 19%] 219s ........................................................................ [ 20%] 220s ........................................................................ [ 20%] 220s ................................................sssssssss...........sx.x [ 20%] 220s .sx.x................................................................... [ 20%] 220s ........................................................................ [ 21%] 220s ........................................................................ [ 21%] 220s ................................ [ 21%] 220s cosmology/flrw/tests/test_w0wacdm.py ................................... [ 21%] 221s .....................................................sssssssss.......... [ 21%] 221s .sx.x.sx.x.............................................................. [ 22%] 221s ........................................................................ [ 22%] 221s ........................................................................ [ 22%] 221s ........................................................................ [ 22%] 221s ...........................................sssssssss...........sx.x.sx.x [ 23%] 221s ........................................................................ [ 23%] 222s ........................................................................ [ 23%] 222s ........................................................................ [ 23%] 222s ...................... [ 23%] 222s cosmology/flrw/tests/test_w0wzcdm.py ................................... [ 23%] 222s ....................................................sssssssss........... [ 24%] 222s sx.x.sx.x............................................................... [ 24%] 222s ........................................................................ [ 24%] 222s ........................................................................ [ 24%] 222s .......................X................................................ [ 25%] 223s ............................................sssssssss...........sx.x.sx. [ 25%] 223s x....................................................................... [ 25%] 223s ........................................................................ [ 25%] 223s ........................................................................ [ 26%] 223s ........................ [ 26%] 223s cosmology/flrw/tests/test_wpwazpcdm.py ................................. [ 26%] 223s .......................................................sssssssss........ [ 26%] 224s ...sx.x.sx.x............................................................ [ 26%] 224s ........................................................................ [ 27%] 224s ........................................................................ [ 27%] 224s ........................................................................ [ 27%] 224s ..................................................sssssssss...........sx [ 27%] 224s .x.sx.x................................................................. [ 28%] 224s ........................................................................ [ 28%] 224s ........................................................................ [ 28%] 224s .............................. [ 28%] 225s cosmology/funcs/tests/test_comparison.py ..................x...x...x...x [ 28%] 225s ...x......x...x...x...x...x.. [ 28%] 225s cosmology/funcs/tests/test_funcs.py ............................. [ 29%] 225s cosmology/parameter/tests/test_descriptors.py ..... [ 29%] 225s cosmology/parameter/tests/test_parameter.py ............................ [ 29%] 225s ........... [ 29%] 226s cosmology/tests/test_connect.py ........sssssssss...........sx.x.sx.x.sx [ 29%] 226s .x........sssssssss...........sx.x.sx.x.sx.x........sssssssss........... [ 29%] 227s sx.x.sx.x.sx.x........sssssssss...........sx.x.sx.x.sx.x........ssssssss [ 29%] 228s s...........sx.x.sx.x.sx.x........sssssssss...........sx.x.sx.x.sx.x.... [ 30%] 228s ....sssssssss...........sx.x.sx.x.sx.x........sssssssss...........sx.x.s [ 30%] 228s x.x.sx.x.sx.x........................................................... [ 30%] 229s ........................................................................ [ 30%] 229s ........................................................................ [ 31%] 229s ........................................................................ [ 31%] 229s ........................................................................ [ 31%] 229s ........................................................................ [ 31%] 229s ........................................................................ [ 31%] 230s ........................................................................ [ 32%] 230s ........................................................................ [ 32%] 230s ............................... [ 32%] 230s cosmology/tests/test_core.py ........................................... [ 32%] 230s .............................................sssssssss...........sx.x.sx [ 32%] 230s .x............................................. [ 33%] 230s cosmology/tests/test_parameters.py ......... [ 33%] 230s cosmology/tests/test_realizations.py ................................... [ 33%] 230s ........... [ 33%] 230s cosmology/tests/test_units.py ...................... [ 33%] 230s cosmology/tests/test_utils.py ........................... [ 33%] 231s io/ascii/tests/test_c_reader.py ........................................ [ 33%] 232s ..............................ssssss..ss.....................xx......... [ 33%] 232s ....... [ 33%] 232s io/ascii/tests/test_cds.py ............. [ 33%] 232s io/ascii/tests/test_cds_header_from_readme.py ............. [ 33%] 232s io/ascii/tests/test_compressed.py ....... [ 34%] 232s io/ascii/tests/test_connect.py .............ss......... [ 34%] 233s io/ascii/tests/test_ecsv.py ............................................ [ 34%] 234s ........................................................................ [ 34%] 235s ........................................................................ [ 34%] 235s ................................................................ [ 34%] 235s io/ascii/tests/test_fixedwidth.py .................................... [ 35%] 235s io/ascii/tests/test_html.py s.ssssss.ssssss.s.sss......s [ 35%] 235s io/ascii/tests/test_ipac_definitions.py ..................... [ 35%] 235s io/ascii/tests/test_qdp.py ......... [ 35%] 240s io/ascii/tests/test_read.py ............................................ [ 35%] 240s ........................................................................ [ 35%] 241s ...........s........................................ [ 35%] 241s io/ascii/tests/test_rst.py .......... [ 35%] 241s io/ascii/tests/test_types.py ....... [ 35%] 241s io/ascii/tests/test_write.py ........................................... [ 36%] 242s ........................................................................ [ 36%] 242s ..................................... [ 36%] 242s io/fits/hdu/compressed/tests/test_checksum.py .... [ 36%] 243s io/fits/hdu/compressed/tests/test_compressed.py ...........s.....s...... [ 36%] 244s ............................................................... [ 36%] 244s io/fits/hdu/compressed/tests/test_compression_failures.py .............. [ 36%] 244s ...................... [ 36%] 245s io/fits/hdu/compressed/tests/test_tiled_compression.py ................. [ 36%] 245s ........................................................................ [ 37%] 246s ........xxxx.xxxx.xxxx.xxxx.xxxx.xxxx................................... [ 37%] 247s ........................................................................ [ 37%] 248s ........................................................................ [ 37%] 248s ..xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.xxxx.. [ 38%] 248s io/fits/tests/test_checksum.py .................. [ 38%] 249s io/fits/tests/test_connect.py .......................................... [ 38%] 250s ........................................................................ [ 38%] 251s .........ssss......ss........................ss.xxxxx........... [ 38%] 251s io/fits/tests/test_convenience.py ...................................... [ 38%] 251s .. [ 38%] 252s io/fits/tests/test_core.py ......................................s...... [ 39%] 252s .................................................. [ 39%] 252s io/fits/tests/test_diff.py ............................................. [ 39%] 252s ..... [ 39%] 252s io/fits/tests/test_division.py ..... [ 39%] 252s io/fits/tests/test_fitscheck.py ....... [ 39%] 252s io/fits/tests/test_fitsdiff.py ..............s..s... [ 39%] 252s io/fits/tests/test_fitsheader.py .......... [ 39%] 252s io/fits/tests/test_fitsinfo.py .... [ 39%] 253s io/fits/tests/test_fitstime.py ............................. [ 39%] 253s io/fits/tests/test_fsspec.py ssssss [ 39%] 254s io/fits/tests/test_groups.py ............ [ 39%] 254s io/fits/tests/test_hdulist.py .......................................... [ 39%] 254s ............................. [ 39%] 254s io/fits/tests/test_header.py ........................................... [ 40%] 254s ........................................................................ [ 40%] 255s ............................................................. [ 40%] 257s io/fits/tests/test_image.py ............................................ [ 40%] 257s . [ 40%] 257s io/fits/tests/test_nonstandard.py ... [ 40%] 257s io/fits/tests/test_structured.py . [ 40%] 257s io/fits/tests/test_table.py ............................................ [ 40%] 258s ...........................sss.................ss....................... [ 41%] 258s ....... [ 41%] 258s io/fits/tests/test_tilde_path.py ................................. [ 41%] 258s io/fits/tests/test_uint.py ......... [ 41%] 258s io/fits/tests/test_util.py ......... [ 41%] 258s io/misc/tests/test_hdf5.py sssssssssssssssssssssssssssssssssssssssssssss [ 41%] 258s ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssxsss [ 41%] 258s io/misc/tests/test_pandas.py ........ [ 41%] 258s io/misc/tests/test_pickle_helpers.py .... [ 41%] 258s io/misc/tests/test_yaml.py ............................................. [ 41%] 258s ...... [ 41%] 258s io/registry/tests/test_registries.py ...............ss...........ss.s... [ 42%] 259s ...................................ss..s................................ [ 42%] 259s .ss..................................................s.............ss... [ 42%] 259s ...............................................s........ [ 42%] 259s io/registry/tests/test_registry_help.py .......... [ 42%] 259s io/votable/tests/test_converter.py .......................... [ 42%] 259s io/votable/tests/test_coosys.py .... [ 42%] 259s io/votable/tests/test_exception.py ... [ 42%] 259s io/votable/tests/test_resource.py .. [ 42%] 259s io/votable/tests/test_schema_versions.py ssssssssssssss [ 42%] 259s io/votable/tests/test_table.py ...........ssss........Validation report for /usr/lib/python3/dist-packages/astropy/io/votable/tests/data/regression.xml 259s 259s 11: W01: Array uses commas rather than whitespace 259s 259s ^ 259s 259s 28: W10: Unknown tag 'DESCRIPTION'. Ignoring 259s Really, this link is totally bogus. 259s ^ 259s 259s 34: W26: 'INFO' inside 'TABLE' added in VOTable 1.2 259s 259s ^ 259s 259s 57: W10: Unknown tag 'IGNORE_ME'. Ignoring 259s 259s ^ 259s 259s 98: W17: GROUP element contains more than one DESCRIPTION element 259s This should warn of a second description. 259s ^ 259s 259s 105: W01: Array uses commas rather than whitespace 259s Fixed string long test 259s ^ 259s 259s 115: W46: unicodeChar value is too long for specified length of 10 259s Ceçi n'est pas un pipe 259s ^ 259s 259s 116: W46: char value is too long for specified length of 4 259s ab cd 259s ^ 259s 259s 136: E02: Incorrect number of elements in array. Expected multiple of 259s 4, got 1 259s 259s ^ 259s 259s 136: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 144: W46: char value is too long for specified length of 10 259s 0123456789A 259s ^ 259s 259s 147: W46: char value is too long for specified length of 4 259s 0123456789A 259s ^ 259s 259s 148: W51: Value '256' is out of range for a 8-bit unsigned integer 259s field 259s 256 259s ^ 259s 259s 149: W51: Value '65536' is out of range for a 16-bit integer field 259s 65536 259s ^ 259s 259s 152: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 155: W01: Array uses commas rather than whitespace 259s 42 32, 12 32 259s ^ 259s 259s 171: E02: Incorrect number of elements in array. Expected multiple of 259s 16, got 0 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. 259s 259s ^ 259s 259s 171: W49: Empty cell illegal for integer fields. (suppressing further 259s warnings of this type...) 259s 259s ^ 259s 259s 177: W46: unicodeChar value is too long for specified length of 10 259s 0123456789A 259s ^ 259s 259s 179: W51: Value '-23' is out of range for a 8-bit unsigned integer 259s field 259s -23 259s ^ 259s 259s 202: E02: Incorrect number of elements in array. Expected multiple of 259s 16, got 0 259s 259s ^ 259s 259s 211: W51: Value '65535' is out of range for a 16-bit integer field 259s 0xffff 259s ^ 259s 259s 217: W01: Array uses commas rather than whitespace 259s NaN, 23 259s ^ 259s 259s 219: E02: Incorrect number of elements in array. Expected multiple of 259s 6, got 0 259s 259s ^ 259s 259s 227: E02: Incorrect number of elements in array. Expected multiple of 259s 4, got 1 259s 259s ^ 259s 259s 233: E02: Incorrect number of elements in array. Expected multiple of 259s 16, got 0 259s 259s ^ 259s 259s 241: W51: Value '256' is out of range for a 8-bit unsigned integer 259s field 259s 0x100 259s ^ 259s 259s 242: W51: Value '65536' is out of range for a 16-bit integer field 259s 0x10000 259s ^ 259s 259s 248: W01: Array uses commas rather than whitespace 259s 31, -1 259s ^ 259s 259s 250: E02: Incorrect number of elements in array. Expected multiple of 259s 6, got 0 259s 259s ^ 259s 259s 258: E02: Incorrect number of elements in array. Expected multiple of 259s 4, got 1 259s 259s ^ 259s 259s 260: E02: Incorrect number of elements in array. Expected multiple of 259s 4, got 1 (suppressing further warnings of this type...) 259s 259s ^ 259s 259s 278: W46: char value is too long for specified length of 10 259s Fixed string long test 259s ^ 259s 259s 280: W46: unicodeChar value is too long for specified length of 10 259s Ceçi n'est pas un pipe 259s ^ 259s 259s 281: W46: char value is too long for specified length of 4 259s ab cd 259s ^ 259s 259s .Validation report for /usr/lib/python3/dist-packages/astropy/io/votable/tests/data/valid_votable.xml 259s 259s astropy.io.votable found no violations. 259s 259s .Validation report for /usr/lib/python3/dist-packages/astropy/io/votable/tests/data/valid_votable.xml 259s 259s astropy.io.votable found no violations. 259s 259s ......... [ 43%] 259s io/votable/tests/test_tree.py ............................ [ 43%] 259s io/votable/tests/test_ucd.py ..... [ 43%] 259s io/votable/tests/test_util.py ........... [ 43%] 259s io/votable/tests/test_vo.py ............................................ [ 43%] 259s ...X..............................X.................................X... [ 43%] 260s ................................X.....................Validation report for /usr/lib/python3/dist-packages/astropy/io/votable/tests/data/empty_table.xml 260s 260s astropy.io.votable found no violations. 260s 260s xmllint passed 260s .............. [ 43%] 260s modeling/tests/test_bounding_box.py .................................... [ 43%] 260s ............................................................. [ 44%] 260s modeling/tests/test_compound.py ........................................ [ 44%] 260s .......................................... [ 44%] 260s modeling/tests/test_constraints.py ..................................... [ 44%] 263s x.....x.x...... [ 44%] 263s modeling/tests/test_convolution.py .... [ 44%] 263s modeling/tests/test_core.py ............................................ [ 44%] 263s ......................... [ 44%] 263s modeling/tests/test_fitters.py ............................XXXXXXXXXXXXX [ 44%] 265s XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX...................................xxx.. [ 45%] 265s ............XXXXXXXXXXXXX............................. [ 45%] 265s modeling/tests/test_functional_models.py ............................... [ 45%] 266s ..XXXXXXXXXXXXXX................ [ 45%] 266s modeling/tests/test_input.py ........................................... [ 45%] 267s .................................................... [ 45%] 267s modeling/tests/test_mappings.py ................ [ 45%] 267s modeling/tests/test_math_func.py . [ 45%] 267s modeling/tests/test_model_sets.py ...................................... [ 46%] 267s . [ 46%] 267s modeling/tests/test_models.py ....................................XXXXXX [ 46%] 267s XXXXXXXXXXXXXXXXXXXXXX.................................................. [ 46%] 267s ......XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssX [ 46%] 267s XXXXXXXXXXXXXXXXXsXXXXXXXXXXXXXXXXXXXXXXXXXXXX.......................... [ 46%] 267s .....................................ss................................. [ 47%] 267s ........................................................................ [ 47%] 268s ..............................s......................................... [ 47%] 269s ..............s.........................X.................... [ 47%] 269s modeling/tests/test_models_quantities.py XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX [ 48%] 269s XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX [ 48%] 269s XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX [ 48%] 269s XXXXXXXXXXXXXXXXXXXXXXXXX............................................... [ 48%] 269s .....................................................XXXXXXXXXXXXXXXXXXX [ 49%] 270s XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX [ 49%] 270s XXXXXXXXXsXXXXXXXXXXXXXXXXsXXXXsXXXXXXXXXXXXXXXsXXXXXXXXXXXXXXXXXXXXXXXX [ 49%] 270s XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX........................ [ 49%] 270s modeling/tests/test_parameters.py ...................................... [ 49%] 270s ................................... [ 49%] 271s modeling/tests/test_physical_models.py ..................x.. [ 50%] 271s modeling/tests/test_pickle.py .......................................... [ 50%] 271s ........................................................................ [ 50%] 271s ....................................................... [ 50%] 271s modeling/tests/test_polynomial.py ...................................... [ 50%] 275s ........................................................................ [ 50%] 275s ..... [ 51%] 275s modeling/tests/test_projections.py ..................................... [ 51%] 275s ........................................................................ [ 51%] 275s ........................................................................ [ 51%] 275s ................ [ 51%] 275s modeling/tests/test_quantities_evaluation.py .................... [ 51%] 276s modeling/tests/test_quantities_fitting.py ........................sss... [ 51%] 276s ..... [ 51%] 276s modeling/tests/test_quantities_model.py ................................ [ 51%] 276s ........................................................................ [ 52%] 276s ........................................................................ [ 52%] 276s ....................... [ 52%] 276s modeling/tests/test_quantities_parameters.py ................ [ 52%] 276s modeling/tests/test_quantities_rotations.py ............... [ 52%] 276s modeling/tests/test_rotations.py ................................. [ 52%] 276s modeling/tests/test_separable.py ............... [ 52%] 277s modeling/tests/test_spline.py .......................................... [ 52%] 279s ..................................................................... [ 53%] 279s modeling/tests/test_statistics.py ........... [ 53%] 279s modeling/tests/test_units_mapping.py ..... [ 53%] 279s modeling/tests/test_utils.py ....... [ 53%] 279s nddata/mixins/tests/test_ndarithmetic.py ............................... [ 53%] 279s ........................................................................ [ 53%] 279s ........................................................................ [ 53%] 279s ........ [ 53%] 279s nddata/mixins/tests/test_ndio.py . [ 53%] 279s nddata/mixins/tests/test_ndslicing.py .......... [ 53%] 279s nddata/tests/test_bitmask.py ........................................... [ 54%] 279s ................................................................. [ 54%] 279s nddata/tests/test_blocks.py .................... [ 54%] 279s nddata/tests/test_ccddata.py ........................................... [ 54%] 280s ........................................................... [ 54%] 280s nddata/tests/test_compat.py ................. [ 54%] 280s nddata/tests/test_decorators.py ................................... [ 54%] 280s nddata/tests/test_flag_collection.py .......... [ 54%] 280s nddata/tests/test_nddata.py .....................................s...... [ 55%] 283s ........................................................................ [ 55%] 286s ........................................................................ [ 55%] 288s ................................ [ 55%] 288s nddata/tests/test_nddata_base.py .. [ 55%] 289s nddata/tests/test_nduncertainty.py ..................................... [ 55%] 289s ............................................... [ 55%] 289s nddata/tests/test_utils.py ............................................. [ 56%] 289s .............. [ 56%] 290s samp/tests/test_client.py .s... [ 56%] 290s samp/tests/test_errors.py ... [ 56%] 290s samp/tests/test_hub.py .ss [ 56%] 290s samp/tests/test_hub_proxy.py ..... [ 56%] 290s samp/tests/test_hub_script.py s [ 56%] 290s samp/tests/test_standard_profile.py . [ 56%] 291s samp/tests/test_web_profile.py .. [ 56%] 291s stats/tests/test_bayesian_blocks.py ........ [ 56%] 291s stats/tests/test_biweight.py ........................................... [ 56%] 291s . [ 56%] 291s stats/tests/test_circstats.py ......... [ 56%] 292s stats/tests/test_funcs.py .............................................. [ 56%] 293s s..............................ss.. [ 56%] 293s stats/tests/test_histogram.py ................... [ 56%] 293s stats/tests/test_info_theory.py .... [ 56%] 293s stats/tests/test_jackknife.py .... [ 56%] 293s stats/tests/test_sigma_clipping.py .................................ss.. [ 56%] 293s .......................... [ 57%] 294s stats/tests/test_spatial.py ............ [ 57%] 294s table/mixins/tests/test_registry.py ....... [ 57%] 294s table/tests/test_array.py ... [ 57%] 294s table/tests/test_bst.py ....... [ 57%] 294s table/tests/test_column.py ............................................. [ 57%] 294s ........................................................................ [ 57%] 294s .....................x.x [ 57%] 295s table/tests/test_groups.py ............................................. [ 57%] 295s ... [ 57%] 295s table/tests/test_index.py .............................................. [ 57%] 295s ........................................................................ [ 58%] 295s ........................................................................ [ 58%] 295s ........................................................................ [ 58%] 296s ........................................................................ [ 58%] 296s ........................................................................ [ 59%] 296s ........................................................................ [ 59%] 296s ................................................. [ 59%] 296s table/tests/test_info.py ................ [ 59%] 296s table/tests/test_init_table.py ......................................... [ 59%] 296s ........................................................................ [ 60%] 296s ........................................................................ [ 60%] 296s ...... [ 60%] 296s table/tests/test_item_access.py ...................................... [ 60%] 296s table/tests/test_jsviewer.py .....s.ss. [ 60%] 296s table/tests/test_masked.py ............................................. [ 60%] 296s ................................................ [ 60%] 296s table/tests/test_mixin.py .............................................. [ 60%] 297s ....................ss.....sss..s....................................... [ 61%] 297s ........................................................................ [ 61%] 297s ..................................................... [ 61%] 297s table/tests/test_np_utils.py . [ 61%] 297s table/tests/test_operations.py .......x...x.x.x............x.....x...... [ 61%] 298s ................................................x...x...x............... [ 61%] 298s ...........................................................x............ [ 62%] 298s ................x.................................................. [ 62%] 299s table/tests/test_pickle.py .................................... [ 62%] 299s table/tests/test_pprint.py ............................................. [ 62%] 299s ............................................ [ 62%] 299s table/tests/test_row.py ................................................ [ 63%] 299s ... [ 63%] 299s table/tests/test_showtable.py ............ [ 63%] 299s table/tests/test_subclass.py .. [ 63%] 299s table/tests/test_table.py .............................................. [ 63%] 299s ........................................................................ [ 63%] 299s ........................................................................ [ 63%] 299s ........................................................................ [ 64%] 299s ........................................................................ [ 64%] 299s ..................................................x..................... [ 64%] 300s ........................................................................ [ 64%] 300s .................................... [ 64%] 300s tests/test_logger.py ............s................... [ 64%] 300s tests/tests/test_imports.py .. [ 64%] 300s tests/tests/test_quantity_helpers.py . [ 64%] 300s tests/tests/test_run_tests.py ... [ 64%] 300s tests/tests/test_runner.py ...... [ 65%] 300s time/tests/test_basic.py ............................................... [ 65%] 300s ..................................................................s..... [ 65%] 301s ........................................................................ [ 65%] 301s .....................................ssssssssssssssssssss............... [ 65%] 301s ..................... [ 65%] 301s time/tests/test_comparisons.py .................. [ 66%] 301s time/tests/test_corrs.py ...s [ 66%] 301s time/tests/test_custom_formats.py ................................. [ 66%] 301s time/tests/test_delta.py ............................................... [ 66%] 301s ........................................................................ [ 66%] 301s ................................ [ 66%] 301s time/tests/test_fast_parser.py ................. [ 66%] 301s time/tests/test_functions.py ...................... [ 66%] 301s time/tests/test_guess.py .... [ 66%] 302s time/tests/test_mask.py ............................s................... [ 66%] 302s ................................................................ [ 67%] 302s time/tests/test_methods.py ............................................. [ 67%] 302s ........................................................................ [ 67%] 302s ...xx........................................................... [ 67%] 302s time/tests/test_pickle.py .. [ 67%] 302s time/tests/test_precision.py ............ [ 67%] 302s time/tests/test_quantity_interaction.py ...................... [ 67%] 302s time/tests/test_sidereal.py .......................... [ 68%] 302s time/tests/test_update_leap_seconds.py .ss.... [ 68%] 302s time/tests/test_ut1.py ss..... [ 68%] 302s timeseries/io/tests/test_kepler.py .....ss [ 68%] 303s timeseries/periodograms/bls/tests/test_bls.py .......................... [ 68%] 303s .............................. [ 68%] 303s timeseries/periodograms/lombscargle/implementations/tests/test_mle.py .. [ 68%] 303s ...................... [ 68%] 303s timeseries/periodograms/lombscargle/implementations/tests/test_utils.py . [ 68%] 303s ............................................ [ 68%] 303s timeseries/periodograms/lombscargle/tests/test_lombscargle.py .......... [ 68%] 303s ........................................................................ [ 68%] 303s ........................................................................ [ 69%] 303s ........................................................................ [ 69%] 304s ........................................................................ [ 69%] 304s ........................................................................ [ 69%] 304s ........................................................................ [ 70%] 304s ........................................................................ [ 70%] 304s ........................................................................ [ 70%] 304s ........................................................................ [ 70%] 304s ........................................................................ [ 71%] 305s ........................................................................ [ 71%] 305s ........................................................................ [ 71%] 305s ........................................................................ [ 71%] 306s ........................................................................ [ 72%] 306s ........................................................................ [ 72%] 306s ........................................................................ [ 72%] 306s ..................s..................................................... [ 72%] 306s .............................................. [ 72%] 306s timeseries/periodograms/lombscargle/tests/test_statistics.py ........... [ 72%] 314s ........................................................................ [ 73%] 315s ........................................................................ [ 73%] 319s ........................................................................ [ 73%] 321s ........................................................................ [ 73%] 321s ..................................... [ 74%] 321s timeseries/periodograms/lombscargle/tests/test_utils.py ................ [ 74%] 321s [ 74%] 321s timeseries/periodograms/lombscargle_multiband/tests/test_lombscargle_multiband.py . [ 74%] 322s ........................................................................ [ 74%] 323s ........................................................................ [ 74%] 323s ........................................................................ [ 74%] 324s ........................................................................ [ 75%] 325s ........................................................................ [ 75%] 326s ........................................................................ [ 75%] 327s ........................................................................ [ 75%] 328s ........................................................................ [ 76%] 329s ........................................................................ [ 76%] 330s ........................................................................ [ 76%] 332s ........................................................................ [ 76%] 339s ...................................XXXX................................. [ 77%] 342s ........................................................................ [ 77%] 342s ............................. [ 77%] 342s timeseries/tests/test_binned.py ........................ [ 77%] 342s timeseries/tests/test_common.py ........................ [ 77%] 343s timeseries/tests/test_downsample.py ................. [ 77%] 343s timeseries/tests/test_sampled.py ....................ss... [ 77%] 343s uncertainty/tests/test_containers.py ................................... [ 77%] 343s ............. [ 77%] 343s uncertainty/tests/test_distribution.py .....................ss.......... [ 77%] 343s ........................................................... [ 78%] 343s uncertainty/tests/test_functions.py .......... [ 78%] 343s units/tests/test_aliases.py ...................... [ 78%] 343s units/tests/test_deprecated.py .. [ 78%] 343s units/tests/test_equivalencies.py ...................................... [ 78%] 343s .......................................... [ 78%] 343s units/tests/test_format.py ............................................. [ 78%] 343s ........................................................................ [ 78%] 343s ......................x................................................. [ 79%] 343s ........................................................................ [ 79%] 343s ........................................................................ [ 79%] 343s ........................................................................ [ 79%] 343s ........................................................................ [ 80%] 344s ........................................................................ [ 80%] 344s ........................................................................ [ 80%] 344s ........................................................................ [ 80%] 344s ........................................................................ [ 81%] 344s ........................................................................ [ 81%] 344s ........................................ [ 81%] 344s units/tests/test_logarithmic.py ........................................ [ 81%] 344s ........................................................................ [ 81%] 344s ........................................................................ [ 82%] 344s ......................................... [ 82%] 344s units/tests/test_photometric.py .. [ 82%] 344s units/tests/test_physical.py ........................................... [ 82%] 344s ........................................................................ [ 82%] 344s ........................................................................ [ 82%] 344s ............................. [ 83%] 344s units/tests/test_quantity.py .....................................x..... [ 83%] 344s ........................................................................ [ 83%] 344s ................................ [ 83%] 345s units/tests/test_quantity_annotations.py ............................... [ 83%] 345s .... [ 83%] 345s units/tests/test_quantity_array_methods.py ............................. [ 83%] 345s ..............................................s [ 83%] 345s units/tests/test_quantity_decorator.py ................................. [ 84%] 345s ........................................................................ [ 84%] 345s ........................................................................ [ 84%] 345s ........................................................................ [ 84%] 345s ........................................................................ [ 85%] 346s ........................................................................ [ 85%] 346s ........................................................................ [ 85%] 347s ........................................................................ [ 85%] 347s ................................ [ 85%] 347s units/tests/test_quantity_erfa_ufuncs.py ......x........................ [ 86%] 347s ........... [ 86%] 347s units/tests/test_quantity_helpers.py .... [ 86%] 347s units/tests/test_quantity_info.py ................. [ 86%] 347s units/tests/test_quantity_non_ufuncs.py ................................ [ 86%] 347s ........................................................................ [ 86%] 347s ............s......s........s........................................... [ 86%] 347s ...............................................................s........ [ 86%] 347s ........................................................................ [ 87%] 347s ....................s.s.....sss.ss...s..s.......s.....s.....ss.ss....... [ 87%] 347s ..........s...............................s..........................sss [ 87%] 347s ....s.s.....sss.ss...s..s.......s.....s.....ss.ss.................s..... [ 87%] 347s ..........................s..........................sss. [ 88%] 347s units/tests/test_quantity_typing.py ..... [ 88%] 347s units/tests/test_quantity_ufuncs.py ssss..s............................. [ 88%] 347s ..........ss............................................................ [ 88%] 347s ........................................................................ [ 88%] 347s ........................................................................ [ 89%] 347s ........................................................................ [ 89%] 348s ................................................................ [ 89%] 348s units/tests/test_structured.py ......................................... [ 89%] 348s ............................. [ 89%] 348s units/tests/test_units.py .............................................. [ 89%] 348s ........................................................................ [ 90%] 349s ........................................................................ [ 90%] 349s ........................................................................ [ 90%] 349s ..........................................................ss............ [ 90%] 349s [ 90%] 349s units/tests/test_utils.py . [ 90%] 350s utils/iers/tests/test_iers.py .....................sss.s.... [ 90%] 351s utils/iers/tests/test_leap_second.py ...s........ss..s...s............. [ 91%] 351s utils/masked/tests/test_containers.py ............. [ 91%] 351s utils/masked/tests/test_function_helpers.py ..........................s. [ 91%] 351s ........................................................s............... [ 91%] 351s ...............................ss......................................s [ 91%] 351s ......................................ssss.............x.......x.....s.. [ 91%] 351s .ss.s.s.....s...................s....s....s.s......s...ss.s.s.....s..... [ 92%] 351s ..............s....s....s.s. [ 92%] 351s utils/masked/tests/test_functions.py ................................... [ 92%] 351s ........................................................................ [ 92%] 351s ........................................................................ [ 92%] 351s ............................ [ 93%] 351s utils/masked/tests/test_masked.py ...................................... [ 93%] 351s ........................................................................ [ 93%] 351s ........................................................................ [ 93%] 351s .................................................s.................s.... [ 93%] 351s ..........s............................................................. [ 94%] 352s ........................................................................ [ 94%] 352s ........................................................................ [ 94%] 352s ........................................................................ [ 94%] 352s .................................................................... [ 95%] 352s utils/masked/tests/test_table.py ................ [ 95%] 352s utils/metadata/tests/test_metadata.py .................................. [ 95%] 352s ............... [ 95%] 352s utils/tests/test_codegen.py . [ 95%] 352s utils/tests/test_collections.py ......... [ 95%] 352s utils/tests/test_console.py ............................ [ 95%] 353s utils/tests/test_data.py ......s................sss.s......s...s.s...... [ 95%] 354s ........s.........s.s................................................... [ 95%] 354s ..............s...s......... [ 95%] 354s utils/tests/test_data_info.py ................ [ 95%] 354s utils/tests/test_decorators.py .................ss........ [ 96%] 354s utils/tests/test_diff.py ................... [ 96%] 354s utils/tests/test_introspection.py ....... [ 96%] 354s utils/tests/test_misc.py .s....s... [ 96%] 354s utils/tests/test_parsing.py . [ 96%] 354s utils/tests/test_shapes.py ... [ 96%] 354s utils/tests/test_state.py . [ 96%] 354s utils/tests/test_xml.py .........s [ 96%] 354s utils/xml/tests/test_iterparse.py . [ 96%] 354s visualization/scripts/tests/test_fits2bitmap.py ........ [ 96%] 354s visualization/tests/test_basic_rgb.py ................... [ 96%] 355s visualization/tests/test_histogram.py .... [ 96%] 355s visualization/tests/test_interval.py ............................ [ 96%] 355s visualization/tests/test_lupton_rgb.py ...................s.s.. [ 96%] 355s visualization/tests/test_norm.py s...................................... [ 96%] 355s [ 96%] 355s visualization/tests/test_stretch.py .................................... [ 96%] 355s ........................................................................ [ 97%] 355s .......... [ 97%] 356s visualization/tests/test_time.py ....................................... [ 97%] 356s ......... [ 97%] 356s visualization/tests/test_units.py ......... [ 97%] 357s visualization/wcsaxes/tests/test_coordinate_helpers.py ............ [ 97%] 357s visualization/wcsaxes/tests/test_display_world_coordinates.py .... [ 97%] 357s visualization/wcsaxes/tests/test_formatter_locator.py .................. [ 97%] 357s ........................................................................ [ 97%] 357s ...................................... [ 97%] 357s visualization/wcsaxes/tests/test_frame.py ssss. [ 97%] 357s visualization/wcsaxes/tests/test_grid_paths.py ... [ 97%] 357s visualization/wcsaxes/tests/test_images.py sssssssssssssssssssssssssssss [ 97%] 357s sssssssssssssssssss [ 97%] 359s visualization/wcsaxes/tests/test_misc.py ....................sss.....x.. [ 98%] 359s X.... [ 98%] 359s visualization/wcsaxes/tests/test_transform_coord_meta.py sss [ 98%] 359s visualization/wcsaxes/tests/test_utils.py .... [ 98%] 359s visualization/wcsaxes/tests/test_wcsapi.py .......................ss [ 98%] 359s wcs/tests/test_auxprm.py ..... [ 98%] 359s wcs/tests/test_celprm.py .......... [ 98%] 359s wcs/tests/test_pickle.py ......... [ 98%] 359s wcs/tests/test_prjprm.py ..................... [ 98%] 360s wcs/tests/test_profiling.py .................................... [ 98%] 360s wcs/tests/test_tab.py ..... [ 98%] 360s wcs/tests/test_tabprm.py .............. [ 98%] 360s wcs/tests/test_utils.py ................................................ [ 98%] 360s ............................ss........ [ 98%] 361s wcs/tests/test_wcs.py .................................................. [ 98%] 361s ........................... [ 99%] 361s wcs/tests/test_wcsprm.py ............................................... [ 99%] 361s .....................................................x.................. [ 99%] 361s ................... [ 99%] 361s wcs/tests/test_wtbarr.py .......... [ 99%] 362s wcs/wcsapi/tests/test_fitswcs.py ................sssssss................ [ 99%] 362s ......................... [ 99%] 362s wcs/wcsapi/tests/test_high_level_api.py ......... [ 99%] 362s wcs/wcsapi/tests/test_high_level_wcs_wrapper.py .. [ 99%] 362s wcs/wcsapi/tests/test_low_level_api.py . [ 99%] 362s wcs/wcsapi/tests/test_utils.py .... [ 99%] 363s wcs/wcsapi/wrappers/tests/test_sliced_wcs.py ........................... [ 99%] 363s .............. [100%] 363s 363s =============================== warnings summary =============================== 363s coordinates/tests/accuracy/test_altaz_icrs.py::test_fk5_equinox_and_epoch_j2000_0_to_topocentric_observed 363s /usr/lib/python3/dist-packages/astropy/coordinates/baseframe.py:1985: NonRotationTransformationWarning: transforming other coordinates from to . Angular separation can depend on the direction of the transformation. 363s warnings.warn(NonRotationTransformationWarning(self, other_frame)) 363s 363s io/ascii/tests/test_cds_header_from_readme.py::test_description 363s io/ascii/tests/test_cds_header_from_readme.py::test_description 363s io/ascii/tests/test_cds_header_from_readme.py::test_description 363s /usr/lib/python3/dist-packages/astropy/units/core.py:2145: UnitsWarning: 'stat.' did not parse as cds unit: At col 0, Unit 'stat' not supported by the CDS SAC standard. If this is meant to be a custom unit, define it with 'u.def_unit'. To have it recognized inside a file reader or other code, enable it with 'u.add_enabled_units'. For details, see https://docs.astropy.org/en/latest/units/combining_and_defining.html 363s warnings.warn(msg, UnitsWarning) 363s 363s nddata/tests/test_ccddata.py::test_read_wcs_not_creatable 363s /usr/lib/python3/dist-packages/astropy/wcs/wcs.py:537: FITSFixedWarning: RADECSYS= 'FK5 ' / The equatorial coordinate system 363s the RADECSYS keyword is deprecated, use RADESYSa. 363s wcsprm = _wcs.Wcsprm( 363s 363s nddata/tests/test_ccddata.py::test_read_wcs_not_creatable 363s /usr/lib/python3/dist-packages/astropy/wcs/wcs.py:805: FITSFixedWarning: 'unitfix' made the change 'Changed units: 363s 'degree' -> 'deg'. 363s warnings.warn( 363s 363s nddata/tests/test_ccddata.py::test_read_wcs_not_creatable 363s /usr/lib/python3/dist-packages/astropy/wcs/wcs.py:805: FITSFixedWarning: 'celfix' made the change 'Unmatched celestial axes'. 363s warnings.warn( 363s 363s time/tests/test_comparisons.py::test_isclose_time_exceptions 363s /usr/lib/python3/dist-packages/astropy/time/core.py:2955: TimeDeltaMissingUnitWarning: Numerical value without unit or explicit format passed to TimeDelta, assuming days 363s warn( 363s 363s units/tests/test_quantity_non_ufuncs.py::TestArrayCreation::test_full 363s units/tests/test_quantity_non_ufuncs.py::TestArrayCreation::test_require 363s units/tests/test_quantity_non_ufuncs.py::TestArrayCreation::test_array 363s units/tests/test_quantity_non_ufuncs.py::TestArrayCreation::test_asarray 363s units/tests/test_quantity_non_ufuncs.py::TestArrayCreation::test_asanyarray 363s units/tests/test_quantity_non_ufuncs.py::TestArrayCreation::test_ascontiguousarray 363s units/tests/test_quantity_non_ufuncs.py::TestArrayCreation::test_asfortranarray 363s /usr/lib/python3/dist-packages/astropy/units/quantity.py:1729: RuntimeWarning: invalid value encountered in cast 363s self_dtype_array = np.array(_value, self.dtype, subok=True) 363s 363s units/tests/test_quantity_ufuncs.py::TestQuantityMathFuncs::test_power_scalar_strarray 363s /usr/lib/python3/dist-packages/astropy/units/utils.py:244: DeprecationWarning: Conversion of an array with ndim > 0 to a scalar is deprecated, and will error in future. Ensure you extract a single element from your array before performing this operation. (Deprecated NumPy 1.25.) 363s n, d = float(p).as_integer_ratio() 363s 363s utils/tests/test_console.py: 4 warnings 363s utils/tests/test_data.py: 20 warnings 363s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=3433) is multi-threaded, use of fork() may lead to deadlocks in the child. 363s self.pid = os.fork() 363s 363s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html 363s = 27647 passed, 826 skipped, 72 deselected, 235 xfailed, 616 xpassed, 40 warnings in 189.16s (0:03:09) = 365s /tmp/autopkgtest.Ifug6q/wrapper.sh: checking for leaked background processes... 365s /tmp/autopkgtest.Ifug6q/wrapper.sh: waiting for tee/cat subprocesses... 365s /tmp/autopkgtest.Ifug6q/wrapper.sh: cleaning up... 365s /tmp/autopkgtest.Ifug6q/wrapper.sh: Exit status: 0 365s autopkgtest: DBG: testbed command exited with code 0 365s autopkgtest [21:35:12]: test command1: -----------------------] 365s autopkgtest: DBG: testbed executing test finished with exit status 0 365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ifug6q/command1-stdout /tmp/autopkgtest-work.s8b9kwxn/out/command1-stdout 365s autopkgtest: DBG: got reply from testbed: ok 365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ifug6q/command1-stderr /tmp/autopkgtest-work.s8b9kwxn/out/command1-stderr 365s autopkgtest: DBG: got reply from testbed: ok 365s command1 PASS 365s autopkgtest [21:35:12]: test command1: - - - - - - - - - - results - - - - - - - - - - 365s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Ifug6q/command1-artifacts/ /tmp/autopkgtest-work.s8b9kwxn/out/artifacts/ 366s autopkgtest: DBG: got reply from testbed: ok 366s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Ifug6q/command1-artifacts', '/tmp/autopkgtest.Ifug6q/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 366s autopkgtest: DBG: testbed command exited with code 0 366s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 366s autopkgtest [21:35:13]: @@@@@@@@@@@@@@@@@@@@ summary 366s command1 PASS 366s autopkgtest: DBG: testbed stop 366s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.Ifug6q 366s autopkgtest: DBG: sending command to testbed: close 383s autopkgtest: DBG: got reply from testbed: ok 383s autopkgtest: DBG: sending command to testbed: quit 383s nova [W] Using flock in prodstack6-s390x 383s Creating nova instance adt-plucky-s390x-astropy-20250215-212907-juju-7f2275-prod-proposed-migration-environment-15-fdc7a3da-2f84-4dc6-aca6-fd5db3aa7d2d from image adt/ubuntu-plucky-s390x-server-20250215.img (UUID 099dc609-2061-4009-a65b-d554466baca0)... 383s nova [W] Timed out waiting for e3707597-75fb-4f9b-a9c3-b0c23222b78c to get deleted.