0s autopkgtest: DBG: testbed init 0s autopkgtest [12:54:37]: starting date and time: 2025-02-19 12:54:37+0000 0s autopkgtest [12:54:37]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:54:37]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.pr6y_vod/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade python-taskflow --debug --timeout-short=300 --timeout-copy=20000 --timeout-build=20000 --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- ssh -s /home/ubuntu/autopkgtest/ssh-setup/nova -- --flavor autopkgtest-s390x --security-groups autopkgtest-juju-7f2275-prod-proposed-migration-environment-15@bos03-s390x-11.secgroup --name adt-plucky-s390x-python-taskflow-20250219-125436-juju-7f2275-prod-proposed-migration-environment-15-3b5a30a3-8180-4323-a038-67079c0422ce --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 104s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Pt9kGK 104s autopkgtest: DBG: sending command to testbed: print-execute-command 104s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.j7vqqolt/runcmd 104s autopkgtest: DBG: sending command to testbed: capabilities 104s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu revert-full-system revert isolation-machine reboot root-on-testbed 104s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'revert-full-system', 'revert', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 104s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Pt9kGK/wrapper.sh 104s autopkgtest: DBG: got reply from testbed: ok 104s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/wrapper.sh'], kind short, sout raw, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 104s autopkgtest: DBG: testbed command exited with code 0 104s autopkgtest [12:56:21]: testbed dpkg architecture: s390x 104s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [12:56:22]: testbed apt version: 2.9.30 105s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: testbed has eatmydata 105s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [12:56:22]: @@@@@@@@@@@@@@@@@@@@ test bed setup 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest [12:56:22]: testbed release detected to be: None 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s 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 [] 105s autopkgtest: DBG: testbed command exited with code 0 105s autopkgtest: DBG: adding APT source: Types: deb deb-src 105s URIs: http://ftpmaster.internal/ubuntu/ 105s Suites: plucky-proposed 105s Components: main restricted universe multiverse 105s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 105s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 106s Package: * 106s Pin: release plucky-proposed 106s Pin-Priority: 500 106s 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 [] 106s autopkgtest: DBG: testbed command exited with code 0 106s autopkgtest [12:56:23]: updating testbed package index (apt update) 106s 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'] 106s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 106s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 106s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 107s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 107s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 107s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 107s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 107s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 107s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 107s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 107s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 107s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 107s Fetched 1700 kB in 1s (1731 kB/s) 108s Reading package lists... 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 108s Package: * 108s Pin: release plucky-proposed 108s Pin-Priority: 100 108s 108s Package: src:sphinx:any 108s Pin: release plucky-proposed 108s Pin-Priority: 995 108s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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.Pt9kGK/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s 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'] 108s + lsb_release --codename --short 108s + RELEASE=plucky 108s + cat 108s + [ plucky != trusty ] 108s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 108s Reading package lists... 108s Building dependency tree... 108s Reading state information... 108s Calculating upgrade... 109s The following packages were automatically installed and are no longer required: 109s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 109s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 109s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 109s linux-tools-6.11.0-8-generic 109s Use 'sudo apt autoremove' to remove them. 109s The following packages will be upgraded: 109s iproute2 liblsof0 libp11-kit0 lsof 109s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 109s Need to get 1791 kB of archives. 109s After this operation, 17.4 kB of additional disk space will be used. 109s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 109s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 109s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 109s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 109s Preconfiguring packages ... 109s Fetched 1791 kB in 1s (2998 kB/s) 110s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 110s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 110s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 110s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 110s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 110s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 110s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 110s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 110s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 110s Setting up liblsof0 (4.99.4+dfsg-1) ... 110s Setting up iproute2 (6.13.0-1ubuntu1) ... 110s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 110s Setting up lsof (4.99.4+dfsg-1) ... 110s Processing triggers for man-db (2.13.0-1) ... 110s Processing triggers for libc-bin (2.40-4ubuntu1) ... 111s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 111s + /usr/lib/apt/apt-helper analyze-pattern ?true 111s + uname -r 111s + sed s/\./\\./g 111s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 111s + apt list ?obsolete 111s + tail+ cut -d/ -f1 111s -n+2 111s + grep -v ^linux-.*6\.12\.0-15-generic.* 111s + true 111s + obsolete_pkgs= 111s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 111s Reading package lists... 111s Building dependency tree... 111s Reading state information... 111s The following packages will be REMOVED: 111s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 111s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 111s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 111s linux-tools-6.11.0-8-generic* 111s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 111s After this operation, 167 MB disk space will be freed. 111s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 111s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 111s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 111s Removing libpython3.12t64:s390x (3.12.9-1) ... 111s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 112s Removing libnsl2:s390x (1.3.0-3build3) ... 112s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 112s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 112s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 113s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 113s Processing triggers for libc-bin (2.40-4ubuntu1) ... 113s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 113s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 113s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 113s + grep -q trusty /etc/lsb-release 113s + [ ! -d /usr/share/doc/unattended-upgrades ] 113s + [ ! -d /usr/share/doc/lxd ] 113s + [ ! -d /usr/share/doc/lxd-client ] 113s + [ ! -d /usr/share/doc/snapd ] 113s + type iptables 113s + cat 113s + chmod 755 /etc/rc.local 113s + . /etc/rc.local 113s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 113s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 113s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 113s + uname -m 113s + [ s390x = ppc64le ] 113s + [ -d /run/systemd/system ] 113s + systemd-detect-virt --quiet --vm 113s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 113s + cat 113s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 113s + echo COMPRESS=lz4 113s autopkgtest: DBG: testbed command exited with code 0 113s autopkgtest [12:56:30]: upgrading testbed (apt dist-upgrade and autopurge) 113s 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'] 113s Reading package lists... 114s Building dependency tree... 114s Reading state information... 114s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 114s Starting 2 pkgProblemResolver with broken count: 0 114s Done 114s Entering ResolveByKeep 114s 114s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 114s autopkgtest: DBG: testbed command exited with code 0 114s 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'] 114s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s Starting pkgProblemResolver with broken count: 0 115s Starting 2 pkgProblemResolver with broken count: 0 115s Done 115s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 115s autopkgtest: DBG: testbed command exited with code 0 115s 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.Pt9kGK/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 115s autopkgtest: DBG: testbed command exited with code 1 115s autopkgtest [12:56:32]: rebooting testbed after setup commands that affected boot 115s autopkgtest: DBG: sending command to testbed: reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 136s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 136s autopkgtest: DBG: testbed command exited with code 0 136s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot 136s autopkgtest: DBG: got reply from testbed: ok 136s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare 137s autopkgtest: DBG: got reply from testbed: ok 137s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 137s autopkgtest: DBG: testbed command exited with code 0 137s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest [12:56:55]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 138s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Pt9kGK/testbed-packages"], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/testbed-packages /tmp/autopkgtest-work.pr6y_vod/out/testbed-packages 138s autopkgtest: DBG: got reply from testbed: ok 138s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 138s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 138s autopkgtest: DBG: testbed command exited with code 0 138s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 139s autopkgtest: DBG: testbed command exited with code 0 139s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: Binaries: initialising 140s autopkgtest [12:56:57]: @@@@@@@@@@@@@@@@@@@@ apt-source python-taskflow 140s autopkgtest: DBG: blame += python-taskflow 140s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 140s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-taskflow'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-taskflow$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-taskflow=5.10.0-0ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-taskflow-doc$'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-taskflow-doc=5.10.0-0ubuntu1'], kind short, sout pipe, serr raw, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: install_deps: deps_new=[] 141s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s 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.Pt9kGK/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-taskflow=5.10.0-0ubuntu1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x python-taskflow_*.dsc src >/dev/null; chmod -R a+rX .; cd [a-z0-9]*/.; pwd >&3; sed -n "1 {s/).*//; s/ (/\\n/; p}" debian/changelog >&3\''], kind build, sout pipe, serr raw, env ['ADT_TEST_TRIGGERS=sphinx/8.1.3-5'] 142s + cd / 142s + mktemp -d /tmp/autopkgtest.Pt9kGK/build.XXX 142s + builddir=/tmp/autopkgtest.Pt9kGK/build.RSd 142s + cd /tmp/autopkgtest.Pt9kGK/build.RSd 142s + apt-get source -d -q --only-source python-taskflow=5.10.0-0ubuntu1 142s + OUT=Reading package lists... 142s NOTICE: 'python-taskflow' packaging is maintained in the 'Git' version control system at: 142s https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-taskflow 142s Please use: 142s git clone https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-taskflow 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 1101 kB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (dsc) [3429 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (tar) [1089 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (diff) [8820 B] 142s Fetched 1101 kB in 1s (1726 kB/s) 142s Download complete and in download only mode 142s + [ -n ] 142s + echo Reading package lists... 142s NOTICE: 'python-taskflow' packaging is maintained in the 'Git' version control system at: 142s https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-taskflow 142s Please use: 142s git clone https://git.launchpad.net/~ubuntu-openstack-dev/ubuntu/+source/python-taskflow 142s to retrieve the latest (possibly unreleased) updates to the package. 142s Need to get 1101 kB of source archives. 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (dsc) [3429 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (tar) [1089 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (diff) [8820 B] 142s Fetched 1101 kB in 1s (1726 kB/s) 142s Download complete and in download only mode 142s + grep ^Get: 142s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (dsc) [3429 B] 142s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (tar) [1089 kB] 142s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-taskflow 5.10.0-0ubuntu1 (diff) [8820 B] 142s + dpkg-source -x python-taskflow_5.10.0-0ubuntu1.dsc src 142s gpgv: Signature made Fri Jan 17 09:21:28 2025 UTC 142s gpgv: using RSA key AB23E9A98422889E08C3838CBFECAECBA0E7D8C3 142s gpgv: Can't check signature: No public key 142s dpkg-source: warning: cannot verify inline signature for ./python-taskflow_5.10.0-0ubuntu1.dsc: no acceptable signature found 142s + chmod -R a+rX . 142s + cd src/. 142s + pwd 142s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest [12:56:59]: testing package python-taskflow version 5.10.0-0ubuntu1 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/build.RSd/src/debian/ /tmp/autopkgtest-work.pr6y_vod/out/pkg/debian/ 143s autopkgtest: DBG: got reply from testbed: ok 143s autopkgtest: DBG: autodep8 generated control: ----- 143s Tests: python-stestr 143s Depends: 143s @, 143s @builddeps@, 143s Restrictions: allow-stderr, needs-recommends 143s 143s 143s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import taskflow; print(taskflow)" ; done 143s Depends: python3-all, python3-taskflow, 143s Restrictions: allow-stderr, superficial, 143s Features: test-name=autodep8-python3 143s 143s 143s ------- 143s autopkgtest: DBG: processing dependency @ 143s autopkgtest: DBG: synthesised dependency python-taskflow-doc 143s autopkgtest: DBG: synthesised dependency python3-taskflow 143s autopkgtest: DBG: processing dependency @builddeps@ 143s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 143s autopkgtest: DBG: synthesised dependency dh-python 143s autopkgtest: DBG: synthesised dependency openstack-pkg-tools 143s autopkgtest: DBG: synthesised dependency python3-all 143s autopkgtest: DBG: synthesised dependency python3-pbr (>= 2.0.0) 143s autopkgtest: DBG: synthesised dependency python3-setuptools 143s autopkgtest: DBG: synthesised dependency python3-sphinx (>= 2.0.0) 143s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib.jquery 143s autopkgtest: DBG: synthesised dependency alembic 143s autopkgtest: DBG: synthesised dependency python3-alembic (>= 0.8.10) 143s autopkgtest: DBG: synthesised dependency python3-automaton (>= 1.9.0) 143s autopkgtest: DBG: synthesised dependency python3-cachetools (>= 2.0.0) 143s autopkgtest: DBG: synthesised dependency python3-etcd3gw 143s autopkgtest: DBG: synthesised dependency python3-eventlet (>= 0.33.1-4ubuntu2~) 143s autopkgtest: DBG: synthesised dependency python3-fasteners (>= 0.17.3) 143s autopkgtest: DBG: synthesised dependency python3-futurist (>= 1.2.0) 143s autopkgtest: DBG: synthesised dependency python3-jsonschema (>= 3.2.0) 143s autopkgtest: DBG: synthesised dependency python3-kazoo (>= 2.6.0) 143s autopkgtest: DBG: synthesised dependency python3-kombu (>= 4.3.0) 143s autopkgtest: DBG: synthesised dependency python3-netifaces 143s autopkgtest: DBG: synthesised dependency python3-networkx (>= 2.1.0) 143s autopkgtest: DBG: synthesised dependency python3-openstackdocstheme (>= 2.2.1) 143s autopkgtest: DBG: synthesised dependency python3-oslo.serialization (>= 2.18.0) 143s autopkgtest: DBG: synthesised dependency python3-oslo.utils (>= 3.33.0) 143s autopkgtest: DBG: synthesised dependency python3-oslotest (>= 1:3.2.0) 143s autopkgtest: DBG: synthesised dependency python3-psycopg2 (>= 2.8.0) 143s autopkgtest: DBG: synthesised dependency python3-pyasyncore 143s autopkgtest: DBG: synthesised dependency python3-pydot (>= 1.2.4) 143s autopkgtest: DBG: synthesised dependency python3-pydotplus (>= 2.0.2) 143s autopkgtest: DBG: synthesised dependency python3-pymysql (>= 0.7.6) 143s autopkgtest: DBG: synthesised dependency python3-redis (>= 2.10.0) 143s autopkgtest: DBG: synthesised dependency python3-sqlalchemy (>= 1.0.10) 143s autopkgtest: DBG: synthesised dependency python3-sqlalchemy-utils (>= 0.36.1-0ubuntu2~) 143s autopkgtest: DBG: synthesised dependency python3-stestr (>= 2.0.0) 143s autopkgtest: DBG: synthesised dependency python3-stevedore (>= 1:1.20.0) 143s autopkgtest: DBG: synthesised dependency python3-subunit 143s autopkgtest: DBG: synthesised dependency python3-tenacity (>= 6.0.0) 143s autopkgtest: DBG: synthesised dependency python3-testscenarios (>= 0.4) 143s autopkgtest: DBG: synthesised dependency python3-testtools (>= 2.2.0) 143s autopkgtest: DBG: synthesised dependency python3-zake (>= 0.1.6) 143s autopkgtest: DBG: synthesised dependency subunit 143s autopkgtest: DBG: synthesised dependency build-essential 143s autopkgtest: DBG: processing dependency @recommends@ 143s autopkgtest: DBG: Test defined: name python-stestr path debian/tests/python-stestr command "None" restrictions ['allow-stderr', 'needs-recommends'] features [] depends ['python-taskflow-doc', 'python3-taskflow', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr (>= 2.0.0)', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-sphinxcontrib.jquery', 'alembic', 'python3-alembic (>= 0.8.10)', 'python3-automaton (>= 1.9.0)', 'python3-cachetools (>= 2.0.0)', 'python3-etcd3gw', 'python3-eventlet (>= 0.33.1-4ubuntu2~)', 'python3-fasteners (>= 0.17.3)', 'python3-futurist (>= 1.2.0)', 'python3-jsonschema (>= 3.2.0)', 'python3-kazoo (>= 2.6.0)', 'python3-kombu (>= 4.3.0)', 'python3-netifaces', 'python3-networkx (>= 2.1.0)', 'python3-openstackdocstheme (>= 2.2.1)', 'python3-oslo.serialization (>= 2.18.0)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-psycopg2 (>= 2.8.0)', 'python3-pyasyncore', 'python3-pydot (>= 1.2.4)', 'python3-pydotplus (>= 2.0.2)', 'python3-pymysql (>= 0.7.6)', 'python3-redis (>= 2.10.0)', 'python3-sqlalchemy (>= 1.0.10)', 'python3-sqlalchemy-utils (>= 0.36.1-0ubuntu2~)', 'python3-stestr (>= 2.0.0)', 'python3-stevedore (>= 1:1.20.0)', 'python3-subunit', 'python3-tenacity (>= 6.0.0)', 'python3-testscenarios (>= 0.4)', 'python3-testtools (>= 2.2.0)', 'python3-zake (>= 0.1.6)', 'subunit', 'build-essential'] 143s autopkgtest: DBG: processing dependency python3-all 143s autopkgtest: DBG: processing dependency python3-taskflow 143s autopkgtest: DBG: marked alternatives ['python3-taskflow'] as a synthesised dependency 143s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import taskflow; print(taskflow)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-taskflow'] 143s autopkgtest [12:57:00]: build not needed 143s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/build.RSd/src/ /tmp/autopkgtest-work.pr6y_vod/out/tests-tree/ 144s autopkgtest: DBG: got reply from testbed: ok 144s autopkgtest: DBG: autodep8 generated control: ----- 144s Tests: python-stestr 144s Depends: 144s @, 144s @builddeps@, 144s Restrictions: allow-stderr, needs-recommends 144s 144s 144s Test-Command: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import taskflow; print(taskflow)" ; done 144s Depends: python3-all, python3-taskflow, 144s Restrictions: allow-stderr, superficial, 144s Features: test-name=autodep8-python3 144s 144s 144s ------- 144s autopkgtest: DBG: processing dependency @ 144s autopkgtest: DBG: synthesised dependency python-taskflow-doc 144s autopkgtest: DBG: synthesised dependency python3-taskflow 144s autopkgtest: DBG: processing dependency @builddeps@ 144s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 144s autopkgtest: DBG: synthesised dependency dh-python 144s autopkgtest: DBG: synthesised dependency openstack-pkg-tools 144s autopkgtest: DBG: synthesised dependency python3-all 144s autopkgtest: DBG: synthesised dependency python3-pbr (>= 2.0.0) 144s autopkgtest: DBG: synthesised dependency python3-setuptools 144s autopkgtest: DBG: synthesised dependency python3-sphinx (>= 2.0.0) 144s autopkgtest: DBG: synthesised dependency python3-sphinxcontrib.jquery 144s autopkgtest: DBG: synthesised dependency alembic 144s autopkgtest: DBG: synthesised dependency python3-alembic (>= 0.8.10) 144s autopkgtest: DBG: synthesised dependency python3-automaton (>= 1.9.0) 144s autopkgtest: DBG: synthesised dependency python3-cachetools (>= 2.0.0) 144s autopkgtest: DBG: synthesised dependency python3-etcd3gw 144s autopkgtest: DBG: synthesised dependency python3-eventlet (>= 0.33.1-4ubuntu2~) 144s autopkgtest: DBG: synthesised dependency python3-fasteners (>= 0.17.3) 144s autopkgtest: DBG: synthesised dependency python3-futurist (>= 1.2.0) 144s autopkgtest: DBG: synthesised dependency python3-jsonschema (>= 3.2.0) 144s autopkgtest: DBG: synthesised dependency python3-kazoo (>= 2.6.0) 144s autopkgtest: DBG: synthesised dependency python3-kombu (>= 4.3.0) 144s autopkgtest: DBG: synthesised dependency python3-netifaces 144s autopkgtest: DBG: synthesised dependency python3-networkx (>= 2.1.0) 144s autopkgtest: DBG: synthesised dependency python3-openstackdocstheme (>= 2.2.1) 144s autopkgtest: DBG: synthesised dependency python3-oslo.serialization (>= 2.18.0) 144s autopkgtest: DBG: synthesised dependency python3-oslo.utils (>= 3.33.0) 144s autopkgtest: DBG: synthesised dependency python3-oslotest (>= 1:3.2.0) 144s autopkgtest: DBG: synthesised dependency python3-psycopg2 (>= 2.8.0) 144s autopkgtest: DBG: synthesised dependency python3-pyasyncore 144s autopkgtest: DBG: synthesised dependency python3-pydot (>= 1.2.4) 144s autopkgtest: DBG: synthesised dependency python3-pydotplus (>= 2.0.2) 144s autopkgtest: DBG: synthesised dependency python3-pymysql (>= 0.7.6) 144s autopkgtest: DBG: synthesised dependency python3-redis (>= 2.10.0) 144s autopkgtest: DBG: synthesised dependency python3-sqlalchemy (>= 1.0.10) 144s autopkgtest: DBG: synthesised dependency python3-sqlalchemy-utils (>= 0.36.1-0ubuntu2~) 144s autopkgtest: DBG: synthesised dependency python3-stestr (>= 2.0.0) 144s autopkgtest: DBG: synthesised dependency python3-stevedore (>= 1:1.20.0) 144s autopkgtest: DBG: synthesised dependency python3-subunit 144s autopkgtest: DBG: synthesised dependency python3-tenacity (>= 6.0.0) 144s autopkgtest: DBG: synthesised dependency python3-testscenarios (>= 0.4) 144s autopkgtest: DBG: synthesised dependency python3-testtools (>= 2.2.0) 144s autopkgtest: DBG: synthesised dependency python3-zake (>= 0.1.6) 144s autopkgtest: DBG: synthesised dependency subunit 144s autopkgtest: DBG: synthesised dependency build-essential 144s autopkgtest: DBG: processing dependency @recommends@ 144s autopkgtest: DBG: Test defined: name python-stestr path debian/tests/python-stestr command "None" restrictions ['allow-stderr', 'needs-recommends'] features [] depends ['python-taskflow-doc', 'python3-taskflow', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr (>= 2.0.0)', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-sphinxcontrib.jquery', 'alembic', 'python3-alembic (>= 0.8.10)', 'python3-automaton (>= 1.9.0)', 'python3-cachetools (>= 2.0.0)', 'python3-etcd3gw', 'python3-eventlet (>= 0.33.1-4ubuntu2~)', 'python3-fasteners (>= 0.17.3)', 'python3-futurist (>= 1.2.0)', 'python3-jsonschema (>= 3.2.0)', 'python3-kazoo (>= 2.6.0)', 'python3-kombu (>= 4.3.0)', 'python3-netifaces', 'python3-networkx (>= 2.1.0)', 'python3-openstackdocstheme (>= 2.2.1)', 'python3-oslo.serialization (>= 2.18.0)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-psycopg2 (>= 2.8.0)', 'python3-pyasyncore', 'python3-pydot (>= 1.2.4)', 'python3-pydotplus (>= 2.0.2)', 'python3-pymysql (>= 0.7.6)', 'python3-redis (>= 2.10.0)', 'python3-sqlalchemy (>= 1.0.10)', 'python3-sqlalchemy-utils (>= 0.36.1-0ubuntu2~)', 'python3-stestr (>= 2.0.0)', 'python3-stevedore (>= 1:1.20.0)', 'python3-subunit', 'python3-tenacity (>= 6.0.0)', 'python3-testscenarios (>= 0.4)', 'python3-testtools (>= 2.2.0)', 'python3-zake (>= 0.1.6)', 'subunit', 'build-essential'] 144s autopkgtest: DBG: processing dependency python3-all 144s autopkgtest: DBG: processing dependency python3-taskflow 144s autopkgtest: DBG: marked alternatives ['python3-taskflow'] as a synthesised dependency 144s autopkgtest: DBG: Test defined: name autodep8-python3 path None command "set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import taskflow; print(taskflow)" ; done" restrictions ['allow-stderr', 'superficial'] features ['test-name=autodep8-python3'] depends ['python3-all', 'python3-taskflow'] 144s autopkgtest [12:57:01]: test python-stestr: preparing testbed 144s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python-taskflow-doc', 'python3-taskflow', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr (>= 2.0.0)', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-sphinxcontrib.jquery', 'alembic', 'python3-alembic (>= 0.8.10)', 'python3-automaton (>= 1.9.0)', 'python3-cachetools (>= 2.0.0)', 'python3-etcd3gw', 'python3-eventlet (>= 0.33.1-4ubuntu2~)', 'python3-fasteners (>= 0.17.3)', 'python3-futurist (>= 1.2.0)', 'python3-jsonschema (>= 3.2.0)', 'python3-kazoo (>= 2.6.0)', 'python3-kombu (>= 4.3.0)', 'python3-netifaces', 'python3-networkx (>= 2.1.0)', 'python3-openstackdocstheme (>= 2.2.1)', 'python3-oslo.serialization (>= 2.18.0)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-psycopg2 (>= 2.8.0)', 'python3-pyasyncore', 'python3-pydot (>= 1.2.4)', 'python3-pydotplus (>= 2.0.2)', 'python3-pymysql (>= 0.7.6)', 'python3-redis (>= 2.10.0)', 'python3-sqlalchemy (>= 1.0.10)', 'python3-sqlalchemy-utils (>= 0.36.1-0ubuntu2~)', 'python3-stestr (>= 2.0.0)', 'python3-stevedore (>= 1:1.20.0)', 'python3-subunit', 'python3-tenacity (>= 6.0.0)', 'python3-testscenarios (>= 0.4)', 'python3-testtools (>= 2.2.0)', 'python3-zake (>= 0.1.6)', 'subunit', 'build-essential'] 144s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 144s autopkgtest: DBG: can use apt-get on testbed: True 144s Reading package lists... 144s Building dependency tree... 144s Reading state information... 144s Starting pkgProblemResolver with broken count: 0 144s Starting 2 pkgProblemResolver with broken count: 0 144s Done 145s The following NEW packages will be installed: 145s alembic autoconf automake autopoint autotools-dev build-essential cpp cpp-14 145s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 145s dh-python dh-strip-nondeterminism docutils-common dwz fontconfig 145s fontconfig-config fonts-dejavu-core fonts-dejavu-mono fonts-font-awesome 145s fonts-glyphicons-halflings g++ g++-14 g++-14-s390x-linux-gnu 145s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 145s gettext graphviz intltool-debian libann0 libaom3 libarchive-zip-perl 145s libasan8 libcairo2 libcares2 libcc1-0 libcdt5 libcgraph6 libdatrie1 145s libde265-0 libdebhelper-perl libdeflate0 libev4t64 145s libfile-stripnondeterminism-perl libfontconfig1 libfreetype6 libgcc-14-dev 145s libgd3 libgomp1 libgraphite2-3 libgts-0.7-5t64 libgvc6 libgvpr2 145s libharfbuzz0b libheif-plugin-aomdec libheif-plugin-libde265 libheif1 libice6 145s libimagequant0 libisl23 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 145s libjs-bootstrap libjs-jquery libjs-sphinxdoc libjs-underscore libjson-perl 145s liblab-gamut1 libltdl7 libmpc3 libnsl2 libpango-1.0-0 libpangocairo-1.0-0 145s libpangoft2-1.0-0 libpathplan4 libpixman-1-0 libpq5 libpython3.12-minimal 145s libpython3.12-stdlib libraqm0 libsharpyuv0 libsm6 libstdc++-14-dev 145s libsubunit-perl libthai-data libthai0 libtiff6 libtool libubsan1 libwebp7 145s libxaw7 libxcb-render0 libxcb-shm0 libxmu6 libxpm4 libxrender1 libxslt1.1 145s libxt6t64 m4 openstack-pkg-tools po-debconf python-taskflow-doc 145s python3-alabaster python3-alembic python3-all python3-amqp python3-arrow 145s python3-async-timeout python3-automaton python3-autopage python3-cachetools 145s python3-cliff python3-cmd2 python3-dateutil python3-debtcollector 145s python3-decorator python3-defusedxml python3-deprecated python3-deprecation 145s python3-dnspython python3-docutils python3-dogpile.cache python3-dulwich 145s python3-etcd3gw python3-eventlet python3-extras python3-fasteners 145s python3-fixtures python3-futurist python3-gevent python3-greenlet 145s python3-imagesize python3-importlib-metadata python3-iso8601 145s python3-jmespath python3-kazoo python3-kerberos python3-keystoneauth1 145s python3-kombu python3-lxml python3-mako python3-monotonic python3-msgpack 145s python3-munch python3-netifaces python3-networkx python3-openstackdocstheme 145s python3-openstacksdk python3-os-client-config python3-os-service-types 145s python3-oslo.i18n python3-oslo.serialization python3-oslo.utils 145s python3-oslotest python3-packaging python3-pbr python3-pip 145s python3-platformdirs python3-prettytable python3-psutil python3-psycopg2 145s python3-pure-sasl python3-pyasyncore python3-pydot python3-pydotplus 145s python3-pymysql python3-pyperclip python3-redis python3-requestsexceptions 145s python3-roman python3-six python3-snowballstemmer python3-sphinx 145s python3-sphinxcontrib.jquery python3-sqlalchemy python3-sqlalchemy-utils 145s python3-stestr python3-stevedore python3-subunit python3-taskflow 145s python3-tenacity python3-testscenarios python3-testtools python3-tomlkit 145s python3-vine python3-voluptuous python3-wcwidth python3-wheel python3-wrapt 145s python3-zake python3-zope.event python3-zope.interface python3.12 145s python3.12-minimal sgml-base sphinx-common subunit x11-common xml-core 145s 0 upgraded, 206 newly installed, 0 to remove and 0 not upgraded. 145s Need to get 99.7 MB of archives. 145s After this operation, 392 MB of additional disk space will be used. 145s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 145s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 146s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 146s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 146s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-netifaces s390x 0.11.0-2build4 [18.2 kB] 146s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 146s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 146s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x python3-mako all 1.3.8-2 [63.5 kB] 146s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-greenlet s390x 3.1.0-1 [176 kB] 146s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy all 2.0.38+ds1-0ubuntu1 [1215 kB] 146s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alembic all 1.13.2-4 [149 kB] 146s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 146s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 146s Get:15 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 146s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x alembic all 1.13.2-4 [294 kB] 146s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 146s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 147s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 147s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 147s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 147s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 147s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 147s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 147s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 147s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 147s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 147s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 147s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 147s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 147s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 148s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 148s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 148s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 148s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 148s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 148s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 148s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 149s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 149s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 149s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 149s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 149s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 149s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 149s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 149s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 149s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 149s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 149s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 149s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 149s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 149s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 149s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 149s Get:54 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 149s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 149s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 149s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 149s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 149s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 149s Get:60 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 149s Get:61 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 149s Get:62 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 149s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 149s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig s390x 2.15.0-2ubuntu1 [191 kB] 149s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-font-awesome all 5.0.10+really4.7.0~dfsg-4.1 [516 kB] 149s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x fonts-glyphicons-halflings all 1.009~3.4.1+dfsg-3 [118 kB] 149s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x libann0 s390x 1.1.2+doc-9build1 [28.8 kB] 149s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x libcdt5 s390x 2.42.4-2build4 [23.3 kB] 149s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x libcgraph6 s390x 2.42.4-2build4 [47.0 kB] 149s Get:70 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 149s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 149s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 149s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 149s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 149s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 149s Get:76 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 149s Get:77 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 149s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 149s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 149s Get:80 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 149s Get:81 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 149s Get:82 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 149s Get:83 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 149s Get:84 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 149s Get:85 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 149s Get:86 http://ftpmaster.internal/ubuntu plucky/main s390x libxpm4 s390x 1:3.5.17-1build2 [41.2 kB] 149s Get:87 http://ftpmaster.internal/ubuntu plucky/main s390x libgd3 s390x 2.3.3-12ubuntu3 [141 kB] 149s Get:88 http://ftpmaster.internal/ubuntu plucky/universe s390x libgts-0.7-5t64 s390x 0.7.6+darcs121130-5.2build1 [164 kB] 149s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libpixman-1-0 s390x 0.44.0-3 [201 kB] 149s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-render0 s390x 1.17.0-2 [17.0 kB] 149s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libxcb-shm0 s390x 1.17.0-2 [5862 B] 149s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libxrender1 s390x 1:0.9.10-1.1build1 [20.4 kB] 149s Get:93 http://ftpmaster.internal/ubuntu plucky/main s390x libcairo2 s390x 1.18.2-2 [580 kB] 149s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 149s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libthai-data all 0.1.29-2build1 [158 kB] 149s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libdatrie1 s390x 0.2.13-3build1 [20.6 kB] 149s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libthai0 s390x 0.1.29-2build1 [20.7 kB] 149s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libpango-1.0-0 s390x 1.56.1-1 [253 kB] 149s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x libpangoft2-1.0-0 s390x 1.56.1-1 [50.3 kB] 149s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x libpangocairo-1.0-0 s390x 1.56.1-1 [28.3 kB] 149s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x libpathplan4 s390x 2.42.4-2build4 [26.6 kB] 150s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x libgvc6 s390x 2.42.4-2build4 [789 kB] 150s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x libgvpr2 s390x 2.42.4-2build4 [194 kB] 150s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x liblab-gamut1 s390x 2.42.4-2build4 [1837 kB] 150s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x x11-common all 1:7.7+23ubuntu3 [21.7 kB] 150s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libice6 s390x 2:1.1.1-1 [45.4 kB] 150s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libsm6 s390x 2:1.2.4-1 [18.4 kB] 150s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libxt6t64 s390x 1:1.2.1-1.2build1 [184 kB] 150s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libxmu6 s390x 2:1.1.3-3build2 [53.0 kB] 150s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libxaw7 s390x 2:1.0.16-1 [201 kB] 150s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x graphviz s390x 2.42.4-2build4 [699 kB] 150s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libcares2 s390x 1.34.4-2.1 [101 kB] 150s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x libev4t64 s390x 1:4.33-2.1build1 [32.0 kB] 150s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x libjs-bootstrap all 3.4.1+dfsg-3 [129 kB] 150s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 150s Get:116 http://ftpmaster.internal/ubuntu plucky/main s390x libpq5 s390x 17.3-3 [147 kB] 150s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x libsubunit-perl all 1.4.2-3build1 [5936 B] 150s Get:118 http://ftpmaster.internal/ubuntu plucky/main s390x libxslt1.1 s390x 1.1.39-0exp1ubuntu2 [169 kB] 150s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x python-taskflow-doc all 5.10.0-0ubuntu1 [1879 kB] 150s Get:120 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 150s Get:121 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 150s Get:122 http://ftpmaster.internal/ubuntu plucky/main s390x python3-arrow all 1.3.0-1.1ubuntu1 [56.1 kB] 150s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-async-timeout all 5.0.1-1 [6830 B] 150s Get:124 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pbr all 6.1.1-0ubuntu1 [58.2 kB] 150s Get:125 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB] 150s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x python3-debtcollector all 3.0.0-3 [13.3 kB] 150s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 150s Get:128 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prettytable all 3.12.0-1 [36.5 kB] 150s Get:129 http://ftpmaster.internal/ubuntu plucky/main s390x python3-automaton all 3.2.0-3 [15.0 kB] 150s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x python3-autopage all 0.4.0-4 [13.1 kB] 150s Get:131 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cachetools all 5.3.3-1 [10.3 kB] 150s Get:132 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyperclip all 1.8.2-2 [11.5 kB] 150s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cmd2 all 2.5.7+ds-1 [123 kB] 150s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 150s Get:135 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 150s Get:136 http://ftpmaster.internal/ubuntu plucky/main s390x python3-stevedore all 1:5.4.0-0ubuntu1 [21.1 kB] 150s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cliff all 4.8.0-0ubuntu1 [43.3 kB] 150s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x python3-decorator all 5.1.1-5 [10.1 kB] 151s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 151s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-deprecated all 1.2.18-1 [10.6 kB] 151s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 151s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x python3-deprecation all 2.1.0-3 [8806 B] 151s Get:143 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dnspython all 2.7.0-1ubuntu1 [167 kB] 151s Get:144 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dogpile.cache all 1.3.3-1 [46.8 kB] 151s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-dulwich s390x 0.22.7-1 [183 kB] 151s Get:146 http://ftpmaster.internal/ubuntu plucky/main s390x python3-futurist all 3.0.0-3 [24.2 kB] 151s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-etcd3gw all 2.1.0-2ubuntu1 [13.0 kB] 151s Get:148 http://ftpmaster.internal/ubuntu plucky/main s390x python3-eventlet all 0.39.0-0ubuntu1 [277 kB] 151s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-extras all 1.0.0-6 [7040 B] 151s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monotonic all 1.6-3 [5344 B] 151s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fasteners all 0.18-2 [12.5 kB] 151s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testtools all 2.7.2-4 [124 kB] 151s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fixtures all 4.1.0-3 [34.8 kB] 151s Get:154 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 151s Get:155 http://ftpmaster.internal/ubuntu plucky/main s390x python3-jmespath all 1.0.1-1 [21.3 kB] 151s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-zope.event all 5.0-0.1 [7512 B] 151s Get:157 http://ftpmaster.internal/ubuntu plucky/main s390x python3-zope.interface s390x 7.2-1 [140 kB] 151s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-gevent s390x 24.11.1-1 [1095 kB] 151s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-kerberos s390x 1.1.14-3.1build10 [21.4 kB] 151s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pure-sasl all 0.5.1+dfsg1-5 [11.4 kB] 151s Get:161 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB] 151s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-kazoo all 2.9.0-2 [103 kB] 151s Get:163 http://ftpmaster.internal/ubuntu plucky/main s390x python3-iso8601 all 2.1.0-2 [9136 B] 151s Get:164 http://ftpmaster.internal/ubuntu plucky/main s390x python3-lxml s390x 5.3.1-1 [1773 kB] 151s Get:165 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-service-types all 1.7.0-5 [12.8 kB] 151s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x python3-keystoneauth1 all 5.9.1-0ubuntu1 [171 kB] 151s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x python3-vine all 5.1.0+dfsg-1 [14.2 kB] 151s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x python3-amqp all 5.3.1-2 [43.5 kB] 151s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x python3-kombu all 5.4.2-3 [145 kB] 151s Get:170 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB] 151s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 151s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-openstackdocstheme all 3.2.0-0ubuntu2 [863 kB] 151s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x python3-munch all 4.0.0-2 [10.9 kB] 151s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x python3-platformdirs all 4.3.6-1 [16.8 kB] 151s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 151s Get:176 http://ftpmaster.internal/ubuntu plucky/main s390x python3-requestsexceptions all 1.4.0-5 [3824 B] 151s Get:177 http://ftpmaster.internal/ubuntu plucky/main s390x python3-openstacksdk all 4.3.0-0ubuntu1 [676 kB] 151s Get:178 http://ftpmaster.internal/ubuntu plucky/main s390x python3-os-client-config all 2.1.0-0ubuntu5 [17.6 kB] 151s Get:179 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.i18n all 6.5.0-0ubuntu1 [22.3 kB] 151s Get:180 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.utils all 8.1.0-0ubuntu1 [88.4 kB] 151s Get:181 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.serialization all 5.6.0-0ubuntu1 [15.8 kB] 151s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tomlkit all 0.13.2-1 [37.6 kB] 151s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x python3-voluptuous all 0.14.2-1 [42.7 kB] 151s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-subunit all 1.4.2-3build1 [67.6 kB] 151s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x subunit all 1.4.2-3build1 [4500 B] 151s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-stestr all 4.1.0-3 [57.6 kB] 151s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-oslotest all 1:5.0.0-4 [17.5 kB] 151s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wheel all 0.45.1-1 [57.7 kB] 151s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pip all 25.0+dfsg-1 [1417 kB] 151s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psycopg2 s390x 2.9.10-1 [147 kB] 152s Get:191 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyasyncore all 1.0.2-3 [10.2 kB] 152s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pydot all 2.0.0-3 [24.9 kB] 152s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-pydotplus all 2.0.2-5 [20.9 kB] 152s Get:194 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pymysql all 1.1.1-2ubuntu1 [39.5 kB] 152s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-redis all 4.3.4-4 [166 kB] 152s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 152s Get:197 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 152s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 152s Get:199 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 152s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sphinxcontrib.jquery all 4.1-5 [6678 B] 152s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy-utils all 0.41.1-0ubuntu1 [59.4 kB] 152s Get:202 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tenacity all 9.0.0-0ubuntu1 [17.0 kB] 152s Get:203 http://ftpmaster.internal/ubuntu plucky/main s390x python3-taskflow all 5.10.0-0ubuntu1 [261 kB] 152s Get:204 http://ftpmaster.internal/ubuntu plucky/main s390x python3-testscenarios all 0.5.0-4 [13.0 kB] 152s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-zake all 0.2.2-8 [14.1 kB] 152s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x openstack-pkg-tools all 123ubuntu2 [94.5 kB] 153s Fetched 99.7 MB in 8s (13.2 MB/s) 153s Selecting previously unselected package libpython3.12-minimal:s390x. 153s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 153s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 153s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 153s Selecting previously unselected package python3.12-minimal. 153s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 153s Unpacking python3.12-minimal (3.12.9-1) ... 153s Selecting previously unselected package sgml-base. 153s Preparing to unpack .../002-sgml-base_1.31_all.deb ... 153s Unpacking sgml-base (1.31) ... 153s Selecting previously unselected package libnsl2:s390x. 153s Preparing to unpack .../003-libnsl2_1.3.0-3build3_s390x.deb ... 153s Unpacking libnsl2:s390x (1.3.0-3build3) ... 153s Selecting previously unselected package libpython3.12-stdlib:s390x. 153s Preparing to unpack .../004-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 153s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 153s Selecting previously unselected package python3-netifaces:s390x. 153s Preparing to unpack .../005-python3-netifaces_0.11.0-2build4_s390x.deb ... 153s Unpacking python3-netifaces:s390x (0.11.0-2build4) ... 153s Selecting previously unselected package python3.12. 153s Preparing to unpack .../006-python3.12_3.12.9-1_s390x.deb ... 153s Unpacking python3.12 (3.12.9-1) ... 153s Selecting previously unselected package python3-importlib-metadata. 153s Preparing to unpack .../007-python3-importlib-metadata_8.6.1-1_all.deb ... 153s Unpacking python3-importlib-metadata (8.6.1-1) ... 153s Selecting previously unselected package python3-mako. 153s Preparing to unpack .../008-python3-mako_1.3.8-2_all.deb ... 153s Unpacking python3-mako (1.3.8-2) ... 153s Selecting previously unselected package python3-greenlet. 153s Preparing to unpack .../009-python3-greenlet_3.1.0-1_s390x.deb ... 153s Unpacking python3-greenlet (3.1.0-1) ... 153s Selecting previously unselected package python3-sqlalchemy. 153s Preparing to unpack .../010-python3-sqlalchemy_2.0.38+ds1-0ubuntu1_all.deb ... 153s Unpacking python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 153s Selecting previously unselected package python3-alembic. 153s Preparing to unpack .../011-python3-alembic_1.13.2-4_all.deb ... 153s Unpacking python3-alembic (1.13.2-4) ... 153s Selecting previously unselected package libjs-jquery. 153s Preparing to unpack .../012-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 153s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 153s Selecting previously unselected package libjs-underscore. 153s Preparing to unpack .../013-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 153s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 153s Selecting previously unselected package libjs-sphinxdoc. 153s Preparing to unpack .../014-libjs-sphinxdoc_8.1.3-5_all.deb ... 153s Unpacking libjs-sphinxdoc (8.1.3-5) ... 153s Selecting previously unselected package alembic. 153s Preparing to unpack .../015-alembic_1.13.2-4_all.deb ... 153s Unpacking alembic (1.13.2-4) ... 153s Selecting previously unselected package m4. 153s Preparing to unpack .../016-m4_1.4.19-5_s390x.deb ... 153s Unpacking m4 (1.4.19-5) ... 153s Selecting previously unselected package autoconf. 153s Preparing to unpack .../017-autoconf_2.72-3_all.deb ... 153s Unpacking autoconf (2.72-3) ... 153s Selecting previously unselected package autotools-dev. 153s Preparing to unpack .../018-autotools-dev_20220109.1_all.deb ... 153s Unpacking autotools-dev (20220109.1) ... 153s Selecting previously unselected package automake. 153s Preparing to unpack .../019-automake_1%3a1.17-3_all.deb ... 153s Unpacking automake (1:1.17-3) ... 153s Selecting previously unselected package autopoint. 153s Preparing to unpack .../020-autopoint_0.23.1-1_all.deb ... 153s Unpacking autopoint (0.23.1-1) ... 153s Selecting previously unselected package libisl23:s390x. 153s Preparing to unpack .../021-libisl23_0.27-1_s390x.deb ... 153s Unpacking libisl23:s390x (0.27-1) ... 153s Selecting previously unselected package libmpc3:s390x. 153s Preparing to unpack .../022-libmpc3_1.3.1-1build2_s390x.deb ... 153s Unpacking libmpc3:s390x (1.3.1-1build2) ... 153s Selecting previously unselected package cpp-14-s390x-linux-gnu. 153s Preparing to unpack .../023-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 153s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package cpp-14. 154s Preparing to unpack .../024-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package cpp-s390x-linux-gnu. 154s Preparing to unpack .../025-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package cpp. 154s Preparing to unpack .../026-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking cpp (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package libcc1-0:s390x. 154s Preparing to unpack .../027-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libgomp1:s390x. 154s Preparing to unpack .../028-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libitm1:s390x. 154s Preparing to unpack .../029-libitm1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libasan8:s390x. 154s Preparing to unpack .../030-libasan8_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libubsan1:s390x. 154s Preparing to unpack .../031-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 154s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 154s Selecting previously unselected package libgcc-14-dev:s390x. 154s Preparing to unpack .../032-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package gcc-14-s390x-linux-gnu. 154s Preparing to unpack .../033-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package gcc-14. 154s Preparing to unpack .../034-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package gcc-s390x-linux-gnu. 154s Preparing to unpack .../035-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package gcc. 154s Preparing to unpack .../036-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 154s Unpacking gcc (4:14.2.0-1ubuntu1) ... 154s Selecting previously unselected package libstdc++-14-dev:s390x. 154s Preparing to unpack .../037-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 154s Selecting previously unselected package g++-14-s390x-linux-gnu. 154s Preparing to unpack .../038-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 154s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package g++-14. 155s Preparing to unpack .../039-g++-14_14.2.0-17ubuntu1_s390x.deb ... 155s Unpacking g++-14 (14.2.0-17ubuntu1) ... 155s Selecting previously unselected package g++-s390x-linux-gnu. 155s Preparing to unpack .../040-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 155s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 155s Selecting previously unselected package g++. 155s Preparing to unpack .../041-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 155s Unpacking g++ (4:14.2.0-1ubuntu1) ... 155s Selecting previously unselected package build-essential. 155s Preparing to unpack .../042-build-essential_12.10ubuntu1_s390x.deb ... 155s Unpacking build-essential (12.10ubuntu1) ... 155s Selecting previously unselected package libdebhelper-perl. 155s Preparing to unpack .../043-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 155s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 155s Selecting previously unselected package libtool. 155s Preparing to unpack .../044-libtool_2.5.4-3build1_all.deb ... 155s Unpacking libtool (2.5.4-3build1) ... 155s Selecting previously unselected package dh-autoreconf. 155s Preparing to unpack .../045-dh-autoreconf_20_all.deb ... 155s Unpacking dh-autoreconf (20) ... 155s Selecting previously unselected package libarchive-zip-perl. 155s Preparing to unpack .../046-libarchive-zip-perl_1.68-1_all.deb ... 155s Unpacking libarchive-zip-perl (1.68-1) ... 155s Selecting previously unselected package libfile-stripnondeterminism-perl. 155s Preparing to unpack .../047-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 155s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 155s Selecting previously unselected package dh-strip-nondeterminism. 155s Preparing to unpack .../048-dh-strip-nondeterminism_1.14.1-2_all.deb ... 155s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 155s Selecting previously unselected package debugedit. 155s Preparing to unpack .../049-debugedit_1%3a5.1-2_s390x.deb ... 155s Unpacking debugedit (1:5.1-2) ... 155s Selecting previously unselected package dwz. 155s Preparing to unpack .../050-dwz_0.15-1build6_s390x.deb ... 155s Unpacking dwz (0.15-1build6) ... 155s Selecting previously unselected package gettext. 155s Preparing to unpack .../051-gettext_0.23.1-1_s390x.deb ... 155s Unpacking gettext (0.23.1-1) ... 155s Selecting previously unselected package intltool-debian. 155s Preparing to unpack .../052-intltool-debian_0.35.0+20060710.6_all.deb ... 155s Unpacking intltool-debian (0.35.0+20060710.6) ... 155s Selecting previously unselected package po-debconf. 155s Preparing to unpack .../053-po-debconf_1.0.21+nmu1_all.deb ... 155s Unpacking po-debconf (1.0.21+nmu1) ... 155s Selecting previously unselected package debhelper. 155s Preparing to unpack .../054-debhelper_13.24.1ubuntu2_all.deb ... 155s Unpacking debhelper (13.24.1ubuntu2) ... 155s Selecting previously unselected package dh-python. 155s Preparing to unpack .../055-dh-python_6.20250108_all.deb ... 155s Unpacking dh-python (6.20250108) ... 155s Selecting previously unselected package xml-core. 155s Preparing to unpack .../056-xml-core_0.19_all.deb ... 155s Unpacking xml-core (0.19) ... 155s Selecting previously unselected package docutils-common. 155s Preparing to unpack .../057-docutils-common_0.21.2+dfsg-2_all.deb ... 155s Unpacking docutils-common (0.21.2+dfsg-2) ... 155s Selecting previously unselected package libfreetype6:s390x. 155s Preparing to unpack .../058-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 155s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 155s Selecting previously unselected package fonts-dejavu-mono. 155s Preparing to unpack .../059-fonts-dejavu-mono_2.37-8_all.deb ... 155s Unpacking fonts-dejavu-mono (2.37-8) ... 155s Selecting previously unselected package fonts-dejavu-core. 155s Preparing to unpack .../060-fonts-dejavu-core_2.37-8_all.deb ... 155s Unpacking fonts-dejavu-core (2.37-8) ... 155s Selecting previously unselected package fontconfig-config. 155s Preparing to unpack .../061-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 155s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 155s Selecting previously unselected package libfontconfig1:s390x. 155s Preparing to unpack .../062-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 155s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 155s Selecting previously unselected package fontconfig. 155s Preparing to unpack .../063-fontconfig_2.15.0-2ubuntu1_s390x.deb ... 155s Unpacking fontconfig (2.15.0-2ubuntu1) ... 155s Selecting previously unselected package fonts-font-awesome. 155s Preparing to unpack .../064-fonts-font-awesome_5.0.10+really4.7.0~dfsg-4.1_all.deb ... 155s Unpacking fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 155s Selecting previously unselected package fonts-glyphicons-halflings. 155s Preparing to unpack .../065-fonts-glyphicons-halflings_1.009~3.4.1+dfsg-3_all.deb ... 155s Unpacking fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 155s Selecting previously unselected package libann0. 155s Preparing to unpack .../066-libann0_1.1.2+doc-9build1_s390x.deb ... 155s Unpacking libann0 (1.1.2+doc-9build1) ... 155s Selecting previously unselected package libcdt5:s390x. 155s Preparing to unpack .../067-libcdt5_2.42.4-2build4_s390x.deb ... 155s Unpacking libcdt5:s390x (2.42.4-2build4) ... 155s Selecting previously unselected package libcgraph6:s390x. 155s Preparing to unpack .../068-libcgraph6_2.42.4-2build4_s390x.deb ... 155s Unpacking libcgraph6:s390x (2.42.4-2build4) ... 155s Selecting previously unselected package libsharpyuv0:s390x. 155s Preparing to unpack .../069-libsharpyuv0_1.5.0-0.1_s390x.deb ... 155s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libaom3:s390x. 155s Preparing to unpack .../070-libaom3_3.12.0-1_s390x.deb ... 155s Unpacking libaom3:s390x (3.12.0-1) ... 155s Selecting previously unselected package libheif-plugin-aomdec:s390x. 155s Preparing to unpack .../071-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 155s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 155s Selecting previously unselected package libde265-0:s390x. 155s Preparing to unpack .../072-libde265-0_1.0.15-1build4_s390x.deb ... 155s Unpacking libde265-0:s390x (1.0.15-1build4) ... 155s Selecting previously unselected package libheif-plugin-libde265:s390x. 155s Preparing to unpack .../073-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 155s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 155s Selecting previously unselected package libheif1:s390x. 155s Preparing to unpack .../074-libheif1_1.19.5-1build1_s390x.deb ... 155s Unpacking libheif1:s390x (1.19.5-1build1) ... 155s Selecting previously unselected package libimagequant0:s390x. 155s Preparing to unpack .../075-libimagequant0_2.18.0-1build1_s390x.deb ... 155s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 155s Selecting previously unselected package libjpeg-turbo8:s390x. 155s Preparing to unpack .../076-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 155s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 155s Selecting previously unselected package libjpeg8:s390x. 155s Preparing to unpack .../077-libjpeg8_8c-2ubuntu11_s390x.deb ... 155s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 155s Selecting previously unselected package libgraphite2-3:s390x. 155s Preparing to unpack .../078-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 155s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 155s Selecting previously unselected package libharfbuzz0b:s390x. 155s Preparing to unpack .../079-libharfbuzz0b_10.2.0-1_s390x.deb ... 155s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 155s Selecting previously unselected package libraqm0:s390x. 155s Preparing to unpack .../080-libraqm0_0.10.2-1_s390x.deb ... 155s Unpacking libraqm0:s390x (0.10.2-1) ... 155s Selecting previously unselected package libdeflate0:s390x. 155s Preparing to unpack .../081-libdeflate0_1.23-1_s390x.deb ... 155s Unpacking libdeflate0:s390x (1.23-1) ... 155s Selecting previously unselected package libjbig0:s390x. 155s Preparing to unpack .../082-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 155s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 155s Selecting previously unselected package libwebp7:s390x. 155s Preparing to unpack .../083-libwebp7_1.5.0-0.1_s390x.deb ... 155s Unpacking libwebp7:s390x (1.5.0-0.1) ... 155s Selecting previously unselected package libtiff6:s390x. 155s Preparing to unpack .../084-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 155s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 155s Selecting previously unselected package libxpm4:s390x. 155s Preparing to unpack .../085-libxpm4_1%3a3.5.17-1build2_s390x.deb ... 155s Unpacking libxpm4:s390x (1:3.5.17-1build2) ... 155s Selecting previously unselected package libgd3:s390x. 155s Preparing to unpack .../086-libgd3_2.3.3-12ubuntu3_s390x.deb ... 155s Unpacking libgd3:s390x (2.3.3-12ubuntu3) ... 155s Selecting previously unselected package libgts-0.7-5t64:s390x. 155s Preparing to unpack .../087-libgts-0.7-5t64_0.7.6+darcs121130-5.2build1_s390x.deb ... 155s Unpacking libgts-0.7-5t64:s390x (0.7.6+darcs121130-5.2build1) ... 155s Selecting previously unselected package libpixman-1-0:s390x. 155s Preparing to unpack .../088-libpixman-1-0_0.44.0-3_s390x.deb ... 155s Unpacking libpixman-1-0:s390x (0.44.0-3) ... 155s Selecting previously unselected package libxcb-render0:s390x. 155s Preparing to unpack .../089-libxcb-render0_1.17.0-2_s390x.deb ... 155s Unpacking libxcb-render0:s390x (1.17.0-2) ... 155s Selecting previously unselected package libxcb-shm0:s390x. 155s Preparing to unpack .../090-libxcb-shm0_1.17.0-2_s390x.deb ... 155s Unpacking libxcb-shm0:s390x (1.17.0-2) ... 155s Selecting previously unselected package libxrender1:s390x. 155s Preparing to unpack .../091-libxrender1_1%3a0.9.10-1.1build1_s390x.deb ... 155s Unpacking libxrender1:s390x (1:0.9.10-1.1build1) ... 155s Selecting previously unselected package libcairo2:s390x. 155s Preparing to unpack .../092-libcairo2_1.18.2-2_s390x.deb ... 155s Unpacking libcairo2:s390x (1.18.2-2) ... 155s Selecting previously unselected package libltdl7:s390x. 155s Preparing to unpack .../093-libltdl7_2.5.4-3build1_s390x.deb ... 155s Unpacking libltdl7:s390x (2.5.4-3build1) ... 155s Selecting previously unselected package libthai-data. 155s Preparing to unpack .../094-libthai-data_0.1.29-2build1_all.deb ... 155s Unpacking libthai-data (0.1.29-2build1) ... 156s Selecting previously unselected package libdatrie1:s390x. 156s Preparing to unpack .../095-libdatrie1_0.2.13-3build1_s390x.deb ... 156s Unpacking libdatrie1:s390x (0.2.13-3build1) ... 156s Selecting previously unselected package libthai0:s390x. 156s Preparing to unpack .../096-libthai0_0.1.29-2build1_s390x.deb ... 156s Unpacking libthai0:s390x (0.1.29-2build1) ... 156s Selecting previously unselected package libpango-1.0-0:s390x. 156s Preparing to unpack .../097-libpango-1.0-0_1.56.1-1_s390x.deb ... 156s Unpacking libpango-1.0-0:s390x (1.56.1-1) ... 156s Selecting previously unselected package libpangoft2-1.0-0:s390x. 156s Preparing to unpack .../098-libpangoft2-1.0-0_1.56.1-1_s390x.deb ... 156s Unpacking libpangoft2-1.0-0:s390x (1.56.1-1) ... 156s Selecting previously unselected package libpangocairo-1.0-0:s390x. 156s Preparing to unpack .../099-libpangocairo-1.0-0_1.56.1-1_s390x.deb ... 156s Unpacking libpangocairo-1.0-0:s390x (1.56.1-1) ... 156s Selecting previously unselected package libpathplan4:s390x. 156s Preparing to unpack .../100-libpathplan4_2.42.4-2build4_s390x.deb ... 156s Unpacking libpathplan4:s390x (2.42.4-2build4) ... 156s Selecting previously unselected package libgvc6. 156s Preparing to unpack .../101-libgvc6_2.42.4-2build4_s390x.deb ... 156s Unpacking libgvc6 (2.42.4-2build4) ... 156s Selecting previously unselected package libgvpr2:s390x. 156s Preparing to unpack .../102-libgvpr2_2.42.4-2build4_s390x.deb ... 156s Unpacking libgvpr2:s390x (2.42.4-2build4) ... 156s Selecting previously unselected package liblab-gamut1:s390x. 156s Preparing to unpack .../103-liblab-gamut1_2.42.4-2build4_s390x.deb ... 156s Unpacking liblab-gamut1:s390x (2.42.4-2build4) ... 156s Selecting previously unselected package x11-common. 156s Preparing to unpack .../104-x11-common_1%3a7.7+23ubuntu3_all.deb ... 156s Unpacking x11-common (1:7.7+23ubuntu3) ... 156s Selecting previously unselected package libice6:s390x. 156s Preparing to unpack .../105-libice6_2%3a1.1.1-1_s390x.deb ... 156s Unpacking libice6:s390x (2:1.1.1-1) ... 156s Selecting previously unselected package libsm6:s390x. 156s Preparing to unpack .../106-libsm6_2%3a1.2.4-1_s390x.deb ... 156s Unpacking libsm6:s390x (2:1.2.4-1) ... 156s Selecting previously unselected package libxt6t64:s390x. 156s Preparing to unpack .../107-libxt6t64_1%3a1.2.1-1.2build1_s390x.deb ... 156s Unpacking libxt6t64:s390x (1:1.2.1-1.2build1) ... 156s Selecting previously unselected package libxmu6:s390x. 156s Preparing to unpack .../108-libxmu6_2%3a1.1.3-3build2_s390x.deb ... 156s Unpacking libxmu6:s390x (2:1.1.3-3build2) ... 156s Selecting previously unselected package libxaw7:s390x. 156s Preparing to unpack .../109-libxaw7_2%3a1.0.16-1_s390x.deb ... 156s Unpacking libxaw7:s390x (2:1.0.16-1) ... 156s Selecting previously unselected package graphviz. 156s Preparing to unpack .../110-graphviz_2.42.4-2build4_s390x.deb ... 156s Unpacking graphviz (2.42.4-2build4) ... 156s Selecting previously unselected package libcares2:s390x. 156s Preparing to unpack .../111-libcares2_1.34.4-2.1_s390x.deb ... 156s Unpacking libcares2:s390x (1.34.4-2.1) ... 156s Selecting previously unselected package libev4t64:s390x. 156s Preparing to unpack .../112-libev4t64_1%3a4.33-2.1build1_s390x.deb ... 156s Unpacking libev4t64:s390x (1:4.33-2.1build1) ... 156s Selecting previously unselected package libjs-bootstrap. 156s Preparing to unpack .../113-libjs-bootstrap_3.4.1+dfsg-3_all.deb ... 156s Unpacking libjs-bootstrap (3.4.1+dfsg-3) ... 156s Selecting previously unselected package libjson-perl. 156s Preparing to unpack .../114-libjson-perl_4.10000-1_all.deb ... 156s Unpacking libjson-perl (4.10000-1) ... 156s Selecting previously unselected package libpq5:s390x. 156s Preparing to unpack .../115-libpq5_17.3-3_s390x.deb ... 156s Unpacking libpq5:s390x (17.3-3) ... 156s Selecting previously unselected package libsubunit-perl. 156s Preparing to unpack .../116-libsubunit-perl_1.4.2-3build1_all.deb ... 156s Unpacking libsubunit-perl (1.4.2-3build1) ... 156s Selecting previously unselected package libxslt1.1:s390x. 156s Preparing to unpack .../117-libxslt1.1_1.1.39-0exp1ubuntu2_s390x.deb ... 156s Unpacking libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 156s Selecting previously unselected package python-taskflow-doc. 156s Preparing to unpack .../118-python-taskflow-doc_5.10.0-0ubuntu1_all.deb ... 156s Unpacking python-taskflow-doc (5.10.0-0ubuntu1) ... 156s Selecting previously unselected package python3-all. 156s Preparing to unpack .../119-python3-all_3.13.1-1~exp2_s390x.deb ... 156s Unpacking python3-all (3.13.1-1~exp2) ... 156s Selecting previously unselected package python3-dateutil. 156s Preparing to unpack .../120-python3-dateutil_2.9.0-3_all.deb ... 156s Unpacking python3-dateutil (2.9.0-3) ... 156s Selecting previously unselected package python3-arrow. 156s Preparing to unpack .../121-python3-arrow_1.3.0-1.1ubuntu1_all.deb ... 156s Unpacking python3-arrow (1.3.0-1.1ubuntu1) ... 156s Selecting previously unselected package python3-async-timeout. 156s Preparing to unpack .../122-python3-async-timeout_5.0.1-1_all.deb ... 156s Unpacking python3-async-timeout (5.0.1-1) ... 156s Selecting previously unselected package python3-pbr. 156s Preparing to unpack .../123-python3-pbr_6.1.1-0ubuntu1_all.deb ... 156s Unpacking python3-pbr (6.1.1-0ubuntu1) ... 156s Selecting previously unselected package python3-wrapt. 156s Preparing to unpack .../124-python3-wrapt_1.15.0-4_s390x.deb ... 156s Unpacking python3-wrapt (1.15.0-4) ... 156s Selecting previously unselected package python3-debtcollector. 156s Preparing to unpack .../125-python3-debtcollector_3.0.0-3_all.deb ... 156s Unpacking python3-debtcollector (3.0.0-3) ... 156s Selecting previously unselected package python3-wcwidth. 156s Preparing to unpack .../126-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 156s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 156s Selecting previously unselected package python3-prettytable. 156s Preparing to unpack .../127-python3-prettytable_3.12.0-1_all.deb ... 156s Unpacking python3-prettytable (3.12.0-1) ... 156s Selecting previously unselected package python3-automaton. 156s Preparing to unpack .../128-python3-automaton_3.2.0-3_all.deb ... 156s Unpacking python3-automaton (3.2.0-3) ... 156s Selecting previously unselected package python3-autopage. 156s Preparing to unpack .../129-python3-autopage_0.4.0-4_all.deb ... 156s Unpacking python3-autopage (0.4.0-4) ... 156s Selecting previously unselected package python3-cachetools. 156s Preparing to unpack .../130-python3-cachetools_5.3.3-1_all.deb ... 156s Unpacking python3-cachetools (5.3.3-1) ... 156s Selecting previously unselected package python3-pyperclip. 156s Preparing to unpack .../131-python3-pyperclip_1.8.2-2_all.deb ... 156s Unpacking python3-pyperclip (1.8.2-2) ... 156s Selecting previously unselected package python3-cmd2. 156s Preparing to unpack .../132-python3-cmd2_2.5.7+ds-1_all.deb ... 156s Unpacking python3-cmd2 (2.5.7+ds-1) ... 156s Selecting previously unselected package python3-roman. 156s Preparing to unpack .../133-python3-roman_5.0-1_all.deb ... 156s Unpacking python3-roman (5.0-1) ... 156s Selecting previously unselected package python3-docutils. 156s Preparing to unpack .../134-python3-docutils_0.21.2+dfsg-2_all.deb ... 156s Unpacking python3-docutils (0.21.2+dfsg-2) ... 156s Selecting previously unselected package python3-stevedore. 156s Preparing to unpack .../135-python3-stevedore_1%3a5.4.0-0ubuntu1_all.deb ... 156s Unpacking python3-stevedore (1:5.4.0-0ubuntu1) ... 156s Selecting previously unselected package python3-cliff. 156s Preparing to unpack .../136-python3-cliff_4.8.0-0ubuntu1_all.deb ... 156s Unpacking python3-cliff (4.8.0-0ubuntu1) ... 156s Selecting previously unselected package python3-decorator. 156s Preparing to unpack .../137-python3-decorator_5.1.1-5_all.deb ... 156s Unpacking python3-decorator (5.1.1-5) ... 156s Selecting previously unselected package python3-defusedxml. 156s Preparing to unpack .../138-python3-defusedxml_0.7.1-3_all.deb ... 156s Unpacking python3-defusedxml (0.7.1-3) ... 156s Selecting previously unselected package python3-deprecated. 156s Preparing to unpack .../139-python3-deprecated_1.2.18-1_all.deb ... 156s Unpacking python3-deprecated (1.2.18-1) ... 156s Selecting previously unselected package python3-packaging. 156s Preparing to unpack .../140-python3-packaging_24.2-1_all.deb ... 156s Unpacking python3-packaging (24.2-1) ... 156s Selecting previously unselected package python3-deprecation. 156s Preparing to unpack .../141-python3-deprecation_2.1.0-3_all.deb ... 156s Unpacking python3-deprecation (2.1.0-3) ... 156s Selecting previously unselected package python3-dnspython. 156s Preparing to unpack .../142-python3-dnspython_2.7.0-1ubuntu1_all.deb ... 156s Unpacking python3-dnspython (2.7.0-1ubuntu1) ... 156s Selecting previously unselected package python3-dogpile.cache. 156s Preparing to unpack .../143-python3-dogpile.cache_1.3.3-1_all.deb ... 156s Unpacking python3-dogpile.cache (1.3.3-1) ... 156s Selecting previously unselected package python3-dulwich. 156s Preparing to unpack .../144-python3-dulwich_0.22.7-1_s390x.deb ... 156s Unpacking python3-dulwich (0.22.7-1) ... 156s Selecting previously unselected package python3-futurist. 156s Preparing to unpack .../145-python3-futurist_3.0.0-3_all.deb ... 156s Unpacking python3-futurist (3.0.0-3) ... 156s Selecting previously unselected package python3-etcd3gw. 156s Preparing to unpack .../146-python3-etcd3gw_2.1.0-2ubuntu1_all.deb ... 156s Unpacking python3-etcd3gw (2.1.0-2ubuntu1) ... 156s Selecting previously unselected package python3-eventlet. 156s Preparing to unpack .../147-python3-eventlet_0.39.0-0ubuntu1_all.deb ... 156s Unpacking python3-eventlet (0.39.0-0ubuntu1) ... 156s Selecting previously unselected package python3-extras. 156s Preparing to unpack .../148-python3-extras_1.0.0-6_all.deb ... 156s Unpacking python3-extras (1.0.0-6) ... 156s Selecting previously unselected package python3-monotonic. 156s Preparing to unpack .../149-python3-monotonic_1.6-3_all.deb ... 156s Unpacking python3-monotonic (1.6-3) ... 156s Selecting previously unselected package python3-fasteners. 156s Preparing to unpack .../150-python3-fasteners_0.18-2_all.deb ... 156s Unpacking python3-fasteners (0.18-2) ... 156s Selecting previously unselected package python3-testtools. 156s Preparing to unpack .../151-python3-testtools_2.7.2-4_all.deb ... 156s Unpacking python3-testtools (2.7.2-4) ... 156s Selecting previously unselected package python3-fixtures. 156s Preparing to unpack .../152-python3-fixtures_4.1.0-3_all.deb ... 156s Unpacking python3-fixtures (4.1.0-3) ... 156s Selecting previously unselected package python3-imagesize. 156s Preparing to unpack .../153-python3-imagesize_1.4.1-1_all.deb ... 156s Unpacking python3-imagesize (1.4.1-1) ... 156s Selecting previously unselected package python3-jmespath. 156s Preparing to unpack .../154-python3-jmespath_1.0.1-1_all.deb ... 156s Unpacking python3-jmespath (1.0.1-1) ... 156s Selecting previously unselected package python3-zope.event. 156s Preparing to unpack .../155-python3-zope.event_5.0-0.1_all.deb ... 156s Unpacking python3-zope.event (5.0-0.1) ... 156s Selecting previously unselected package python3-zope.interface. 156s Preparing to unpack .../156-python3-zope.interface_7.2-1_s390x.deb ... 156s Unpacking python3-zope.interface (7.2-1) ... 156s Selecting previously unselected package python3-gevent. 156s Preparing to unpack .../157-python3-gevent_24.11.1-1_s390x.deb ... 156s Unpacking python3-gevent (24.11.1-1) ... 156s Selecting previously unselected package python3-kerberos. 156s Preparing to unpack .../158-python3-kerberos_1.1.14-3.1build10_s390x.deb ... 156s Unpacking python3-kerberos (1.1.14-3.1build10) ... 156s Selecting previously unselected package python3-pure-sasl. 156s Preparing to unpack .../159-python3-pure-sasl_0.5.1+dfsg1-5_all.deb ... 156s Unpacking python3-pure-sasl (0.5.1+dfsg1-5) ... 156s Selecting previously unselected package python3-six. 156s Preparing to unpack .../160-python3-six_1.17.0-1_all.deb ... 156s Unpacking python3-six (1.17.0-1) ... 156s Selecting previously unselected package python3-kazoo. 156s Preparing to unpack .../161-python3-kazoo_2.9.0-2_all.deb ... 156s Unpacking python3-kazoo (2.9.0-2) ... 157s Selecting previously unselected package python3-iso8601. 157s Preparing to unpack .../162-python3-iso8601_2.1.0-2_all.deb ... 157s Unpacking python3-iso8601 (2.1.0-2) ... 157s Selecting previously unselected package python3-lxml:s390x. 157s Preparing to unpack .../163-python3-lxml_5.3.1-1_s390x.deb ... 157s Unpacking python3-lxml:s390x (5.3.1-1) ... 157s Selecting previously unselected package python3-os-service-types. 157s Preparing to unpack .../164-python3-os-service-types_1.7.0-5_all.deb ... 157s Unpacking python3-os-service-types (1.7.0-5) ... 157s Selecting previously unselected package python3-keystoneauth1. 157s Preparing to unpack .../165-python3-keystoneauth1_5.9.1-0ubuntu1_all.deb ... 157s Unpacking python3-keystoneauth1 (5.9.1-0ubuntu1) ... 157s Selecting previously unselected package python3-vine. 157s Preparing to unpack .../166-python3-vine_5.1.0+dfsg-1_all.deb ... 157s Unpacking python3-vine (5.1.0+dfsg-1) ... 157s Selecting previously unselected package python3-amqp. 157s Preparing to unpack .../167-python3-amqp_5.3.1-2_all.deb ... 157s Unpacking python3-amqp (5.3.1-2) ... 157s Selecting previously unselected package python3-kombu. 157s Preparing to unpack .../168-python3-kombu_5.4.2-3_all.deb ... 157s Unpacking python3-kombu (5.4.2-3) ... 157s Selecting previously unselected package python3-msgpack. 157s Preparing to unpack .../169-python3-msgpack_1.0.3-3build3_s390x.deb ... 157s Unpacking python3-msgpack (1.0.3-3build3) ... 157s Selecting previously unselected package python3-networkx. 157s Preparing to unpack .../170-python3-networkx_3.2.1-4ubuntu1_all.deb ... 157s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 157s Selecting previously unselected package python3-openstackdocstheme. 157s Preparing to unpack .../171-python3-openstackdocstheme_3.2.0-0ubuntu2_all.deb ... 157s Unpacking python3-openstackdocstheme (3.2.0-0ubuntu2) ... 157s Selecting previously unselected package python3-munch. 157s Preparing to unpack .../172-python3-munch_4.0.0-2_all.deb ... 157s Unpacking python3-munch (4.0.0-2) ... 157s Selecting previously unselected package python3-platformdirs. 157s Preparing to unpack .../173-python3-platformdirs_4.3.6-1_all.deb ... 157s Unpacking python3-platformdirs (4.3.6-1) ... 157s Selecting previously unselected package python3-psutil. 157s Preparing to unpack .../174-python3-psutil_5.9.8-2build3_s390x.deb ... 157s Unpacking python3-psutil (5.9.8-2build3) ... 157s Selecting previously unselected package python3-requestsexceptions. 157s Preparing to unpack .../175-python3-requestsexceptions_1.4.0-5_all.deb ... 157s Unpacking python3-requestsexceptions (1.4.0-5) ... 157s Selecting previously unselected package python3-openstacksdk. 157s Preparing to unpack .../176-python3-openstacksdk_4.3.0-0ubuntu1_all.deb ... 157s Unpacking python3-openstacksdk (4.3.0-0ubuntu1) ... 157s Selecting previously unselected package python3-os-client-config. 157s Preparing to unpack .../177-python3-os-client-config_2.1.0-0ubuntu5_all.deb ... 157s Unpacking python3-os-client-config (2.1.0-0ubuntu5) ... 157s Selecting previously unselected package python3-oslo.i18n. 157s Preparing to unpack .../178-python3-oslo.i18n_6.5.0-0ubuntu1_all.deb ... 157s Unpacking python3-oslo.i18n (6.5.0-0ubuntu1) ... 157s Selecting previously unselected package python3-oslo.utils. 157s Preparing to unpack .../179-python3-oslo.utils_8.1.0-0ubuntu1_all.deb ... 157s Unpacking python3-oslo.utils (8.1.0-0ubuntu1) ... 157s Selecting previously unselected package python3-oslo.serialization. 157s Preparing to unpack .../180-python3-oslo.serialization_5.6.0-0ubuntu1_all.deb ... 157s Unpacking python3-oslo.serialization (5.6.0-0ubuntu1) ... 157s Selecting previously unselected package python3-tomlkit. 157s Preparing to unpack .../181-python3-tomlkit_0.13.2-1_all.deb ... 157s Unpacking python3-tomlkit (0.13.2-1) ... 157s Selecting previously unselected package python3-voluptuous. 157s Preparing to unpack .../182-python3-voluptuous_0.14.2-1_all.deb ... 157s Unpacking python3-voluptuous (0.14.2-1) ... 157s Selecting previously unselected package python3-subunit. 157s Preparing to unpack .../183-python3-subunit_1.4.2-3build1_all.deb ... 157s Unpacking python3-subunit (1.4.2-3build1) ... 157s Selecting previously unselected package subunit. 157s Preparing to unpack .../184-subunit_1.4.2-3build1_all.deb ... 157s Unpacking subunit (1.4.2-3build1) ... 157s Selecting previously unselected package python3-stestr. 157s Preparing to unpack .../185-python3-stestr_4.1.0-3_all.deb ... 157s Unpacking python3-stestr (4.1.0-3) ... 157s Selecting previously unselected package python3-oslotest. 157s Preparing to unpack .../186-python3-oslotest_1%3a5.0.0-4_all.deb ... 157s Unpacking python3-oslotest (1:5.0.0-4) ... 157s Selecting previously unselected package python3-wheel. 157s Preparing to unpack .../187-python3-wheel_0.45.1-1_all.deb ... 157s Unpacking python3-wheel (0.45.1-1) ... 157s Selecting previously unselected package python3-pip. 157s Preparing to unpack .../188-python3-pip_25.0+dfsg-1_all.deb ... 157s Unpacking python3-pip (25.0+dfsg-1) ... 158s Selecting previously unselected package python3-psycopg2. 158s Preparing to unpack .../189-python3-psycopg2_2.9.10-1_s390x.deb ... 158s Unpacking python3-psycopg2 (2.9.10-1) ... 158s Selecting previously unselected package python3-pyasyncore. 158s Preparing to unpack .../190-python3-pyasyncore_1.0.2-3_all.deb ... 158s Unpacking python3-pyasyncore (1.0.2-3) ... 158s Selecting previously unselected package python3-pydot. 158s Preparing to unpack .../191-python3-pydot_2.0.0-3_all.deb ... 158s Unpacking python3-pydot (2.0.0-3) ... 158s Selecting previously unselected package python3-pydotplus. 158s Preparing to unpack .../192-python3-pydotplus_2.0.2-5_all.deb ... 158s Unpacking python3-pydotplus (2.0.2-5) ... 158s Selecting previously unselected package python3-pymysql. 158s Preparing to unpack .../193-python3-pymysql_1.1.1-2ubuntu1_all.deb ... 158s Unpacking python3-pymysql (1.1.1-2ubuntu1) ... 158s Selecting previously unselected package python3-redis. 158s Preparing to unpack .../194-python3-redis_4.3.4-4_all.deb ... 158s Unpacking python3-redis (4.3.4-4) ... 158s Selecting previously unselected package python3-snowballstemmer. 158s Preparing to unpack .../195-python3-snowballstemmer_2.2.0-4build1_all.deb ... 158s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 158s Selecting previously unselected package sphinx-common. 158s Preparing to unpack .../196-sphinx-common_8.1.3-5_all.deb ... 158s Unpacking sphinx-common (8.1.3-5) ... 158s Selecting previously unselected package python3-alabaster. 158s Preparing to unpack .../197-python3-alabaster_0.7.16-0.1_all.deb ... 158s Unpacking python3-alabaster (0.7.16-0.1) ... 158s Selecting previously unselected package python3-sphinx. 158s Preparing to unpack .../198-python3-sphinx_8.1.3-5_all.deb ... 158s Unpacking python3-sphinx (8.1.3-5) ... 158s Selecting previously unselected package python3-sphinxcontrib.jquery. 158s Preparing to unpack .../199-python3-sphinxcontrib.jquery_4.1-5_all.deb ... 158s Unpacking python3-sphinxcontrib.jquery (4.1-5) ... 158s Selecting previously unselected package python3-sqlalchemy-utils. 158s Preparing to unpack .../200-python3-sqlalchemy-utils_0.41.1-0ubuntu1_all.deb ... 158s Unpacking python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 158s Selecting previously unselected package python3-tenacity. 158s Preparing to unpack .../201-python3-tenacity_9.0.0-0ubuntu1_all.deb ... 158s Unpacking python3-tenacity (9.0.0-0ubuntu1) ... 158s Selecting previously unselected package python3-taskflow. 158s Preparing to unpack .../202-python3-taskflow_5.10.0-0ubuntu1_all.deb ... 158s Unpacking python3-taskflow (5.10.0-0ubuntu1) ... 158s Selecting previously unselected package python3-testscenarios. 158s Preparing to unpack .../203-python3-testscenarios_0.5.0-4_all.deb ... 158s Unpacking python3-testscenarios (0.5.0-4) ... 158s Selecting previously unselected package python3-zake. 158s Preparing to unpack .../204-python3-zake_0.2.2-8_all.deb ... 158s Unpacking python3-zake (0.2.2-8) ... 158s Selecting previously unselected package openstack-pkg-tools. 158s Preparing to unpack .../205-openstack-pkg-tools_123ubuntu2_all.deb ... 158s Unpacking openstack-pkg-tools (123ubuntu2) ... 158s Setting up dh-python (6.20250108) ... 158s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 158s Setting up libpixman-1-0:s390x (0.44.0-3) ... 158s Setting up libev4t64:s390x (1:4.33-2.1build1) ... 158s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 158s Setting up libaom3:s390x (3.12.0-1) ... 158s Setting up libsubunit-perl (1.4.2-3build1) ... 158s Setting up python3-importlib-metadata (8.6.1-1) ... 158s Setting up libxpm4:s390x (1:3.5.17-1build2) ... 158s Setting up libxrender1:s390x (1:0.9.10-1.1build1) ... 158s Setting up libdatrie1:s390x (0.2.13-3build1) ... 158s Setting up python3-cachetools (5.3.3-1) ... 158s Setting up libxcb-render0:s390x (1.17.0-2) ... 158s Setting up python3-zope.event (5.0-0.1) ... 159s Setting up python3-defusedxml (0.7.1-3) ... 159s Setting up python3-zope.interface (7.2-1) ... 159s Setting up python3-pbr (6.1.1-0ubuntu1) ... 160s Setting up libarchive-zip-perl (1.68-1) ... 160s Setting up fonts-glyphicons-halflings (1.009~3.4.1+dfsg-3) ... 160s Setting up python3-alabaster (0.7.16-0.1) ... 160s Setting up python3-tenacity (9.0.0-0ubuntu1) ... 160s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 160s Setting up python3-autopage (0.4.0-4) ... 160s Setting up liblab-gamut1:s390x (2.42.4-2build4) ... 160s Setting up python3-extras (1.0.0-6) ... 160s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 160s Setting up x11-common (1:7.7+23ubuntu3) ... 161s Setting up libpq5:s390x (17.3-3) ... 161s Setting up libdeflate0:s390x (1.23-1) ... 161s Setting up python3-kerberos (1.1.14-3.1build10) ... 161s Setting up m4 (1.4.19-5) ... 161s Setting up python3-requestsexceptions (1.4.0-5) ... 161s Setting up python3-pyperclip (1.8.2-2) ... 161s Setting up libxcb-shm0:s390x (1.17.0-2) ... 161s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 161s Setting up python3-networkx (3.2.1-4ubuntu1) ... 164s Setting up python3-wheel (0.45.1-1) ... 164s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 164s Setting up python3-platformdirs (4.3.6-1) ... 164s Setting up python3-munch (4.0.0-2) ... 164s Setting up python3-psutil (5.9.8-2build3) ... 165s Setting up python3-vine (5.1.0+dfsg-1) ... 165s Setting up python3-monotonic (1.6-3) ... 166s Setting up python3-async-timeout (5.0.1-1) ... 166s Setting up python3-six (1.17.0-1) ... 166s Setting up python3-roman (5.0-1) ... 166s Setting up python3-decorator (5.1.1-5) ... 166s Setting up autotools-dev (20220109.1) ... 166s Setting up python3-packaging (24.2-1) ... 166s Setting up python3-iso8601 (2.1.0-2) ... 166s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 167s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 167s Setting up python3-cmd2 (2.5.7+ds-1) ... 167s Setting up python3-snowballstemmer (2.2.0-4build1) ... 168s Setting up libpathplan4:s390x (2.42.4-2build4) ... 168s Setting up python3-jmespath (1.0.1-1) ... 168s Setting up libann0 (1.1.2+doc-9build1) ... 168s Setting up python3-greenlet (3.1.0-1) ... 168s Setting up libimagequant0:s390x (2.18.0-1build1) ... 168s Setting up fonts-dejavu-mono (2.37-8) ... 168s Setting up libcares2:s390x (1.34.4-2.1) ... 168s Setting up libmpc3:s390x (1.3.1-1build2) ... 168s Setting up python3-wrapt (1.15.0-4) ... 168s Setting up autopoint (0.23.1-1) ... 168s Setting up python3-psycopg2 (2.9.10-1) ... 168s Setting up fonts-dejavu-core (2.37-8) ... 168s Setting up python3-deprecation (2.1.0-3) ... 168s Setting up python3-pymysql (1.1.1-2ubuntu1) ... 169s Setting up python3-fasteners (0.18-2) ... 169s Setting up python3-pip (25.0+dfsg-1) ... 171s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 171s Setting up libltdl7:s390x (2.5.4-3build1) ... 171s Setting up autoconf (2.72-3) ... 171s Setting up libwebp7:s390x (1.5.0-0.1) ... 171s Setting up python3-netifaces:s390x (0.11.0-2build4) ... 171s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 171s Setting up dwz (0.15-1build6) ... 171s Setting up python3-dnspython (2.7.0-1ubuntu1) ... 172s Setting up python3-dulwich (0.22.7-1) ... 172s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 172s Setting up libjson-perl (4.10000-1) ... 172s Setting up libnsl2:s390x (1.3.0-3build3) ... 172s Setting up python3-amqp (5.3.1-2) ... 173s Setting up libxslt1.1:s390x (1.1.39-0exp1ubuntu2) ... 173s Setting up debugedit (1:5.1-2) ... 173s Setting up python3-os-service-types (1.7.0-5) ... 173s Setting up python3-stevedore (1:5.4.0-0ubuntu1) ... 173s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 173s Setting up libthai-data (0.1.29-2build1) ... 173s Setting up python3-dateutil (2.9.0-3) ... 174s Setting up libgts-0.7-5t64:s390x (0.7.6+darcs121130-5.2build1) ... 174s Setting up sgml-base (1.31) ... 174s Setting up python3-msgpack (1.0.3-3build3) ... 174s Setting up libcdt5:s390x (2.42.4-2build4) ... 174s Setting up libcgraph6:s390x (2.42.4-2build4) ... 174s Setting up python3-voluptuous (0.14.2-1) ... 174s Setting up python3-pyasyncore (1.0.2-3) ... 174s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 174s Setting up libisl23:s390x (0.27-1) ... 174s Setting up libde265-0:s390x (1.0.15-1build4) ... 174s Setting up python3-prettytable (3.12.0-1) ... 175s Setting up python3-tomlkit (0.13.2-1) ... 175s Setting up fonts-font-awesome (5.0.10+really4.7.0~dfsg-4.1) ... 175s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 175s Setting up python3-deprecated (1.2.18-1) ... 175s Setting up libjs-bootstrap (3.4.1+dfsg-3) ... 175s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 175s Setting up python3-oslo.i18n (6.5.0-0ubuntu1) ... 176s Setting up python3-mako (1.3.8-2) ... 176s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 176s Setting up python3-imagesize (1.4.1-1) ... 176s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 176s Setting up automake (1:1.17-3) ... 176s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 176s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 176s Setting up python3.12-minimal (3.12.9-1) ... 177s Setting up libice6:s390x (2:1.1.1-1) ... 177s Setting up gettext (0.23.1-1) ... 177s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 177s Setting up python3-pure-sasl (0.5.1+dfsg1-5) ... 177s Setting up python3-arrow (1.3.0-1.1ubuntu1) ... 178s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 178s Setting up python3.12 (3.12.9-1) ... 179s Setting up python3-all (3.13.1-1~exp2) ... 179s Setting up python3-futurist (3.0.0-3) ... 179s Setting up python3-debtcollector (3.0.0-3) ... 179s Setting up python3-gevent (24.11.1-1) ... 180s Setting up python3-kombu (5.4.2-3) ... 180s Setting up python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 183s Setting up intltool-debian (0.35.0+20060710.6) ... 183s Setting up python3-dogpile.cache (1.3.3-1) ... 184s Setting up libthai0:s390x (0.1.29-2build1) ... 184s Setting up python3-eventlet (0.39.0-0ubuntu1) ... 184s Setting up python3-kazoo (2.9.0-2) ... 184s Setting up libraqm0:s390x (0.10.2-1) ... 184s Setting up python3-zake (0.2.2-8) ... 184s Setting up python3-redis (4.3.4-4) ... 185s Setting up python3-automaton (3.2.0-3) ... 185s Setting up libjs-sphinxdoc (8.1.3-5) ... 185s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 185s Setting up cpp-14 (14.2.0-17ubuntu1) ... 185s Setting up dh-strip-nondeterminism (1.14.1-2) ... 185s Setting up libgvpr2:s390x (2.42.4-2build4) ... 185s Setting up python3-lxml:s390x (5.3.1-1) ... 185s Setting up python3-alembic (1.13.2-4) ... 186s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 186s Setting up xml-core (0.19) ... 186s Setting up python3-openstackdocstheme (3.2.0-0ubuntu2) ... 186s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 186s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 186s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 186s Setting up libsm6:s390x (2:1.2.4-1) ... 186s Setting up python3-keystoneauth1 (5.9.1-0ubuntu1) ... 187s Setting up alembic (1.13.2-4) ... 187s Setting up python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 187s Setting up fontconfig (2.15.0-2ubuntu1) ... 189s Regenerating fonts cache... done. 189s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 189s Setting up po-debconf (1.0.21+nmu1) ... 189s Setting up python3-etcd3gw (2.1.0-2ubuntu1) ... 190s Setting up python-taskflow-doc (5.10.0-0ubuntu1) ... 190s Setting up libpango-1.0-0:s390x (1.56.1-1) ... 190s Setting up python3-oslo.utils (8.1.0-0ubuntu1) ... 190s Setting up libcairo2:s390x (1.18.2-2) ... 190s Setting up openstack-pkg-tools (123ubuntu2) ... 190s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 190s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 190s Setting up sphinx-common (8.1.3-5) ... 190s Setting up libxt6t64:s390x (1:1.2.1-1.2build1) ... 190s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 190s Setting up python3-openstacksdk (4.3.0-0ubuntu1) ... 193s Setting up cpp (4:14.2.0-1ubuntu1) ... 193s Setting up libpangoft2-1.0-0:s390x (1.56.1-1) ... 193s Setting up libpangocairo-1.0-0:s390x (1.56.1-1) ... 193s Setting up python3-os-client-config (2.1.0-0ubuntu5) ... 193s Setting up libxmu6:s390x (2:1.1.3-3build2) ... 193s Setting up python3-oslo.serialization (5.6.0-0ubuntu1) ... 193s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 193s Setting up libxaw7:s390x (2:1.0.16-1) ... 193s Setting up gcc-14 (14.2.0-17ubuntu1) ... 193s Setting up python3-taskflow (5.10.0-0ubuntu1) ... 194s Setting up g++-14 (14.2.0-17ubuntu1) ... 194s Setting up libtool (2.5.4-3build1) ... 194s Setting up gcc (4:14.2.0-1ubuntu1) ... 194s Setting up dh-autoreconf (20) ... 194s Setting up g++ (4:14.2.0-1ubuntu1) ... 194s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 194s Setting up build-essential (12.10ubuntu1) ... 194s Setting up debhelper (13.24.1ubuntu2) ... 194s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 194s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 194s Setting up python3-testtools (2.7.2-4) ... 194s Setting up libheif1:s390x (1.19.5-1build1) ... 194s Setting up python3-subunit (1.4.2-3build1) ... 195s Setting up libgd3:s390x (2.3.3-12ubuntu3) ... 195s Setting up libgvc6 (2.42.4-2build4) ... 195s Setting up python3-fixtures (4.1.0-3) ... 195s Setting up python3-testscenarios (0.5.0-4) ... 195s Setting up graphviz (2.42.4-2build4) ... 195s Setting up python3-pydotplus (2.0.2-5) ... 195s Setting up python3-pydot (2.0.0-3) ... 195s Setting up subunit (1.4.2-3build1) ... 195s Processing triggers for libc-bin (2.40-4ubuntu1) ... 195s Processing triggers for systemd (257.2-3ubuntu1) ... 195s Processing triggers for man-db (2.13.0-1) ... 197s Processing triggers for install-info (7.1.1-1) ... 197s Processing triggers for sgml-base (1.31) ... 197s Setting up docutils-common (0.21.2+dfsg-2) ... 197s Processing triggers for sgml-base (1.31) ... 197s Setting up python3-docutils (0.21.2+dfsg-2) ... 198s Setting up python3-cliff (4.8.0-0ubuntu1) ... 198s Setting up python3-sphinx (8.1.3-5) ... 199s Setting up python3-stestr (4.1.0-3) ... 200s Setting up python3-sphinxcontrib.jquery (4.1-5) ... 200s Setting up python3-oslotest (1:5.0.0-4) ... 200s autopkgtest: DBG: testbed command exited with code 0 200s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-taskflow-doc'], kind short, sout pipe, serr pipe, env [] 200s autopkgtest: DBG: testbed command exited with code 0 200s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-taskflow'], kind short, sout pipe, serr pipe, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Pt9kGK/python-stestr-packages.all"], kind short, sout raw, serr pipe, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/python-stestr-packages.all /tmp/autopkgtest-work.pr6y_vod/out/python-stestr-packages.all 201s autopkgtest: DBG: got reply from testbed: ok 201s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Pt9kGK/build.RSd/src'], kind short, sout raw, serr raw, env [] 201s autopkgtest: DBG: testbed command exited with code 0 201s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.Pt9kGK/build.RSd/src already exists 201s autopkgtest [12:57:58]: test python-stestr: [----------------------- 201s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.Pt9kGK/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Pt9kGK/python-stestr-artifacts --chdir=/tmp/autopkgtest.Pt9kGK/build.RSd/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.Pt9kGK/python-stestr-stderr --stdout=/tmp/autopkgtest.Pt9kGK/python-stestr-stdout --tmp=/tmp/autopkgtest.Pt9kGK/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 --make-executable=/tmp/autopkgtest.Pt9kGK/build.RSd/src/debian/tests/python-stestr -- /tmp/autopkgtest.Pt9kGK/build.RSd/src/debian/tests/python-stestr'], kind test, sout raw, serr raw, env [] 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Pt9kGK/python-stestr-artifacts 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: changing to directory: /tmp/autopkgtest.Pt9kGK/build.RSd/src 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: LANG=C.UTF-8 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LANGUAGE 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_ADDRESS 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_ALL 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_COLLATE 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_CTYPE 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_IDENTIFICATION 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_MEASUREMENT 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_MESSAGES 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_MONETARY 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_NAME 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_NUMERIC 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_PAPER 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_TELEPHONE 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_TIME 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: pretending to be a login shell 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: will write standard error to /tmp/autopkgtest.Pt9kGK/python-stestr-stderr 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: will write stdout to /tmp/autopkgtest.Pt9kGK/python-stestr-stdout 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Pt9kGK/autopkgtest_tmp 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: marking as executable: /tmp/autopkgtest.Pt9kGK/build.RSd/src/debian/tests/python-stestr 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: command to run: /tmp/autopkgtest.Pt9kGK/build.RSd/src/debian/tests/python-stestr 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: copying /tmp/tmp.4YoA47ohth/out to stdout and file: /tmp/autopkgtest.Pt9kGK/python-stestr-stdout 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: copying /tmp/tmp.4YoA47ohth/err to standard error and file: /tmp/autopkgtest.Pt9kGK/python-stestr-stdout 201s /tmp/autopkgtest.Pt9kGK/wrapper.sh: writing script pid 4564 to /tmp/autopkgtest_script_pid 201s + py3versions -r 201s Testing with python3.12: 201s + echo Testing with python3.12: 201s + PYTHON=python3.12 stestr run 218s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 218s self._exception_str = _exception_message(self._exc_info[1]) 218s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 218s self._exception_str = _exception_message(self._exc_info[1]) 218s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_automatic_process [0.003066s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_expected_transition_occurrences [0.011296s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_reverted [0.003374s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_suspended_failure [0.002362s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_checks_for_dups [0.061389s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_graph_flow_linkage [0.000878s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_nested_flow [0.001229s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph [0.001000s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_dependencies [0.000740s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_linear_nested [0.001259s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_many_empty_in_graph_flow [0.001940s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_graph_flow_with_tasks [0.001153s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_linear_flow [0.000461s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_linear_flow_with_tasks [0.000796s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_unordered_flow_with_tasks [0.000845s] ... ok 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_subflows_hierarchy [0.001344s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_wrong_object [0.000381s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_green_executor_creation [0.000950s] ... ok 219s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 219s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_process_executor_creation [0.001668s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_no_connect_channel [0.001595s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.GraphScopingTest.test_dependent [0.001264s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.GraphScopingTest.test_nested [0.001549s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.GraphScopingTest.test_no_visible [0.001889s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_nested_prior_linear [0.000830s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_nested_prior_linear_begin_middle_end [0.001441s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_single_prior_linear [0.000676s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_linear_unordered_scope [0.002258s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_shadow_graph [0.000917s] ... ok 219s {0} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_shadow_linear [0.000793s] ... ok 219s {0} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_redis_entry_point [0.000402s] ... ok 219s {0} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_zk_entry_point_existing_client [0.000321s] ... ok 219s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_connect ... SKIPPED: Etcd is not available 219s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_fresh_iter ... SKIPPED: Etcd is not available 219s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_get_one ... SKIPPED: Etcd is not available 219s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim_consume ... SKIPPED: Etcd is not available 219s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim_diff_owner ... SKIPPED: Etcd is not available 219s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_no_consume_wait ... SKIPPED: Etcd is not available 219s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_wait_timeout ... SKIPPED: Etcd is not available 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_abandon [0.000618s] ... ok 219s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_claim [0.000916s] ... ok 219s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_consume_bad_owner [0.000669s] ... ok 219s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_trash [0.000828s] ... ok 219s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_trash_bad_owner [0.000643s] ... ok 219s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_trash_deleted_job [0.000789s] ... ok 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client_sentinel_ssl ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_consume ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_diff_owner ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_same_owner ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_consume_wait ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_no_consume_wait ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_wait_arrival ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_wait_timeout ... SKIPPED: redis is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_connect_check_compatible [0.009479s] ... ok 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim [0.008302s] ... ok 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim_consume [0.007047s] ... ok 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim_diff_owner [0.001876s] ... ok 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_owner_lost [0.002150s] ... ok 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_state_lock_lost [0.005005s] ... ok 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_with_book [0.002961s] ... ok 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_trashing_claimed_job [0.002506s] ... ok 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_connect ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_abandon_no_owner ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim_abandon ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim_diff_owner ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_dates ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_no_consume_wait ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_with_book ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_wait_arrival ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_wait_timeout ... SKIPPED: zookeeper is not available 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_add_nothing [0.000361s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_ambiguous_provides [0.001070s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_raises_on_cycle [0.000766s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_raises_on_link_cycle [0.000806s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_to_unknown_node [0.001122s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_links [0.000768s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_links_and_dependencies [0.000762s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_no_resolve_existing [0.000781s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_no_resolve_requires [0.000699s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_one_task [0.000649s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_ordering [0.000955s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_stringy [0.000841s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_independent_tasks [0.000728s] ... ok 219s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_iter_nodes [0.000845s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_iter_links [0.000664s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_iter_nodes [0.000791s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_add_nothing [0.000219s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_starts_as_empty [0.000226s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_stringy [0.000607s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_three_tasks [0.000605s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_two_dependent_tasks [0.000542s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_two_dependent_tasks_two_different_calls [0.000576s] ... ok 219s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_with_retry [0.000380s] ... ok 219s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_iter_nodes [0.000667s] ... ok 219s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_add_nothing [0.000213s] ... ok 219s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_tasks_two_different_calls [0.000476s] ... ok 219s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_with_retry [0.000364s] ... ok 219s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_with_retry_fully_satisfies [0.000484s] ... ok 219s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(no_cache) [0.000397s] ... ok 219s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(one) [0.000927s] ... ok 219s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 219s self._exception_str = _exception_message(self._exc_info[1]) 219s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 219s self._exception_str = _exception_message(self._exc_info[1]) 219s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 219s self._exception_str = _exception_message(self._exc_info[1]) 219s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_automatic_process_failure [0.004349s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_automatic_process_reverted [0.012540s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_manual_process [0.001961s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations [0.002511s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_failure [0.002293s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_suspended [0.073929s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_checks_for_dups_globally [0.003872s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty [0.000267s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_graph_flow [0.000695s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_linear_flow [0.001528s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_links [0.001401s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested [0.001814s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested_graph [0.001868s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested_provides [0.001045s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested_requires [0.001034s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_invalid [0.000948s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_linear [0.001148s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retries_hierarchy [0.001572s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry [0.000555s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_graph_flow [0.000511s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_nested_flows [0.000660s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_unordered_flow [0.000432s] ... ok 219s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(tiny) [0.134436s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_task [0.001236s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_unordered [0.001080s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_unordered_nested [0.001227s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_unordered_nested_in_linear [0.001145s] ... ok 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s {1} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_invalid_creation [0.002187s] ... ok 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 219s {1} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_process_string_creation [0.001414s] ... ok 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 219s {1} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_sync_executor_creation [0.000816s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_thread_executor_creation [0.000732s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_thread_string_creation [0.001603s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_bad_hmac_reader [0.000455s] ... ok 219s {1} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_reader [0.000273s] ... ok 219s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(medimum) [0.265945s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(large) [0.566695s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(no_cache) [0.002122s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(one) [0.001441s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(tiny) [0.001310s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(medimum) [0.001244s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(large) [0.001248s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(no_cache) [0.001516s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(one) [0.001512s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(tiny) [0.002472s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(medimum) [0.001815s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(large) [0.001523s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(no_cache) [0.001069s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(one) [0.000940s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(tiny) [0.000928s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(medimum) [0.000925s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(large) [0.000923s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(no_cache) [0.001068s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(one) [0.000837s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(tiny) [0.000828s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(medimum) [0.001273s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(large) [0.001513s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(no_cache) [0.000893s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(one) [0.001621s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(tiny) [0.000965s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(medimum) [0.001284s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(large) [0.000820s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(no_cache) [0.001788s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(one) [0.002659s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(tiny) [0.002245s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(medimum) [0.001883s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(large) [0.001803s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(no_cache) [0.002410s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(one) [0.002069s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(tiny) [0.002317s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(medimum) [0.002047s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(large) [0.001755s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(no_cache) [0.001941s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(one) [0.001692s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(tiny) [0.001618s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(medimum) [0.002262s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(large) [0.001666s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(no_cache) [0.001681s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(one) [0.002191s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(tiny) [0.001749s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(medimum) [0.001954s] ... ok 220s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(large) [0.001710s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_bad_norms [0.000343s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_clear [0.000367s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_many_children_allowed [0.000276s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_with_children_not_allowed [0.000264s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ensure_path [0.000240s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_link_loop_raises [0.000257s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive_targeted [0.000265s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive_targeted_absolute [0.000259s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_targeted [0.000255s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_targeted_absolute [0.000503s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_not_found [0.000250s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_set_get_ls [0.000262s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_meta_update [0.000686s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_save [0.000798s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_add_task_detail [0.000829s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_delete [0.000699s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_merge_flow_detail [0.000711s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_save_retrieve_many [0.002087s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_memory_backend_entry_point [0.000412s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_retry_detail_save_with_task_failure [0.000986s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_meta_update [0.000910s] ... ok 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_retry_type_ [0.000908s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_with_failure [0.001268s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_entrypoint ... SKIPPED: mysql is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_update_not_existing ... SKIPPED: mysql is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_add_task_detail ... SKIPPED: mysql is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_delete ... SKIPPED: mysql is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_save_retrieve ... SKIPPED: mysql is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_meta_update ... SKIPPED: mysql is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_save ... SKIPPED: mysql is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_lazy_fetch ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_save ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_add_flow_detail ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_delete ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_lazy_fetch ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_retry_detail_save_with_task_failure ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_meta_update ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_save ... SKIPPED: postgres is not available 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SQLBackendFetchingTest.test_postgres_persistence_entry_point ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_send_and_dispatch [0.953773s] ... ok 220s {1} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_empty [0.000835s] ... ok 220s {1} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_unknown [0.000625s] ... ok 220s {1} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_graph_linear_scope [0.001974s] ... ok 220s {1} taskflow.tests.unit.action_engine.test_scoping.UnorderedScopingTest.test_no_visible [0.002088s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_save [0.045456s] ... ok 220s {1} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_redis_entry_point_text [0.000526s] ... ok 220s {1} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_zk_entry_point [0.000449s] ... ok 220s {1} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_zk_entry_point_text [0.000386s] ... ok 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test__incr ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_board_iter_empty ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_abandon_no_owner ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim_abandon ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_consume_wait ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_with_book ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_wait_arrival ... SKIPPED: Etcd is not available 220s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_abandon_bad_owner [0.001689s] ... ok 220s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_claim_already_claimed [0.001100s] ... ok 220s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_claim_deleted [0.001017s] ... ok 220s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_consume [0.000822s] ... ok 220s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_create_board [0.000245s] ... ok 220s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_post [0.002203s] ... ok 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client_sentinel ... SKIPPED: redis is not available 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client_sentinel_fallbacks ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_board_iter_empty ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_connect ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_fresh_iter ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_abandon_no_owner ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_abandon ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_expiry ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_with_book ... SKIPPED: redis is not available 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_board_iter [0.000929s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_board_iter_empty [0.002179s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_connect [0.000623s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_fresh_iter [0.001203s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_abandon_no_owner [0.001240s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim_abandon [0.002383s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_consume_wait [0.001431s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_dates [0.001391s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_delete [0.038324s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_merge_flow_detail [0.030368s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_save_retrieve [0.018890s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_retry_detail_save_intention [0.032420s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_no_consume_wait [0.102224s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_no_post [0.001376s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_received_raw [0.001169s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_register_entity [0.001763s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_retry_detail_save_with_task_failure [0.032798s] ... ok 220s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_retry_type_ [0.027956s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_save [0.001607s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_add_task_detail [0.001221s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_delete [0.001145s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_merge_flow_detail [0.001225s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_retry_detail_save_intention [0.001515s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_retry_detail_save_with_task_failure [0.001789s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_meta_update [0.001499s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_retry_type_ [0.001370s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_save [0.001445s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_update_not_existing [0.001368s] ... ok 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_lazy_fetch ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_meta_update ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_save ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_add_flow_detail ... SKIPPED: zookeeper is not available 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_delete ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_lazy_fetch ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_save_retrieve ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_save_retrieve_many ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_retry_detail_save_intention ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_retry_detail_save_with_task_failure ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_meta_update ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_save ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_update_not_existing ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_all_arguments_mapping [0.008461s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_argument_injection_required [0.002522s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_arguments_passing [0.003118s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_bad_save_as_value [0.000428s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_invalid_argument_name_list [0.001638s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_invalid_argument_name_map [0.001682s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_as [0.002385s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_dict [0.002647s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_several_values [0.002633s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 220s self.pid = os.fork() 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_argument_injection [0.042915s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 220s self.pid = os.fork() 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_arguments_passing [0.023591s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_bad_rebind_args_value [0.000729s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_bad_save_as_value [0.000384s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 220s self.pid = os.fork() 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_derived_revert_args_required [0.023999s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_invalid_argument_name_list [0.002378s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_invalid_argument_name_map [0.001858s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 220s self.pid = os.fork() 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_wait_arrival [0.202205s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_partial_arguments_mapping [0.023114s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 220s self.pid = os.fork() 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_all_in_one [0.022649s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 220s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 220s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 220s self.pid = os.fork() 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_as [0.023978s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_all_arguments_mapping [0.004735s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_argument_injection [0.002775s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_argument_injection_rebind [0.002751s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_argument_injection_required [0.002682s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_arguments_missing [0.001674s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_bad_rebind_args_value [0.000443s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_bad_save_as_value [0.000560s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_invalid_argument_name_map [0.001496s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_long_arg_name [0.003615s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_partial_arguments_mapping [0.003173s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_revert_required_args_required [0.001544s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_dict [0.002784s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_several_values [0.002932s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_all_arguments_mapping [0.003327s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_argument_injection_required [0.002298s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_arguments_missing [0.001533s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_arguments_passing [0.003017s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_bad_rebind_args_value [0.000394s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_bad_save_as_value [0.000337s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_invalid_argument_name_list [0.001877s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_invalid_argument_name_map [0.001808s] ... ok 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_wait_timeout [0.101618s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_board_iter ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_long_arg_name [0.002710s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_board_iter_empty ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_partial_arguments_mapping [0.003720s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_fresh_iter ... SKIPPED: zookeeper is not available 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_revert_rebound_args_required [0.001519s] ... ok 220s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_revert_required_args_required [0.001511s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_bad_transition_raises [0.000442s] ... ok 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim_consume ... SKIPPED: zookeeper is not available 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_consume_wait ... SKIPPED: zookeeper is not available 220s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_no_post ... SKIPPED: zookeeper is not available 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_dependency_cycle [0.001045s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_rerunning_allowed [0.000214s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_from_unknown_node [0.000620s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_resolve_existing [0.000586s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_resuming_from_running [0.000198s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_failure_state [0.001597s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_reverted_state [0.000772s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_reverting_state [0.000218s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_running_state [0.000219s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_success_state [0.000227s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_reverted_state [0.000222s] ... ok 220s {0} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_reverting_state [0.000510s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_starts_as_empty [0.000251s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_dependent_tasks [0.000780s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_dependent_tasks_two_different_calls [0.000570s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_task_same_provide [0.000516s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_with_retry [0.000396s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_invalid_decider_depth [0.000788s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_iter_links [0.000671s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_recache_on_add [0.000970s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_recache_on_add_no_deps [0.001325s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_recache_on_link [0.003026s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_bad_target [0.003190s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_one_node [0.000440s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_reset [0.000803s] ... ok 220s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_restricts [0.003152s] ... ok 220s {1} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_one_task [0.000634s] ... ok 220s {1} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_two_independent_tasks [0.000671s] ... ok 220s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_iter_links [0.000681s] ... ok 220s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_one_task [0.000548s] ... ok 220s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_starts_as_empty [0.000358s] ... ok 220s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_stringy [0.000591s] ... ok 220s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_task_same_provide [0.000463s] ... ok 220s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_tasks [0.000474s] ... ok 220s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_tasks_reverse_order [0.000479s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(no_cache) [0.000558s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(one) [0.000408s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(tiny) [0.000389s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(medimum) [0.001205s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(large) [0.000570s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(no_cache) [0.000626s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(one) [0.000617s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(tiny) [0.000805s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(medimum) [0.000621s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(large) [0.000649s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(no_cache) [0.000449s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(one) [0.000411s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(tiny) [0.000391s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(medimum) [0.000400s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(large) [0.000398s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(no_cache) [0.000405s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(one) [0.000413s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(tiny) [0.000398s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(medimum) [0.000405s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(large) [0.000393s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(no_cache) [0.001234s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(one) [0.001019s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(tiny) [0.000991s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(medimum) [0.001174s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(large) [0.000997s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(no_cache) [0.001297s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(one) [0.001236s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(tiny) [0.001744s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(medimum) [0.001571s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(large) [0.001762s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(no_cache) [0.002497s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(one) [0.003050s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(tiny) [0.002130s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(medimum) [0.002137s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(large) [0.002228s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(no_cache) [0.002296s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(one) [0.002548s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(tiny) [0.002296s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(medimum) [0.002025s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(large) [0.002042s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(no_cache) [0.000784s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(one) [0.000745s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(tiny) [0.001397s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(medimum) [0.000947s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(large) [0.000741s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(no_cache) [0.003748s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(one) [0.004119s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(tiny) [0.004157s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(medimum) [0.003930s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(large) [0.003777s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(no_cache) [0.001845s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(one) [0.001799s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(tiny) [0.001769s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(medimum) [0.001962s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(large) [0.001767s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(no_cache) [0.001694s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(one) [0.001860s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(tiny) [0.001898s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(medimum) [0.001556s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(large) [0.002074s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(no_cache) [0.002296s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(one) [0.001803s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(tiny) [0.001825s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_combined_store(blocking) [0.115137s] ... ok 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(medimum) [0.002221s] ... ok 220s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 220s self._exception_str = _exception_message(self._exc_info[1]) 220s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(large) [0.001819s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_many_children_allowed_not_recursive [0.000536s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_many_children_not_allowed [0.000388s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_no_children_allowed [0.000268s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_root_not_allowed [0.000267s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ensure_linked_delete [0.000553s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive [0.000301s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive_absolute [0.000287s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_lazy_fetch [0.000719s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_update_not_existing [0.000823s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_add_flow_detail [0.000571s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_lazy_fetch [0.000529s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_save_retrieve [0.000524s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_memory_backend_fetch_by_name [0.000377s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_retry_detail_save_intention [0.000843s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_save [0.000824s] ... ok 220s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_update_not_existing [0.000797s] ... ok 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_lazy_fetch ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_meta_update ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_save ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_add_flow_detail ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_lazy_fetch ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_merge_flow_detail ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_save_retrieve_many ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_retry_detail_save_intention ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_retry_detail_save_with_task_failure ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_retry_type_ ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_update_not_existing ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_with_failure ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_entrypoint ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_meta_update ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_update_not_existing ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_add_task_detail ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_merge_flow_detail ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_save_retrieve ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_save_retrieve_many ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_retry_detail_save_intention ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_retry_type_ ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_update_not_existing ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_with_failure ... SKIPPED: postgres is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.SQLBackendFetchingTest.test_mysql_persistence_entry_point ... SKIPPED: mysql is not available 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.SQLBackendFetchingTest.test_sqlite_persistence_entry_point [0.002310s] ... ok 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_lazy_fetch [0.028138s] ... ok 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_meta_update [0.032096s] ... ok 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_update_not_existing [0.026791s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_combined_store(nonblocking_many_thread) [0.108339s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_combined_store(nonblocking_one_thread) [0.006377s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_connection(blocking) [0.001231s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_connection(nonblocking_many_thread) [0.001322s] ... ok 220s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 220s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_connection(nonblocking_one_thread) [0.000915s] ... ok 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_add_flow_detail [0.020023s] ... ok 220s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_add_task_detail [0.024193s] ... ok 221s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_lazy_fetch [0.017553s] ... ok 221s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_save_retrieve_many [0.072335s] ... ok 221s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_meta_update [0.043825s] ... ok 221s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_save [0.034087s] ... ok 221s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_update_not_existing [0.033050s] ... ok 221s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 221s self._exception_str = _exception_message(self._exc_info[1]) 221s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_with_failure [0.030477s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_lazy_fetch [0.001350s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_meta_update [0.001429s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_update_not_existing [0.001649s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_add_flow_detail [0.003567s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_lazy_fetch [0.001063s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_save_retrieve [0.001057s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_save_retrieve_many [0.003112s] ... ok 221s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 221s self._exception_str = _exception_message(self._exc_info[1]) 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_with_failure [0.001770s] ... ok 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_zk_persistence_entry_point [0.000883s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_update_not_existing ... SKIPPED: zookeeper is not available 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_add_task_detail ... SKIPPED: zookeeper is not available 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_merge_flow_detail ... SKIPPED: zookeeper is not available 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_retry_type_ ... SKIPPED: zookeeper is not available 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_with_failure ... SKIPPED: zookeeper is not available 221s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_zk_persistence_entry_point ... SKIPPED: zookeeper is not available 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_argument_injection [0.003723s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_argument_injection_rebind [0.003106s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_arguments_missing [0.003579s] ... ok 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_bad_rebind_args_value [0.000496s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_derived_revert_args_required [0.005578s] ... ok 221s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 221s self._exception_str = _exception_message(self._exc_info[1]) 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_long_arg_name [0.004082s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_partial_arguments_mapping [0.003201s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_revert_rebound_args_required [0.001598s] ... ok 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_revert_required_args_required [0.002627s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_all_in_one [0.003613s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 221s self.pid = os.fork() 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_all_arguments_mapping [0.038020s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 221s self.pid = os.fork() 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_argument_injection_rebind [0.024839s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 221s self.pid = os.fork() 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_argument_injection_required [0.024986s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_arguments_missing [0.005842s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 221s self.pid = os.fork() 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_long_arg_name [0.030098s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_revert_rebound_args_required [0.005180s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_revert_required_args_required [0.004064s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 221s self.pid = os.fork() 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_dict [0.025117s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 221s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 221s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 221s self.pid = os.fork() 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_several_values [0.028785s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_arguments_passing [0.007950s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 221s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 221s self._exception_str = _exception_message(self._exc_info[1]) 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_derived_revert_args_required [0.008852s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_invalid_argument_name_list [0.002614s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_revert_rebound_args_required [0.003086s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_all_in_one [0.004382s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_as [0.004923s] ... ok 221s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_argument_injection [0.004222s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_argument_injection_rebind [0.003986s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 221s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 221s self._exception_str = _exception_message(self._exc_info[1]) 221s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_derived_revert_args_required [0.006530s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_all_in_one [0.003446s] ... ok 221s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_as [0.003125s] ... ok 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 221s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 221s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_dict [0.002721s] ... ok 221s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_several_values [0.003034s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_no_resuming_from_pending [0.000315s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_to_same_state [0.000247s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_pending_state [0.000282s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_retrying_state [0.000385s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_failure_state [0.000284s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_pending_state [0.000238s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_running_state [0.000278s] ... ok 221s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_success_state [0.000359s] ... ok 221s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 221s self._exception_str = _exception_message(self._exc_info[1]) 221s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=d88eb237-fc41-412a-a8fe-febf4e5ad0bf, details={'flow_uuid': '1661dad3-cf99-4744-a12f-34580508ebe1'}) 221s Traceback (most recent call last): 221s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 221s stage_func() 221s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 166, in _run_engine 221s for _state in engine.run_iter(): 221s ^^^^^^^^^^^^^^^^^ 221s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 344, in run_iter 221s failure.Failure.reraise_if_any(er_failures) 221s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 221s failures[0].reraise() 221s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 221s raise value 221s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 221s result = task.execute(**arguments) 221s ^^^^^^^^^^^^^^^^^^^^^^^^^ 221s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 227, in execute 221s raise RuntimeError('Woot!') 221s RuntimeError: Woot! 222s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 222s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_fail_run(blocking) [1.010985s] ... ok 222s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 222s self._exception_str = _exception_message(self._exc_info[1]) 222s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=5849dd14-c605-4437-bdf7-c2a0e34521b4, details={'flow_uuid': '17b7150e-362f-41e3-9b5f-aded45275ae0'}) 222s Traceback (most recent call last): 222s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 222s stage_func() 222s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 166, in _run_engine 222s for _state in engine.run_iter(): 222s ^^^^^^^^^^^^^^^^^ 222s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 344, in run_iter 222s failure.Failure.reraise_if_any(er_failures) 222s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 222s failures[0].reraise() 222s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 222s raise value 222s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 222s result = task.execute(**arguments) 222s ^^^^^^^^^^^^^^^^^^^^^^^^^ 222s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 227, in execute 222s raise RuntimeError('Woot!') 222s RuntimeError: Woot! 223s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 223s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_stop_aborts_engine(blocking) [2.107493s] ... ok 223s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 223s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_fail_run(nonblocking_many_thread) [1.010729s] ... ok 223s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 223s self._exception_str = _exception_message(self._exc_info[1]) 223s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=c123ba8c-c45a-4428-94fd-95b0c2ad255f, details={'flow_uuid': 'a238a462-e797-4487-917d-2b3da61e3e91'}) 223s Traceback (most recent call last): 223s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 223s stage_func() 223s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 166, in _run_engine 223s for _state in engine.run_iter(): 223s ^^^^^^^^^^^^^^^^^ 223s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 344, in run_iter 223s failure.Failure.reraise_if_any(er_failures) 223s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 223s failures[0].reraise() 223s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 223s raise value 223s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 223s result = task.execute(**arguments) 223s ^^^^^^^^^^^^^^^^^^^^^^^^^ 223s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 227, in execute 223s raise RuntimeError('Woot!') 223s RuntimeError: Woot! 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_fail_run(nonblocking_one_thread) [1.111871s] ... ok 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_flowdetails_store(blocking) [0.106669s] ... ok 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_flowdetails_store(nonblocking_many_thread) [0.006205s] ... ok 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_flowdetails_store(nonblocking_one_thread) [0.009201s] ... ok 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_job_store(blocking) [0.007231s] ... ok 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_job_store(nonblocking_many_thread) [0.107543s] ... ok 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=e656173c-5c7c-481e-b66f-68d29c16c8fe, details={'flow_uuid': 'c5189183-8b91-46ab-90e4-8ac51b70a177'}) 224s Traceback (most recent call last): 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 224s stage_func() 224s File "/usr/lib/python3/dist-packages/fasteners/lock.py", line 226, in wrapper 224s return f(self, *args, **kwargs) 224s ^^^^^^^^^^^^^^^^^^^^^^^^ 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 84, in wrapper 224s return meth(self, *args, **kwargs) 224s ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 434, in validate 224s raise exc.MissingDependencies(self._flow, 224s taskflow.exceptions.MissingDependencies: '"linear_flow.Flow: test(len=1)"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s MissingDependencies: 'revert' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s MissingDependencies: 'execute' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_job_store(nonblocking_one_thread) [0.006342s] ... ok 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_missing_store(blocking) [0.004172s] ... ok 224s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=52fe6d4f-7115-49c2-9b02-524c1cbb65a5, details={'flow_uuid': 'c4e8b377-65af-461f-8b29-229ddab28e39'}) 224s Traceback (most recent call last): 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 224s stage_func() 224s File "/usr/lib/python3/dist-packages/fasteners/lock.py", line 226, in wrapper 224s return f(self, *args, **kwargs) 224s ^^^^^^^^^^^^^^^^^^^^^^^^ 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 84, in wrapper 224s return meth(self, *args, **kwargs) 224s ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 434, in validate 224s raise exc.MissingDependencies(self._flow, 224s taskflow.exceptions.MissingDependencies: '"linear_flow.Flow: test(len=1)"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s MissingDependencies: 'revert' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s MissingDependencies: 'execute' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_missing_store(nonblocking_many_thread) [0.003746s] ... ok 224s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=6d69c2f8-9e32-4661-bbf3-0e2af192335c, details={'flow_uuid': '456c2874-2acf-4b01-b52c-de4f7e7443dd'}) 224s Traceback (most recent call last): 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 224s stage_func() 224s File "/usr/lib/python3/dist-packages/fasteners/lock.py", line 226, in wrapper 224s return f(self, *args, **kwargs) 224s ^^^^^^^^^^^^^^^^^^^^^^^^ 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 84, in wrapper 224s return meth(self, *args, **kwargs) 224s ^^^^^^^^^^^^^^^^^^^^^^^^^^^ 224s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 434, in validate 224s raise exc.MissingDependencies(self._flow, 224s taskflow.exceptions.MissingDependencies: '"linear_flow.Flow: test(len=1)"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s MissingDependencies: 'revert' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s MissingDependencies: 'execute' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 224s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 224s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_missing_store(nonblocking_one_thread) [0.003849s] ... ok 225s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 225s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_stop_aborts_engine(nonblocking_many_thread) [2.008515s] ... ok 225s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 225s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run(blocking) [1.006276s] ... ok 226s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 226s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run(nonblocking_many_thread) [1.007342s] ... ok 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_stop_aborts_engine(nonblocking_one_thread) [2.010674s] ... ok 227s {0} taskflow.tests.unit.test_conductors.NonBlockingExecutorTest.test_bad_wait_timeout [0.000900s] ... ok 227s {0} taskflow.tests.unit.test_deciders.TestDeciders.test_bad_translate [0.000483s] ... ok 227s {0} taskflow.tests.unit.test_deciders.TestDeciders.test_pick_widest [0.000378s] ... ok 227s {0} taskflow.tests.unit.test_deciders.TestDeciders.test_translate [0.000347s] ... ok 227s {0} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_default_load [0.000712s] ... ok 227s {0} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_options_passthrough [0.001897s] ... ok 227s WARNING [stevedore.named] Could not load not_really_any_engine 227s {0} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_unknown_load [0.001029s] ... ok 227s {0} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_arg_factory [0.001088s] ... ok 227s {0} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_factory_in_meta [0.000760s] ... ok 227s {0} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_meta [0.001010s] ... ok 227s {0} taskflow.tests.unit.test_engine_helpers.LoadFromFactoryTestCase.test_it_works [0.001363s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_correctly_reverts_children [0.016440s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_expected_optional_multiplers [0.017235s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_failed_reset_run_again [0.019142s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_all_with_a_single_result [0.002617s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_all_with_two_results [0.003257s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_with_a_single_result [0.002606s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional [0.006231s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_jumps_across [0.006151s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_jumps_across_2 [0.006344s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_four_tasks_added_separately [0.008728s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_four_tasks_revert [0.010856s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 227s Traceback (most recent call last): 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 227s failure.Failure.reraise_if_any(memory.failures) 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 227s failures[0].reraise() 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 227s raise value 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 227s result = task.revert(**arguments) 227s ^^^^^^^^^^^^^^^^^^^^^^^^ 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 227s raise RuntimeError('Gotcha!') 227s RuntimeError: Gotcha! 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_four_tasks_revert_failure [0.009918s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_two_independent_tasks [0.004264s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_invalid_flow_raises_from_run [0.001054s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_many_results_storage_provided_visible_to [0.005565s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 8ca25177-ce5f-47ee-b8d7-4522441650f0) 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_many_results_visible_to [0.005664s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 227s Traceback (most recent call last): 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 227s failure.Failure.reraise_if_any(memory.failures) 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 227s failures[0].reraise() 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 227s raise value 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 227s result = task.revert(**arguments) 227s ^^^^^^^^^^^^^^^^^^^^^^^^ 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 227s raise RuntimeError('Gotcha!') 227s RuntimeError: Gotcha! 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_nasty_failing_task_exception_reraised [0.004660s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_overlap_sibling_expected_result [0.005314s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_flow_one_task [0.003040s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_flow_two_tasks [0.004285s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_revert [0.008157s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_not_run_task_is_not_reverted [0.005325s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_ok_for_unordered_in_linear [0.012265s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_provided [0.007247s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_unordered_flow [0.001351s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_jump_over_atom [0.005676s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_various_depths [0.025239s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_task_as_flow [0.002963s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_task_with_flow_notifications [0.002913s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 227s Traceback (most recent call last): 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 227s failure.Failure.reraise_if_any(memory.failures) 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 227s failures[0].reraise() 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 227s raise value 227s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 227s try_suspend = yield new_state 227s ^^^^^^^^^^^^^^^ 227s OSError: I Broke 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_interrupted_externally [0.005165s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_iter_suspend_resume [0.005277s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_one_task [0.002914s] ... ok 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_two_tasks_with_resumption [0.004107s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_task_can_update_value [0.003187s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 227s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_task_graph_property_for_one_task [0.001103s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 227s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 227s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 227s self.pid = os.fork() 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run(nonblocking_one_thread) [1.007582s] ... ok 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_empty(blocking) [0.002587s] ... ok 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_empty(nonblocking_many_thread) [0.001270s] ... ok 227s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_empty(nonblocking_one_thread) [0.001127s] ... ok 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_max_dispatches(blocking) [0.005959s] ... ok 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_max_dispatches(nonblocking_many_thread) [0.006471s] ... ok 227s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 227s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_max_dispatches(nonblocking_one_thread) [0.006304s] ... ok 227s {1} taskflow.tests.unit.test_conductors.NonBlockingExecutorTest.test_bad_factory [0.000353s] ... ok 227s {1} taskflow.tests.unit.test_deciders.TestDeciders.test_bad_pick_widest [0.000306s] ... ok 227s {1} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_options_empty [0.000406s] ... ok 227s {1} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_factory_with_arg [0.000564s] ... ok 227s {1} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_importable_function [0.000400s] ... ok 227s {1} taskflow.tests.unit.test_engine_helpers.LoadFromFactoryTestCase.test_it_works_by_name [0.000560s] ... ok 227s {1} taskflow.tests.unit.test_engine_helpers.LoadFromFactoryTestCase.test_non_reimportable [0.000354s] ... ok 227s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_completed_reset_run_again [0.012022s] ... ok 227s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_failing_task_with_flow_notifications [0.009776s] ... ok 227s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_with_two_results [0.003084s] ... ok 227s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_flow_failures_are_passed_to_revert [0.007008s] ... ok 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 227s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 227s self._exception_str = _exception_message(self._exc_info[1]) 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 227s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_history [0.016139s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_ignore_reset [0.010138s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_diamond_ignored [0.006466s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_one_task [0.002873s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_two_tasks [0.005017s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.005629s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 435d0656-2cf3-413a-98cb-ab937b4fe901) 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_invalid_flow_raises [0.000941s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_missing_deps_deep [0.001649s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 228s Traceback (most recent call last): 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 228s failure.Failure.reraise_if_any(memory.failures) 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 228s failures[0].reraise() 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 228s raise value 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 228s result = task.revert(**arguments) 228s ^^^^^^^^^^^^^^^^^^^^^^^^ 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 228s raise RuntimeError('Gotcha!') 228s RuntimeError: Gotcha! 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_nasty_revert [0.007655s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_overlap_parent_expected_result [0.005287s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_overlap_parent_sibling_expected_result [0.005268s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_flow_with_priority [0.013516s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 228s Traceback (most recent call last): 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 228s failure.Failure.reraise_if_any(memory.failures) 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 228s failures[0].reraise() 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 228s raise value 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 228s result = task.revert(**arguments) 228s ^^^^^^^^^^^^^^^^^^^^^^^^ 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 228s raise RuntimeError('Gotcha!') 228s RuntimeError: Gotcha! 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_revert_exception_is_reraised [0.009012s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 228s Traceback (most recent call last): 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 228s failure.Failure.reraise_if_any(memory.failures) 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 228s failures[0].reraise() 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 228s raise value 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 228s result = task.revert(**arguments) 228s ^^^^^^^^^^^^^^^^^^^^^^^^ 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 228s raise RuntimeError('Gotcha!') 228s RuntimeError: Gotcha! 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_exception_is_reraised [0.007076s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_ok_for_linear_in_unordered [0.009848s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 228s Traceback (most recent call last): 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 228s failure.Failure.reraise_if_any(memory.failures) 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 228s failures[0].reraise() 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 228s raise value 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 228s result = task.revert(**arguments) 228s ^^^^^^^^^^^^^^^^^^^^^^^^ 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 228s raise RuntimeError('Gotcha!') 228s RuntimeError: Gotcha! 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_raises_for_linear_in_unordered [0.011089s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 228s Traceback (most recent call last): 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 228s failure.Failure.reraise_if_any(memory.failures) 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 228s failures[0].reraise() 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 228s raise value 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 228s result = task.revert(**arguments) 228s ^^^^^^^^^^^^^^^^^^^^^^^^ 228s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 228s raise RuntimeError('Gotcha!') 228s RuntimeError: Gotcha! 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_raises_for_unordered_in_linear [0.009741s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_removes_data [0.008962s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_capture_task_notifications [0.004924s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_graph_flow [0.001202s] ... ok 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_linear_flow [0.001155s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_nested_graph_flows [0.001512s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_jump_over_bad_atom [0.004492s] ... ok 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_revert [0.007409s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_nested_blocks [0.005633s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_two_tasks [0.004226s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_two_tasks_iter [0.004190s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_suspended_reset_run_again [0.012312s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 228s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_task_graph_property [0.001133s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 228s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 228s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 228s self.pid = os.fork() 228s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 228s self._exception_str = _exception_message(self._exc_info[1]) 228s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_correctly_reverts_children [1.548960s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 228s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 228s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 228s self.pid = os.fork() 228s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_all_with_a_single_result [0.024069s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 228s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 228s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 228s self.pid = os.fork() 228s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_all_with_two_results [0.024145s] ... ok 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 228s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 228s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 228s self.pid = os.fork() 228s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 228s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_with_two_results [0.025610s] ... ok 228s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 228s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 228s self.pid = os.fork() 229s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 229s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 229s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id e33e2460-5281-45c8-8a71-2d14f4ee8c08) 229s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 229s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_completed_reset_run_again [1.630295s] ... ok 229s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 229s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_correct_load [0.001943s] ... ok 229s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 229s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 229s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 229s self.pid = os.fork() 229s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_custom_notifications_proxied [0.178397s] ... ok 229s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 229s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 229s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 229s self.pid = os.fork() 230s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 230s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 230s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 230s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 230s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_history [1.093373s] ... ok 230s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 230s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 230s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 230s self.pid = os.fork() 230s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 230s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 230s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 230s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 230s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 230s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 230s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_expected_optional_multiplers [0.145905s] ... ok 230s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 230s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 230s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 230s self.pid = os.fork() 230s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 230s self._exception_str = _exception_message(self._exc_info[1]) 231s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_ignore_reset [1.352232s] ... ok 231s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 231s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 231s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 231s self.pid = os.fork() 231s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 231s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_jumps_across_2 [0.548858s] ... ok 231s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 231s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 231s self.pid = os.fork() 232s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 232s self._exception_str = _exception_message(self._exc_info[1]) 232s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 232s self._exception_str = _exception_message(self._exc_info[1]) 232s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 232s _exception_message(ei1[1]) == _exception_message(ei2[1]), 232s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 232s Traceback (most recent call last): 232s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 232s failure.Failure.reraise_if_any(memory.failures) 232s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 232s failures[0].reraise() 232s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 232s raise value 232s RuntimeError: Gotcha! 232s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 232s self._exception_str = _exception_message(self._exc_info[1]) 232s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_four_tasks_revert_failure [0.817667s] ... ok 232s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 232s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 232s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 232s self.pid = os.fork() 233s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_two_independent_tasks [0.279888s] ... ok 233s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id cedc61d3-91b9-4895-b82b-d40cd2848807) 233s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 233s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 233s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_invalid_flow_raises [0.001480s] ... ok 233s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 233s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 233s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 233s self.pid = os.fork() 233s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_just_custom_notifications_proxied [0.176572s] ... ok 233s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 233s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 233s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 233s self.pid = os.fork() 233s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_many_results_storage_provided_visible_to [0.025163s] ... ok 233s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 233s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 233s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 233s self.pid = os.fork() 233s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_many_results_visible_to [0.024613s] ... ok 233s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 233s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 233s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 233s self.pid = os.fork() 233s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_failed_reset_run_again [3.183151s] ... ok 233s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 233s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 233s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 233s self.pid = os.fork() 233s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_overlap_parent_expected_result [0.289820s] ... ok 233s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 233s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 233s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 233s self.pid = os.fork() 233s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 233s self._exception_str = _exception_message(self._exc_info[1]) 233s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 233s self._exception_str = _exception_message(self._exc_info[1]) 234s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_failing_task_with_flow_notifications [1.116679s] ... ok 234s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 234s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 234s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 234s self.pid = os.fork() 234s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_with_a_single_result [0.024071s] ... ok 234s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 234s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 234s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 234s self.pid = os.fork() 234s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_flow_with_priority [1.327973s] ... ok 234s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 234s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 234s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 234s self.pid = os.fork() 235s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 235s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional [0.561739s] ... ok 235s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 235s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 235s self.pid = os.fork() 235s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 235s self._exception_str = _exception_message(self._exc_info[1]) 235s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 235s Traceback (most recent call last): 235s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 235s failure.Failure.reraise_if_any(memory.failures) 235s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 235s failures[0].reraise() 235s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 235s raise value 235s RuntimeError: Gotcha! 235s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 235s self._exception_str = _exception_message(self._exc_info[1]) 235s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_exception_is_reraised [0.561849s] ... ok 235s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 235s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 235s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 235s self.pid = os.fork() 235s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_jumps_across [0.547966s] ... ok 235s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 235s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 235s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 235s self.pid = os.fork() 235s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 235s self._exception_str = _exception_message(self._exc_info[1]) 236s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 236s self._exception_str = _exception_message(self._exc_info[1]) 236s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_not_run_task_is_not_reverted [0.553885s] ... ok 236s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 236s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 236s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 236s self.pid = os.fork() 236s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_diamond_ignored [0.538910s] ... ok 236s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 236s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 236s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 236s self.pid = os.fork() 236s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 236s self._exception_str = _exception_message(self._exc_info[1]) 237s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 237s self._exception_str = _exception_message(self._exc_info[1]) 237s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_ok_for_linear_in_unordered [1.054003s] ... ok 237s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 237s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 237s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 237s self.pid = os.fork() 237s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 237s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 237s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_four_tasks_added_separately [1.036061s] ... ok 237s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 237s self.pid = os.fork() 237s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 237s self._exception_str = _exception_message(self._exc_info[1]) 237s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 237s self._exception_str = _exception_message(self._exc_info[1]) 237s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 237s Traceback (most recent call last): 237s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 237s failure.Failure.reraise_if_any(memory.failures) 237s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 237s failures[0].reraise() 237s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 237s raise value 237s RuntimeError: Gotcha! 237s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_raises_for_linear_in_unordered [0.549600s] ... ok 237s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 237s self._exception_str = _exception_message(self._exc_info[1]) 237s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 237s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 237s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 237s self.pid = os.fork() 237s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 237s self._exception_str = _exception_message(self._exc_info[1]) 237s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 237s self._exception_str = _exception_message(self._exc_info[1]) 238s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 238s self._exception_str = _exception_message(self._exc_info[1]) 238s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 238s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_removes_data [0.535224s] ... ok 238s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 238s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 238s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_graph_flow [0.012158s] ... ok 238s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 238s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_nested_graph_flows [0.011603s] ... ok 238s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 238s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 238s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_unordered_flow [0.011315s] ... ok 238s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 238s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 238s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 238s self.pid = os.fork() 238s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 238s self._exception_str = _exception_message(self._exc_info[1]) 238s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 238s self._exception_str = _exception_message(self._exc_info[1]) 238s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_four_tasks_revert [1.556612s] ... ok 238s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 238s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 238s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 238s self.pid = os.fork() 238s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_revert [0.543456s] ... ok 238s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 238s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 238s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 238s self.pid = os.fork() 238s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 238s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_one_task [0.285824s] ... ok 238s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 239s self.pid = os.fork() 239s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_task_as_flow [0.279464s] ... ok 239s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 239s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 239s self.pid = os.fork() 239s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_task_with_flow_notifications [0.282530s] ... ok 239s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 239s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 239s self.pid = os.fork() 239s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 239s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_two_tasks [0.557869s] ... ok 239s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 239s self.pid = os.fork() 239s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.027205s] ... ok 239s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 88408f02-dd31-4e6c-be7a-9717bd211fda) 239s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 239s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 239s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_invalid_flow_raises_from_run [0.001379s] ... ok 239s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_missing_deps_deep [0.002660s] ... ok 239s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_nasty_failing_task_exception_reraised [0.036156s] ... ok 239s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 239s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 239s self.pid = os.fork() 239s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 239s self._exception_str = _exception_message(self._exc_info[1]) 239s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 239s self._exception_str = _exception_message(self._exc_info[1]) 239s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 239s Traceback (most recent call last): 239s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 239s failure.Failure.reraise_if_any(memory.failures) 239s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 239s failures[0].reraise() 239s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 239s raise value 239s RuntimeError: Gotcha! 239s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 239s self._exception_str = _exception_message(self._exc_info[1]) 239s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 239s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 239s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 239s self.pid = os.fork() 239s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 239s self._exception_str = _exception_message(self._exc_info[1]) 240s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 240s Traceback (most recent call last): 240s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 240s failure.Failure.reraise_if_any(memory.failures) 240s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 240s failures[0].reraise() 240s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 240s raise value 240s RuntimeError: Gotcha! 240s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 240s self._exception_str = _exception_message(self._exc_info[1]) 240s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_nasty_revert [0.544973s] ... ok 240s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 240s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 240s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 240s self.pid = os.fork() 240s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_overlap_parent_sibling_expected_result [0.287260s] ... ok 240s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 240s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 240s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 240s self.pid = os.fork() 240s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_overlap_sibling_expected_result [0.279323s] ... ok 240s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 240s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 240s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 240s self.pid = os.fork() 240s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_suspended_reset_run_again [1.617623s] ... ok 240s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 240s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 240s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 240s self.pid = os.fork() 240s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_task_can_update_value [0.024654s] ... ok 240s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 240s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 240s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_task_graph_property [0.002458s] ... ok 240s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 240s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 240s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 240s self.pid = os.fork() 241s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_flow_one_task [0.278826s] ... ok 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 241s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 241s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 241s self.pid = os.fork() 241s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_flow_two_tasks [0.288345s] ... ok 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 241s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 241s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 241s self.pid = os.fork() 241s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 241s self._exception_str = _exception_message(self._exc_info[1]) 241s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_revert [0.545298s] ... ok 241s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 241s self._exception_str = _exception_message(self._exc_info[1]) 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 241s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 241s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 241s self.pid = os.fork() 241s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_update_progress_notifications_proxied [1.004280s] ... ok 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 241s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_completed_reset_run_again [0.015551s] ... ok 241s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id 339b2353-1ad7-4e69-9ae2-3037f8622e8d) 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 241s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_correct_load [0.001266s] ... ok 241s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_all_with_a_single_result [0.003260s] ... ok 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 241s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 241s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_all_with_two_results [0.003131s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_with_a_single_result [0.003052s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_with_two_results [0.003233s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional [0.007162s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_ignore_reset [0.012506s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_jumps_across [0.007168s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_diamond_ignored [0.007540s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_four_tasks_revert [0.012527s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 242s Traceback (most recent call last): 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 242s failure.Failure.reraise_if_any(memory.failures) 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 242s failures[0].reraise() 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 242s raise value 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 242s result = task.revert(**arguments) 242s ^^^^^^^^^^^^^^^^^^^^^^^^ 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 242s raise RuntimeError('Gotcha!') 242s RuntimeError: Gotcha! 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_four_tasks_revert_failure [0.010574s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_one_task [0.003281s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_two_independent_tasks [0.004537s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.005951s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id c42912db-d17d-47e4-92e9-3d072f62e0c5) 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_invalid_flow_raises [0.000785s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_many_results_visible_to [0.005713s] ... ok 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 242s Traceback (most recent call last): 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 242s failure.Failure.reraise_if_any(memory.failures) 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 242s failures[0].reraise() 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 242s raise value 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 242s result = task.revert(**arguments) 242s ^^^^^^^^^^^^^^^^^^^^^^^^ 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 242s raise RuntimeError('Gotcha!') 242s RuntimeError: Gotcha! 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_nasty_failing_task_exception_reraised [0.004481s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_overlap_sibling_expected_result [0.006455s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_flow_one_task [0.003544s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_flow_two_tasks [0.005014s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_flow_with_priority [0.014804s] ... ok 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_not_run_task_is_not_reverted [0.006681s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_ok_for_linear_in_unordered [0.010811s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_ok_for_unordered_in_linear [0.013387s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_graph_flow [0.001455s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_linear_flow [0.001295s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_jump_over_bad_atom [0.005284s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_various_depths [0.029723s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_nested_blocks [0.005187s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_one_task [0.003112s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_two_tasks_iter [0.004952s] ... ok 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_two_tasks_with_resumption [0.003939s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_suspended_reset_run_again [0.013060s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_task_graph_property [0.001301s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 242s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_using_common_executor [0.001363s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_correctly_reverts_children [0.009340s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_expected_optional_multiplers [0.015538s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_failed_reset_run_again [0.017329s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_failing_task_with_flow_notifications [0.009003s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_all_with_a_single_result [0.002555s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_all_with_two_results [0.002877s] ... ok 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_with_a_single_result [0.002375s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_with_two_results [0.002869s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional [0.005505s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_four_tasks_added_separately [0.006909s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_two_independent_tasks [0.003883s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_two_tasks [0.003920s] ... ok 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_invalid_flow_raises_from_run [0.000814s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 3196c272-5f50-4989-a4ff-376ebceb1c6a) 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_many_results_storage_provided_visible_to [0.005074s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_many_results_visible_to [0.005084s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 242s Traceback (most recent call last): 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 242s failure.Failure.reraise_if_any(memory.failures) 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 242s failures[0].reraise() 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 242s raise value 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 242s result = task.revert(**arguments) 242s ^^^^^^^^^^^^^^^^^^^^^^^^ 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 242s raise RuntimeError('Gotcha!') 242s RuntimeError: Gotcha! 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_nasty_revert [0.007915s] ... ok 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_overlap_parent_expected_result [0.005198s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_flow_one_task [0.002717s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_revert [0.008163s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 242s Traceback (most recent call last): 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 242s failure.Failure.reraise_if_any(memory.failures) 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 242s failures[0].reraise() 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 242s raise value 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 242s result = task.revert(**arguments) 242s ^^^^^^^^^^^^^^^^^^^^^^^^ 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 242s raise RuntimeError('Gotcha!') 242s RuntimeError: Gotcha! 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_revert_exception_is_reraised [0.008392s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 242s Traceback (most recent call last): 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 242s failure.Failure.reraise_if_any(memory.failures) 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 242s failures[0].reraise() 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 242s raise value 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 242s result = task.revert(**arguments) 242s ^^^^^^^^^^^^^^^^^^^^^^^^ 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 242s raise RuntimeError('Gotcha!') 242s RuntimeError: Gotcha! 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_exception_is_reraised [0.006575s] ... ok 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_ok_for_unordered_in_linear [0.011312s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_capture_task_notifications [0.004774s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_nested_graph_flows [0.001450s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_jump_over_bad_atom [0.004248s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_task_with_flow_notifications [0.002454s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 242s Traceback (most recent call last): 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 242s failure.Failure.reraise_if_any(memory.failures) 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 242s failures[0].reraise() 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 242s raise value 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 242s try_suspend = yield new_state 242s ^^^^^^^^^^^^^^^ 242s OSError: I Broke 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_interrupted_externally [0.004810s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_two_tasks [0.003918s] ... ok 242s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 242s Traceback (most recent call last): 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 242s failure.Failure.reraise_if_any(memory.failures) 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 242s failures[0].reraise() 242s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 242s raise value 242s RuntimeError: Gotcha! 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_two_tasks_with_resumption [0.003129s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_task_can_update_value [0.003992s] ... ok 242s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_task_graph_property_for_one_task [0.000868s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_revert_exception_is_reraised [0.544098s] ... ok 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 242s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 242s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 242s self.pid = os.fork() 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_completed_reset_run_again [0.177689s] ... ok 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id 3c6615e2-a118-4d98-a2f7-9189840805a7) 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 242s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_correct_load [0.011552s] ... ok 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 242s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 242s self._exception_str = _exception_message(self._exc_info[1]) 242s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_correctly_reverts_children [0.138537s] ... ok 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 242s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_expected_optional_multiplers [0.291672s] ... ok 242s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 242s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 243s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 243s self._exception_str = _exception_message(self._exc_info[1]) 243s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 243s self._exception_str = _exception_message(self._exc_info[1]) 243s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_failed_reset_run_again [0.279270s] ... ok 243s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 243s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 243s self._exception_str = _exception_message(self._exc_info[1]) 243s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 243s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_failing_task_with_flow_notifications [0.157809s] ... ok 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 243s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_with_two_results [0.068178s] ... ok 243s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 243s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_history [0.154271s] ... ok 243s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 243s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_ignore_reset [0.184439s] ... ok 243s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 243s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_jumps_across_2 [0.066301s] ... ok 243s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 243s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_diamond_ignored [0.070100s] ... ok 243s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 243s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 244s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 244s self._exception_str = _exception_message(self._exc_info[1]) 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 244s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_ok_for_unordered_in_linear [1.649176s] ... ok 244s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 244s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 244s self.pid = os.fork() 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_four_tasks_added_separately [0.116156s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 244s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 244s self._exception_str = _exception_message(self._exc_info[1]) 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_four_tasks_revert [0.137369s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 244s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 244s self._exception_str = _exception_message(self._exc_info[1]) 244s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 244s self._exception_str = _exception_message(self._exc_info[1]) 244s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 244s Traceback (most recent call last): 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 244s failure.Failure.reraise_if_any(memory.failures) 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 244s failures[0].reraise() 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 244s raise exc.WrappedFailure([self]) 244s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_four_tasks_revert_failure [0.125251s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_one_task [0.055084s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_two_independent_tasks [0.075454s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_two_tasks [0.065807s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 244s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 244s self._exception_str = _exception_message(self._exc_info[1]) 244s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_provided [0.568060s] ... ok 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 244s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 244s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 244s self.pid = os.fork() 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.099742s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_many_results_visible_to [0.145815s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 244s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 244s self._exception_str = _exception_message(self._exc_info[1]) 244s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 244s Traceback (most recent call last): 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 244s failure.Failure.reraise_if_any(memory.failures) 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 244s failures[0].reraise() 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 244s raise exc.WrappedFailure([self]) 244s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_nasty_failing_task_exception_reraised [0.070806s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 244s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 244s self._exception_str = _exception_message(self._exc_info[1]) 244s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 244s Traceback (most recent call last): 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 244s failure.Failure.reraise_if_any(memory.failures) 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 244s failures[0].reraise() 244s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 244s raise exc.WrappedFailure([self]) 244s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 244s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_nasty_revert [0.091984s] ... ok 244s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 244s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_overlap_parent_expected_result [0.077109s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_flow_with_priority [0.113340s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_revert [0.095880s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 245s Traceback (most recent call last): 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 245s failure.Failure.reraise_if_any(memory.failures) 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 245s failures[0].reraise() 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 245s raise exc.WrappedFailure([self]) 245s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 245s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 245s Traceback (most recent call last): 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 245s failure.Failure.reraise_if_any(memory.failures) 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 245s failures[0].reraise() 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 245s raise value 245s RuntimeError: Gotcha! 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_revert_exception_is_reraised [0.150170s] ... ok 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_raises_for_unordered_in_linear [0.816005s] ... ok 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 245s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 245s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 245s self.pid = os.fork() 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 245s Traceback (most recent call last): 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 245s failure.Failure.reraise_if_any(memory.failures) 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 245s failures[0].reraise() 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 245s raise exc.WrappedFailure([self]) 245s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_exception_is_reraised [0.093699s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_not_run_task_is_not_reverted [0.067885s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 245s Traceback (most recent call last): 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 245s failure.Failure.reraise_if_any(memory.failures) 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 245s failures[0].reraise() 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 245s raise exc.WrappedFailure([self]) 245s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_raises_for_linear_in_unordered [0.096748s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 245s Traceback (most recent call last): 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 245s failure.Failure.reraise_if_any(memory.failures) 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 245s failures[0].reraise() 245s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 245s raise exc.WrappedFailure([self]) 245s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_raises_for_unordered_in_linear [0.099596s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 245s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 245s self._exception_str = _exception_message(self._exc_info[1]) 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_removes_data [0.138538s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_capture_task_notifications [0.076351s] ... ok 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 245s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 245s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_graph_flow [0.021415s] ... ok 245s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 246s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_unordered_flow [0.013450s] ... ok 246s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 246s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 246s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_jump_over_bad_atom [0.065777s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 246s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_task_with_flow_notifications [0.064439s] ... ok 246s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 246s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_capture_task_notifications [0.760589s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 246s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 246s Exception in thread Thread-243 (loop): 246s Traceback (most recent call last): 246s File "/usr/lib/python3.12/threading.py", line 1075, in _bootstrap_inner 246s self.run() 246s File "/usr/lib/python3.12/threading.py", line 1012, in run 246s self._target(*self._args, **self._kwargs) 246s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 203, in loop 246s poll_fun(timeout, map) 246s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 144, in poll 246s r, w, e = select.select(r, w, e, timeout) 246s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 246s OSError: [Errno 9] Bad file descriptor 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 246s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 246s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_linear_flow [0.003057s] ... ok 246s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 246s self.pid = os.fork() 246s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_one_task [0.055617s] ... ok 246s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 246s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_jump_over_atom [0.023773s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 246s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 246s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 246s self.pid = os.fork() 246s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_jump_over_bad_atom [0.023250s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 246s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 246s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 246s self.pid = os.fork() 246s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_two_tasks [0.068465s] ... ok 246s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 246s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_two_tasks_iter [0.065702s] ... ok 246s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 246s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_task_graph_property_for_one_task [0.011460s] ... ok 246s {0} taskflow.tests.unit.test_exceptions.TestExceptions.test_invalid_pformat_indent [0.000293s] ... ok 246s {0} taskflow.tests.unit.test_exceptions.TestExceptions.test_no_looping [0.000284s] ... ok 246s {0} taskflow.tests.unit.test_exceptions.TestExceptions.test_pformat_root_class [0.000217s] ... ok 246s {0} taskflow.tests.unit.test_exceptions.TestExceptions.test_raise_with [0.000213s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_captures_exc_info [0.001395s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_str [0.000414s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_type [0.000786s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_type_not_there [0.000527s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_exception_types [0.000496s] ... ok 246s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_str [0.000286s] ... ok 246s {0} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_copy_exc_info [0.000228s] ... ok 246s {0} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_copy_none [0.000207s] ... ok 246s {0} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_none_ne_tuple [0.000203s] ... ok 246s {0} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_tuple_equals_itself [0.000199s] ... ok 246s {0} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes_pickle [0.000667s] ... ok 246s {0} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes_suppress_context [0.000327s] ... ok 246s {0} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes_to_from_dict [0.003024s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_bad_root_exception [0.001324s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_cause_exception_args [0.000410s] ... ok 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_dont_catch_base_exception [0.000339s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_failure_copy [0.000425s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_failure_copy_recaptured [0.000596s] ... ok 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_invalids [0.002896s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_no_capture_exc_args [0.000505s] ... ok 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_two_captured_eq [0.000596s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_two_recaptured_neq [0.000401s] ... ok 246s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_unknown_argument [0.000243s] ... ok 246s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_str_not_there [0.000619s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_type [0.000349s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_exception_types [0.000341s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_failure.py:337: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self.assertEqual(encodeutils.exception_to_unicode(excp), 246s {0} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_exception_with_non_ascii_str [0.000397s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_failure_equality_non_ascii_unicode [0.000367s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_failure.py:353: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self.assertEqual(hi_cn, encodeutils.exception_to_unicode(fail)) 246s {0} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_failure_equality_with_non_ascii_str [0.000444s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_wrapped_failure_non_ascii_unicode [0.000534s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_captures_message [0.000401s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_str [0.000392s] ... ok 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_type_not_there [0.000400s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_exception_types [0.000628s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_no_exc_info [0.000396s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_no_type_names [0.000451s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_pformat_traceback [0.000453s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_reraises [0.000446s] ... ok 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_str [0.000513s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_value_lost [0.000473s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_flattening [0.000696s] ... ok 246s {0} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_simple_check [0.000398s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_builtin_retry_args [0.000499s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_provides_required_values [0.000715s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_requires_rebind_values [0.000602s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_retry_and_task [0.000621s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_multi_provides_and_requires_values [0.000619s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_provides_values [0.000489s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_requires_rebind_values [0.000539s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_with_provides [0.000380s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_with_requirements [0.000380s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_with_provides [0.000370s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_with_requirements [0.000369s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_no_requirements_no_provides [0.000975s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_with_requirements [0.000401s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_and_provides_same_values [0.000412s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_rebinded_mapped [0.000402s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_without_dependencies [0.000336s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_required_value_other_call [0.000546s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_required_values [0.000715s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_same_values [0.000456s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_same_values_one_add [0.000459s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_values [0.000460s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_requires_provided_value_other_call [0.000485s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_requires_rebind_values [0.000522s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_requires_values [0.000523s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_and_task_provide_same_value [0.000474s] ... ok 246s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_and_task_same_requires_provides [0.000485s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_formatters.FormattersTest.test_exc_info_with_details_format_hidden [0.008160s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_it_runs [0.004639s] ... ok 246s {0} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_lambda_functors [0.003396s] ... ok 246s {0} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_simple [0.000429s] ... ok 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b4367e45-a71d-407f-8ceb-f7c07d89a4f1, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 246s {0} taskflow.tests.unit.test_listeners.TestClaimListener.test_claim_lost_custom_handler [0.015024s] ... ok 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=1a89dfa9-5a5e-4218-b360-19ab97f867ae, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=1a89dfa9-5a5e-4218-b360-19ab97f867ae, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=1a89dfa9-5a5e-4218-b360-19ab97f867ae, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=1a89dfa9-5a5e-4218-b360-19ab97f867ae, details={})' has lost its claim (previously owned by 'test') 246s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 246s {0} taskflow.tests.unit.test_listeners.TestClaimListener.test_claim_lost_suspended [0.007292s] ... ok 246s {0} taskflow.tests.unit.test_listeners.TestDurationListener.test_deregister [0.001367s] ... ok 246s {0} taskflow.tests.unit.test_listeners.TestDurationListener.test_record_ending_exception [0.003058s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 246s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 246s {0} taskflow.tests.unit.test_listeners.TestDurationListener.test_task_duration [0.104385s] ... ok 246s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_basic [0.003681s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_basic_failure [0.003257s] ... ok 246s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_dynamic [0.002062s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_dynamic_failure [0.003240s] ... ok 246s {0} taskflow.tests.unit.test_mapfunctor_task.MapFunctorTaskTest.test_square_array [0.004381s] ... ok 246s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_different_details_filter [0.000277s] ... ok 246s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_not_callable [0.000237s] ... ok 246s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_called [0.000217s] ... ok 246s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_not_called [0.000221s] ... ok 246s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_reset [0.000206s] ... ok 246s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_restricted_notifier [0.000241s] ... ok 246s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_restricted_notifier_no_any [0.000233s] ... ok 246s {0} taskflow.tests.unit.test_progress.TestProgress.test_dual_storage_progress [0.002890s] ... ok 246s {0} taskflow.tests.unit.test_progress.TestProgress.test_no_segments_progress [0.001886s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 246s {0} taskflow.tests.unit.test_progress.TestProgress.test_sanity_progress [0.002399s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_default_times_retry [0.023852s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_for_each_empty_collection [0.004576s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_flow_reverts_parent_retries [0.015466s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_flow_with_retry_revert [0.008373s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_for_each_revert [0.020471s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_for_each_revert_all [0.022547s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_parameterized_for_each_revert [0.016541s] ... ok 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_provides_graph_reverts_correctly [0.017667s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_new_revert_vs_old [0.022712s] ... ok 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_parameterized_for_each_empty_collection [0.004588s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_parameterized_for_each_with_set [0.016104s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_restart_reverted_flow_with_retry [0.012115s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.007378s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_retry_queried [0.006665s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_revert_scheduled [0.006427s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_task_failure [0.006606s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_retry_fails [0.003402s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_empty_graph_flow [0.002292s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_empty_linear_flow [0.002037s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id 9b81d002-b14f-40ad-9d29-5875a0970ad6) 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_just_retry [0.001063s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_failure_parent_flow_fails [0.025612s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_reverted_linear_flow [0.016690s] ... ok 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_use_retry_as_a_task [0.000870s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 246s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 246s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_for_each_empty_collection [0.013592s] ... ok 246s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 246s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 246s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 246s self.pid = os.fork() 246s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 246s self._exception_str = _exception_message(self._exc_info[1]) 247s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 247s self._exception_str = _exception_message(self._exc_info[1]) 247s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 247s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 247s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 247s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 247s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_for_each_with_list [1.052180s] ... ok 247s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 247s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 247s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 247s self.pid = os.fork() 248s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 248s self._exception_str = _exception_message(self._exc_info[1]) 248s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 248s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_various_depths [2.180247s] ... ok 248s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 248s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 248s self.pid = os.fork() 248s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 248s self._exception_str = _exception_message(self._exc_info[1]) 248s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 248s Traceback (most recent call last): 248s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 248s failure.Failure.reraise_if_any(memory.failures) 248s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 248s failures[0].reraise() 248s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 248s raise value 248s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 248s try_suspend = yield new_state 248s ^^^^^^^^^^^^^^^ 248s OSError: I Broke 248s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_interrupted_externally [0.564117s] ... ok 248s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 248s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 248s self.pid = os.fork() 249s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 249s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_for_each_revert_all [1.590173s] ... ok 249s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 249s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 249s self.pid = os.fork() 249s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_iter_suspend_resume [0.564911s] ... ok 249s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 249s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 249s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 249s self.pid = os.fork() 249s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 249s self._exception_str = _exception_message(self._exc_info[1]) 250s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_nested_blocks [0.543764s] ... ok 250s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 250s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 250s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 250s self.pid = os.fork() 250s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_one_task [0.284870s] ... ok 250s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 250s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 250s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 250s self.pid = os.fork() 250s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_parameterized_for_each_revert_all [1.324392s] ... ok 250s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 250s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 250s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 250s self.pid = os.fork() 250s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_two_tasks [0.538646s] ... ok 250s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 250s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 250s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 250s self.pid = os.fork() 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_two_tasks_iter [0.532945s] ... ok 251s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 251s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 251s self.pid = os.fork() 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_two_tasks_with_resumption [0.292648s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 251s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_task_graph_property_for_one_task [0.005317s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_correctly_reverts_children [0.021317s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_expected_optional_multiplers [0.027217s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_failed_reset_run_again [0.028585s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_failing_task_with_flow_notifications [0.012231s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_flow_failures_are_passed_to_revert [0.010375s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_history [0.024698s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_jumps_across_2 [0.006942s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_four_tasks_added_separately [0.008174s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 598cbf4b-0a5a-4507-848e-864042d17b07) 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_two_tasks [0.005283s] ... ok 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_invalid_flow_raises_from_run [0.001177s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_many_results_storage_provided_visible_to [0.006210s] ... ok 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_missing_deps_deep [0.002128s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 251s Traceback (most recent call last): 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 251s failure.Failure.reraise_if_any(memory.failures) 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 251s failures[0].reraise() 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 251s raise value 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 251s result = task.revert(**arguments) 251s ^^^^^^^^^^^^^^^^^^^^^^^^ 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 251s raise RuntimeError('Gotcha!') 251s RuntimeError: Gotcha! 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_nasty_revert [0.009471s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_overlap_parent_expected_result [0.005720s] ... ok 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_overlap_parent_sibling_expected_result [0.005607s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_revert [0.008667s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 251s Traceback (most recent call last): 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 251s failure.Failure.reraise_if_any(memory.failures) 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 251s failures[0].reraise() 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 251s raise value 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 251s result = task.revert(**arguments) 251s ^^^^^^^^^^^^^^^^^^^^^^^^ 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 251s raise RuntimeError('Gotcha!') 251s RuntimeError: Gotcha! 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_revert_exception_is_reraised [0.010731s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 251s Traceback (most recent call last): 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 251s failure.Failure.reraise_if_any(memory.failures) 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 251s failures[0].reraise() 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 251s raise value 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 251s result = task.revert(**arguments) 251s ^^^^^^^^^^^^^^^^^^^^^^^^ 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 251s raise RuntimeError('Gotcha!') 251s RuntimeError: Gotcha! 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_exception_is_reraised [0.007783s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_provided [0.007957s] ... ok 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_raises_for_linear_in_unordered [0.008942s] ... ok 251s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 251s Traceback (most recent call last): 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 251s failure.Failure.reraise_if_any(memory.failures) 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 251s failures[0].reraise() 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 251s raise value 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 251s result = task.revert(**arguments) 251s ^^^^^^^^^^^^^^^^^^^^^^^^ 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 251s raise RuntimeError('Gotcha!') 251s RuntimeError: Gotcha! 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 251s Traceback (most recent call last): 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 251s failure.Failure.reraise_if_any(memory.failures) 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 251s failures[0].reraise() 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 251s raise value 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 251s result = task.revert(**arguments) 251s ^^^^^^^^^^^^^^^^^^^^^^^^ 251s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 251s raise RuntimeError('Gotcha!') 251s RuntimeError: Gotcha! 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_raises_for_unordered_in_linear [0.010407s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 251s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 251s self._exception_str = _exception_message(self._exc_info[1]) 251s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_removes_data [0.009888s] ... ok 251s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_capture_task_notifications [0.005730s] ... ok 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_nested_graph_flows [0.001443s] ... ok 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_unordered_flow [0.001417s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_jump_over_atom [0.005226s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_revert [0.010019s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_task_as_flow [0.004507s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_task_with_flow_notifications [0.005404s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 252s Traceback (most recent call last): 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 252s failure.Failure.reraise_if_any(memory.failures) 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 252s failures[0].reraise() 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 252s raise value 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 252s try_suspend = yield new_state 252s ^^^^^^^^^^^^^^^ 252s OSError: I Broke 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_interrupted_externally [0.006087s] ... ok 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_iter_suspend_resume [0.005553s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_two_tasks [0.005012s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_task_can_update_value [0.003442s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 252s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_task_graph_property_for_one_task [0.000973s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_completed_reset_run_again [0.010464s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id 0f26185c-fcb6-43e1-af07-ae0771d9517b) 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_correct_load [0.000782s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_flow_failures_are_passed_to_revert [0.005937s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_history [0.013176s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_ignore_reset [0.009670s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_jumps_across [0.005882s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_jumps_across_2 [0.006990s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_diamond_ignored [0.006650s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_four_tasks_revert [0.009939s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 252s Traceback (most recent call last): 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 252s failure.Failure.reraise_if_any(memory.failures) 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 252s failures[0].reraise() 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 252s raise value 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 252s result = task.revert(**arguments) 252s ^^^^^^^^^^^^^^^^^^^^^^^^ 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 252s raise RuntimeError('Gotcha!') 252s RuntimeError: Gotcha! 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_four_tasks_revert_failure [0.010857s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_one_task [0.002821s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.006006s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id f5b9cb70-fd5b-49ed-949f-753b7f0f8949) 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_invalid_flow_raises [0.001200s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_missing_deps_deep [0.002567s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_nasty_failing_task_exception_reraised [0.006057s] ... ok 252s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 252s Traceback (most recent call last): 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 252s failure.Failure.reraise_if_any(memory.failures) 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 252s failures[0].reraise() 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 252s raise value 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 252s result = task.revert(**arguments) 252s ^^^^^^^^^^^^^^^^^^^^^^^^ 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 252s raise RuntimeError('Gotcha!') 252s RuntimeError: Gotcha! 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_overlap_parent_sibling_expected_result [0.006729s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_overlap_sibling_expected_result [0.005199s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_flow_two_tasks [0.004076s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_flow_with_priority [0.013918s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_not_run_task_is_not_reverted [0.005122s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_ok_for_linear_in_unordered [0.009029s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_provided [0.006760s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_raises_for_linear_in_unordered [0.008243s] ... ok 252s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 252s Traceback (most recent call last): 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 252s failure.Failure.reraise_if_any(memory.failures) 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 252s failures[0].reraise() 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 252s raise value 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 252s result = task.revert(**arguments) 252s ^^^^^^^^^^^^^^^^^^^^^^^^ 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 252s raise RuntimeError('Gotcha!') 252s RuntimeError: Gotcha! 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 252s Traceback (most recent call last): 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 252s failure.Failure.reraise_if_any(memory.failures) 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 252s failures[0].reraise() 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 252s raise value 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 252s result = task.revert(**arguments) 252s ^^^^^^^^^^^^^^^^^^^^^^^^ 252s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 252s raise RuntimeError('Gotcha!') 252s RuntimeError: Gotcha! 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_raises_for_unordered_in_linear [0.009803s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_removes_data [0.009173s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_graph_flow [0.001534s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_linear_flow [0.001267s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_unordered_flow [0.001239s] ... ok 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_jump_over_atom [0.004916s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_revert [0.007758s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_various_depths [0.026589s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_task_as_flow [0.002689s] ... ok 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_iter_suspend_resume [0.004885s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_nested_blocks [0.004486s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_one_task [0.002831s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_two_tasks_iter [0.005195s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id 2fb0e793-b57d-4570-9502-3d9c79b14726) 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_singlethreaded_is_the_default [0.001067s] ... ok 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_suspended_reset_run_again [0.016102s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 252s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_task_graph_property [0.001270s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_all_with_a_single_result [0.066650s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s _exception_message(ei1[1]) == _exception_message(ei2[1]), 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_all_with_two_results [0.055640s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_with_a_single_result [0.055114s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional [0.067368s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_jumps_across [0.068194s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 53fcaeb6-5609-409b-bf07-0eb458d8c2f3) 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_invalid_flow_raises [0.011892s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 12bada63-ed5e-44ef-9455-efd4c6b83150) 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_invalid_flow_raises_from_run [0.012199s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_many_results_storage_provided_visible_to [0.077160s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_missing_deps_deep [0.011551s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_overlap_parent_sibling_expected_result [0.079242s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 252s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_overlap_sibling_expected_result [0.079083s] ... ok 252s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 252s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_provides_graph_reverts_correctly [2.117733s] ... ok 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 252s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 252s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_parameterized_for_each_empty_collection [0.008882s] ... ok 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 252s Exception in thread Thread-519 (loop): 252s Traceback (most recent call last): 252s File "/usr/lib/python3.12/threading.py", line 1075, in _bootstrap_inner 252s self.run() 252s File "/usr/lib/python3.12/threading.py", line 1012, in run 252s self._target(*self._args, **self._kwargs) 252s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 203, in loop 252s poll_fun(timeout, map) 252s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 144, in poll 252s r, w, e = select.select(r, w, e, timeout) 252s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 252s OSError: [Errno 9] Bad file descriptor 252s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 252s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 252s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 252s self.pid = os.fork() 252s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 252s self._exception_str = _exception_message(self._exc_info[1]) 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_flow_one_task [0.139908s] ... ok 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_flow_two_tasks [0.076082s] ... ok 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 253s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 253s self._exception_str = _exception_message(self._exc_info[1]) 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_ok_for_linear_in_unordered [0.146834s] ... ok 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 253s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 253s self._exception_str = _exception_message(self._exc_info[1]) 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_ok_for_unordered_in_linear [0.170083s] ... ok 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 253s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 253s self._exception_str = _exception_message(self._exc_info[1]) 253s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 253s self._exception_str = _exception_message(self._exc_info[1]) 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_provided [0.116411s] ... ok 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_linear_flow [0.022152s] ... ok 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_nested_graph_flows [0.015480s] ... ok 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_jump_over_atom [0.083502s] ... ok 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 253s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 253s self._exception_str = _exception_message(self._exc_info[1]) 253s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_parameterized_for_each_with_list [0.848549s] ... ok 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 253s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 253s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 253s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_revert [0.125849s] ... ok 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 253s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 253s self.pid = os.fork() 253s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 253s self._exception_str = _exception_message(self._exc_info[1]) 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 253s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_various_depths [0.296183s] ... ok 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_task_as_flow [0.054353s] ... ok 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 254s Traceback (most recent call last): 254s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 254s failure.Failure.reraise_if_any(memory.failures) 254s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 254s failures[0].reraise() 254s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 254s raise value 254s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 254s try_suspend = yield new_state 254s ^^^^^^^^^^^^^^^ 254s OSError: I Broke 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_interrupted_externally [0.066699s] ... ok 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_iter_suspend_resume [0.097354s] ... ok 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_nested_blocks [0.070330s] ... ok 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_two_tasks_with_resumption [0.054219s] ... ok 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 254s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_parameterized_for_each_with_set [0.848963s] ... ok 254s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 254s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 254s self.pid = os.fork() 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_suspended_reset_run_again [0.216786s] ... ok 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_task_can_update_value [0.054864s] ... ok 254s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 254s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 254s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_task_graph_property [0.011314s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_cause [0.000624s] ... ok 254s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_cause_pformat [0.000401s] ... ok 254s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_pformat_str [0.000306s] ... ok 254s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_raise_with_cause [0.000222s] ... ok 254s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_captures_message [0.002241s] ... ok 254s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_captures_value [0.000896s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_str_not_there [0.000547s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_pformat_no_traceback [0.000711s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_reraises [0.000728s] ... ok 254s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_none_equals [0.000421s] ... ok 254s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_tuple_nen_none [0.000402s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s _exception_message(ei1[1]) == _exception_message(ei2[1]), 254s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_typle_equals_copy [0.000459s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes [0.000846s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_compares_to_none [0.000515s] ... ok 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_empty_does_not_reraise [0.000355s] ... ok 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_pformat_traceback [0.000289s] ... ok 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_pformat_traceback_captured_no_exc_info [0.000305s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_recaptured_not_eq [0.000298s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_reraises_one [0.000291s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_reraises_several [0.000388s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_valid_from_dict_to_dict [0.001599s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_valid_from_dict_to_dict_2 [0.001209s] ... ok 254s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_captures_message [0.000452s] ... ok 254s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_str [0.000258s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_type_not_there [0.000241s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_pformat_no_traceback [0.000236s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_str [0.000234s] ... ok 254s {1} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_exception_non_ascii_unicode [0.000251s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_str_not_there [0.000321s] ... ok 254s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_type [0.000281s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_pformat_no_traceback [0.000290s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_simple_iter [0.000303s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_two_failures [0.000320s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_cyclic_dependency [0.000856s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_multi_provides_and_requires_values [0.000635s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_provides_provided_value_other_call [0.000537s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_provides_values [0.000511s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_requires_values [0.000576s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_retry_and_task_dependency_provide_require [0.000563s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_retry_and_task_provide_same_value [0.000525s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_provides_required_values [0.000506s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_requires_values [0.000534s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_retry_and_task [0.000556s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_without_dependencies [0.000494s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_nested_flows_requirements [0.000804s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_no_requirements_no_provides [0.000382s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_requires_and_provides [0.000394s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_no_requirements_no_provides [0.000364s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_requires_and_provides [0.000368s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_requires_and_provides [0.000369s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_with_provides [0.000360s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_requires_and_provides_same_value [0.000368s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_provides_and_requires_values [0.000396s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_provides_values [0.000337s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_additional_values [0.000382s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_default_values [0.000377s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_multi_provides_and_requires_values [0.000561s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_and_task [0.000543s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_two_tasks_provide_same_value [0.000583s] ... ok 254s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_without_dependencies [0.000450s] ... ok 254s {1} taskflow.tests.unit.test_formatters.FormattersTest.test_exc_info_format [0.007749s] ... ok 254s {1} taskflow.tests.unit.test_formatters.FormattersTest.test_exc_info_with_details_format [0.010432s] ... ok 254s {1} taskflow.tests.unit.test_formatters.FormattersTest.test_formatted_via_listener [0.008753s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s WARNING [taskflow.listeners.logging] Task 'Broken' (0b9b03d1-839f-4c81-8379-252923ecf23f) transitioned into state 'FAILURE' from state 'RUNNING' 254s 3 predecessors (most recent first): 254s A node 254s |__A node 254s |__A node 254s Traceback (most recent call last): 254s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 254s result = task.execute(**arguments) 254s ^^^^^^^^^^^^^^^^^^^^^^^^^ 254s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 265, in execute 254s raise RuntimeError('Woot!') 254s RuntimeError: Woot! 254s WARNING [taskflow.listeners.logging] Task 'Broken' (0b9b03d1-839f-4c81-8379-252923ecf23f) transitioned into state 'REVERTED' from state 'REVERTING' 254s WARNING [taskflow.listeners.logging] Task 'Happy-2' (7884a9b2-9705-4679-a594-8407ff4bee04) transitioned into state 'REVERTED' from state 'REVERTING' 254s WARNING [taskflow.listeners.logging] Task 'Happy-1' (22d747ac-398e-4cda-a8f6-5bb873f1d106) transitioned into state 'REVERTED' from state 'REVERTING' 254s WARNING [taskflow.listeners.logging] Flow 'test' (430ee30b-2ae5-44a7-bf58-1c255477200c) transitioned into state 'REVERTED' from state 'RUNNING' 254s {1} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_other_name [0.000534s] ... ok 254s {1} taskflow.tests.unit.test_listeners.TestCapturingListeners.test_basic_do_not_capture [0.002169s] ... ok 254s {1} taskflow.tests.unit.test_listeners.TestClaimListener.test_bad_create [0.004678s] ... ok 254s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 254s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b3c564e3-232d-441a-bf27-7dbc9c6ec31b, details={})' has lost its claim (previously owned by 'test') 254s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b3c564e3-232d-441a-bf27-7dbc9c6ec31b, details={})' has lost its claim (previously owned by 'test') 254s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b3c564e3-232d-441a-bf27-7dbc9c6ec31b, details={})' has lost its claim (previously owned by 'test') 254s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=b3c564e3-232d-441a-bf27-7dbc9c6ec31b, details={})' has lost its claim (previously owned by 'test') 254s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 254s {1} taskflow.tests.unit.test_listeners.TestClaimListener.test_claim_lost_new_owner [0.006952s] ... ok 254s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 254s self._exception_str = _exception_message(self._exc_info[1]) 254s {1} taskflow.tests.unit.test_listeners.TestDurationListener.test_flow_duration [0.103662s] ... ok 255s {1} taskflow.tests.unit.test_listeners.TestEventTimeListener.test_event_time [0.106087s] ... ok 255s {1} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_basic_customized [0.002578s] ... ok 255s {1} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_dynamic_failure_customized_level [0.003217s] ... ok 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_mapfunctor_task.MapFunctorTaskTest.test_double_array [0.002529s] ... ok 255s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_bad_notify [0.000265s] ... ok 255s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_details_filter [0.000233s] ... ok 255s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_register_deregister [0.000234s] ... ok 255s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_restricted_notifier_any [0.000258s] ... ok 255s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_selective_notify [0.000233s] ... ok 255s {1} taskflow.tests.unit.test_progress.TestProgress.test_storage_progress [0.003108s] ... ok 255s {1} taskflow.tests.unit.test_progress.TestProgress.test_storage_progress_detail [0.001996s] ... ok 255s {1} taskflow.tests.unit.test_reducefunctor_task.ReduceFunctorTaskTest.test_multiply_array [0.002904s] ... ok 255s {1} taskflow.tests.unit.test_reducefunctor_task.ReduceFunctorTaskTest.test_sum_array [0.002387s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_for_each_with_list [0.020511s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_for_each_with_set [0.014013s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_flow_with_retry_revert_all [0.009316s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_parameterized_for_each_revert_all [0.017563s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_provides_graph_retried_correctly [0.012421s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_parameterized_for_each_with_list [0.014464s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_restart_reverted_unordered_flows_with_retries ... SKIPPED: Skipping this test when using green threads. 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resume_flow_that_should_be_retried [0.006300s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_retry_updated [0.006720s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_task_updated [0.006643s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 255s Traceback (most recent call last): 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 255s failure.Failure.reraise_if_any(memory.failures) 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 255s failures[0].reraise() 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 255s raise value 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 255s result = retry.revert(**arguments) 255s ^^^^^^^^^^^^^^^^^^^^^^^^^ 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 255s raise ValueError('WOOT!') 255s ValueError: WOOT! 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_retry_revert_fails [0.003634s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_retry_tasks_that_has_not_been_reverted [0.010146s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_revert_all_retry [0.010943s] ... ok 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_empty_unordered_flow [0.002246s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_failure_linear_flow [0.008391s] ... ok 255s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 255s Traceback (most recent call last): 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 255s failure.Failure.reraise_if_any(memory.failures) 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 255s failures[0].reraise() 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 255s raise value 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 255s result = task.revert(**arguments) 255s ^^^^^^^^^^^^^^^^^^^^^^^^ 255s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 255s raise RuntimeError('Gotcha!') 255s RuntimeError: Gotcha! 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_failure_nested_flow_fails [0.019610s] ... ok 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_success_linear_flow [0.012583s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.011885s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 255s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 255s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 255s self.pid = os.fork() 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s _exception_message(ei1[1]) == _exception_message(ei2[1]), 255s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_restart_reverted_flow_with_retry [1.074277s] ... ok 255s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 255s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 255s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 255s self.pid = os.fork() 255s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 255s self._exception_str = _exception_message(self._exc_info[1]) 256s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.794161s] ... ok 256s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 256s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 256s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 256s self._exception_str = _exception_message(self._exc_info[1]) 256s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 256s self.pid = os.fork() 256s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 256s _exception_message(ei1[1]) == _exception_message(ei2[1]), 257s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_retry_queried [0.526868s] ... ok 257s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 257s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 257s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 257s self._exception_str = _exception_message(self._exc_info[1]) 257s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 257s self.pid = os.fork() 257s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_retry_updated [0.550508s] ... ok 257s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 257s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 257s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 257s self._exception_str = _exception_message(self._exc_info[1]) 257s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 257s self.pid = os.fork() 258s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 258s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_task_updated [0.539007s] ... ok 258s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 258s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 258s self._exception_str = _exception_message(self._exc_info[1]) 258s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 258s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 258s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_retry_fails [0.013292s] ... ok 258s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 258s self.pid = os.fork() 258s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_default_times_retry [3.102138s] ... ok 258s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 258s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 258s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 258s self.pid = os.fork() 258s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 258s self._exception_str = _exception_message(self._exc_info[1]) 258s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 258s self._exception_str = _exception_message(self._exc_info[1]) 259s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_for_each_with_set [0.816918s] ... ok 259s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 259s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 259s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 259s self.pid = os.fork() 259s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_retry_tasks_that_has_not_been_reverted [1.036710s] ... ok 259s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 259s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 259s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 259s self.pid = os.fork() 259s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 259s self._exception_str = _exception_message(self._exc_info[1]) 259s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 259s self._exception_str = _exception_message(self._exc_info[1]) 260s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_revert_all_retry [1.034116s] ... ok 260s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 260s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 260s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_empty_graph_flow [0.013199s] ... ok 260s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 260s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 260s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_empty_linear_flow [0.011994s] ... ok 260s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 260s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 260s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_empty_unordered_flow [0.011871s] ... ok 260s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 260s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 260s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 260s self.pid = os.fork() 260s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 260s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_flow_reverts_parent_retries [1.541352s] ... ok 260s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 260s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 260s self.pid = os.fork() 260s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 260s self._exception_str = _exception_message(self._exc_info[1]) 261s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 261s self._exception_str = _exception_message(self._exc_info[1]) 261s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_flow_with_retry_revert [0.786315s] ... ok 261s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 261s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 261s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 261s self.pid = os.fork() 261s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 261s _exception_message(ei1[1]) == _exception_message(ei2[1]), 261s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 261s self._exception_str = _exception_message(self._exc_info[1]) 262s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_reverted_linear_flow [2.026295s] ... ok 262s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 262s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 262s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 262s self.pid = os.fork() 262s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_flow_with_retry_revert_all [1.054848s] ... ok 262s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 262s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 262s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 262s self.pid = os.fork() 262s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 262s self._exception_str = _exception_message(self._exc_info[1]) 262s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 262s self._exception_str = _exception_message(self._exc_info[1]) 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_success_linear_flow [1.570239s] ... ok 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 263s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_for_each_revert [1.325717s] ... ok 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 263s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 263s self.pid = os.fork() 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_default_times_retry [0.029973s] ... ok 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_for_each_with_set [0.016341s] ... ok 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_flow_reverts_parent_retries [0.017302s] ... ok 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_flow_with_retry_revert_all [0.011122s] ... ok 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_for_each_revert_all [0.023741s] ... ok 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_parameterized_for_each_revert_all [0.019122s] ... ok 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_provides_graph_retried_correctly [0.014706s] ... ok 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 263s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 263s self._exception_str = _exception_message(self._exc_info[1]) 263s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_new_revert_vs_old [0.023634s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_parameterized_for_each_empty_collection [0.004327s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_parameterized_for_each_with_set [0.017851s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_restart_reverted_flow_with_retry [0.013998s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.009133s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resume_flow_that_should_be_retried [0.007279s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_revert_scheduled [0.007767s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_task_failure [0.007987s] ... ok 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_empty_graph_flow [0.002383s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_empty_linear_flow [0.002125s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_failure_parent_flow_fails [0.022795s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_reverted_linear_flow [0.020378s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_success_linear_flow [0.017943s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.019456s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_use_retry_as_a_task [0.001639s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_when_subflow_fails_revert_running_tasks [0.017299s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_when_subflow_fails_revert_success_tasks [0.019681s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_default_times_retry [0.022260s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_for_each_empty_collection [0.004682s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_for_each_with_list [0.017847s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_flow_with_retry_revert_all [0.009170s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_for_each_revert [0.018479s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_for_each_revert_all [0.021249s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_parameterized_for_each_revert [0.015136s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_parameterized_for_each_revert_all [0.017148s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_provides_graph_retried_correctly [0.011208s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_provides_graph_reverts_correctly [0.015945s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_parameterized_for_each_with_list [0.013715s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_parameterized_for_each_with_set [0.013904s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_restart_reverted_flow_with_retry [0.012927s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_retry_queried [0.006776s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_retry_updated [0.011204s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_task_failure [0.009905s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_empty_linear_flow [0.002273s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_empty_unordered_flow [0.002544s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_reverted_linear_flow [0.015562s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.011293s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 264s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_use_retry_as_a_task [0.000978s] ... ok 264s {0} taskflow.tests.unit.test_states.TestStates.test_invalid_flow_states [0.000353s] ... ok 264s {0} taskflow.tests.unit.test_states.TestStates.test_invalid_task_states [0.000229s] ... ok 264s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 0 (name 'a') 264s {0} taskflow.tests.unit.test_states.TestStates.test_valid_task_states [0.000227s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_cleanup_retry_history [0.001725s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_empty_result_is_checked [0.001489s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_retry_and_task_with_same_name [0.001130s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_task [0.000926s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_optional_args_found [0.000896s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_unknown_name [0.000644s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_flow_metadata_update [0.000675s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_flow_name_uuid_and_meta [0.000359s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_state_of_unknown_task [0.000638s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_tasks_states [0.001359s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_initial_flow_state [0.000586s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject [0.001103s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_persistent_missing [0.001070s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_logbook_get_unknown_atom_type [0.000398s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_many_thread_ensure_same_task [0.014042s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_many_thread_inject [0.017321s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_non_saving_storage [0.001023s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_and_get_non_cached_failure [0.001126s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_fail_fetch_revert [0.001218s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_fetch_revert [0.001193s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_retry_results [0.001181s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_retry_results_with_mapping [0.001201s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_task_intention [0.001200s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_set_and_get_task_state [0.001086s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_metadata_update_with_none [0.001046s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_transient_storage_fetch_mapped [0.000917s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_transient_storage_restore [0.000897s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_unknown_task_by_name [0.000665s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_cached_retry_failure [0.025906s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_existing_task [0.012512s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_retry [0.016217s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_retry_and_task_with_same_name [0.016300s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_task [0.014586s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_optional_args_found [0.022120s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_result_not_ready [0.015016s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_flow_name_uuid_and_meta [0.006951s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_failure_from_reverted_task [0.096699s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_flow_state [0.014957s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_non_existing_var [0.018116s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_tasks_states [0.027154s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject [0.019110s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_resumed [0.024164s] ... ok 264s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_many_thread_ensure_same_task [0.032981s] ... ok 264s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 264s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 264s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_parameterized_for_each_revert [1.094869s] ... ok 264s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 264s self._exception_str = _exception_message(self._exc_info[1]) 264s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 264s self.pid = os.fork() 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_many_thread_inject [0.302958s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_mapping_none [0.020468s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_reset [0.022502s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_reset_unknown_task [0.017115s] ... ok 265s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 265s self._exception_str = _exception_message(self._exc_info[1]) 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_and_get_non_cached_failure [0.018198s] ... ok 265s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 265s self._exception_str = _exception_message(self._exc_info[1]) 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_fail_fetch_revert [0.023574s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_fetch [0.018922s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_fetch_revert [0.021220s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_multiple_results [0.019148s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_retry_results [0.020763s] ... ok 265s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 1 (name 'b') 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_short_result_is_checked [0.019516s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_by_name [0.015757s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_metadata_update_with_none [0.017359s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_progress [0.125981s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_transient_storage_fetch_mapped [0.017731s] ... ok 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_transient_storage_restore [0.018029s] ... ok 265s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 265s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_unknown_task_by_name [0.010405s] ... ok 265s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 265s self._exception_str = _exception_message(self._exc_info[1]) 265s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_and_resume_linear_flow_on_revert [0.012316s] ... ok 265s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 265s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 265s self._exception_str = _exception_message(self._exc_info[1]) 265s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_and_revert_even_if_task_is_gone [0.012623s] ... ok 265s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 265s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_linear_flow [0.006653s] ... ok 265s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 265s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 265s self._exception_str = _exception_message(self._exc_info[1]) 265s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 265s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_linear_flow_on_revert [0.010844s] ... ok 265s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 265s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 265s self.pid = os.fork() 266s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 266s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_provides_graph_retried_correctly [1.298068s] ... ok 266s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 266s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 266s self.pid = os.fork() 266s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 266s self._exception_str = _exception_message(self._exc_info[1]) 266s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 266s self._exception_str = _exception_message(self._exc_info[1]) 266s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 266s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 266s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 267s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 267s self._exception_str = _exception_message(self._exc_info[1]) 267s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_and_resume_linear_flow_on_revert [1.575649s] ... ok 267s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 267s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 267s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 267s self.pid = os.fork() 267s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_new_revert_vs_old [1.109307s] ... ok 267s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 267s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 267s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 267s self.pid = os.fork() 267s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 267s self._exception_str = _exception_message(self._exc_info[1]) 268s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 268s self._exception_str = _exception_message(self._exc_info[1]) 268s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 268s _exception_message(ei1[1]) == _exception_message(ei2[1]), 268s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 268s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_and_revert_even_if_task_is_gone [1.583912s] ... ok 268s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 268s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 268s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 268s self.pid = os.fork() 269s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 269s self._exception_str = _exception_message(self._exc_info[1]) 269s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_linear_flow [0.805350s] ... ok 269s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 269s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 269s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 269s self.pid = os.fork() 270s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 270s self._exception_str = _exception_message(self._exc_info[1]) 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 271s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_linear_flow_on_revert [1.579415s] ... ok 271s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 271s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4595) is multi-threaded, use of fork() may lead to deadlocks in the child. 271s self.pid = os.fork() 271s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_one_task [0.290357s] ... ok 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 271s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_one_task [0.004911s] ... ok 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 271s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 271s self._exception_str = _exception_message(self._exc_info[1]) 271s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_and_resume_linear_flow_on_revert [0.011000s] ... ok 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 271s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_linear_flow [0.007602s] ... ok 271s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 271s self._exception_str = _exception_message(self._exc_info[1]) 271s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_linear_flow_on_revert [0.009990s] ... ok 271s {0} taskflow.tests.unit.test_task.FunctorTaskTest.test_execute_not_callable [0.000345s] ... ok 271s {0} taskflow.tests.unit.test_task.FunctorTaskTest.test_revert_not_callable [0.000267s] ... ok 271s {0} taskflow.tests.unit.test_task.MapFunctorTaskTest.test_functor_invalid_requires [0.000994s] ... ok 271s {0} taskflow.tests.unit.test_task.ReduceFunctorTaskTest.test_functor_invalid_requires [0.000343s] ... ok 271s {0} taskflow.tests.unit.test_task.ReduceFunctorTaskTest.test_invalid_functor [0.000327s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_bad_provides [0.000373s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_bind_not_callable [0.000415s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_copy_listeners [0.000419s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_default_provides_can_be_overridden [0.000359s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_deregister_any_handler_empty_listeners [0.000375s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_generated_name [0.000365s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_passed_name [0.000353s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_provides [0.000358s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_includes_optional [0.000366s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_all [0.000395s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_more [0.000365s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_more_kwargs [0.000372s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_partial [0.000386s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_partial [0.000369s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_register_handler_is_none [0.000395s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_requires_explicit_not_enough [0.000341s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_revert_kwargs [0.000514s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_separate_revert_optional_args [0.000378s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_update_progress_handler_failure [0.000773s] ... ok 271s {0} taskflow.tests.unit.test_task.TaskTest.test_update_progress_lower_bound [0.000618s] ... ok 271s {0} taskflow.tests.unit.test_types.GraphTest.test_invalid_detector [0.000282s] ... ok 271s {0} taskflow.tests.unit.test_types.GraphTest.test_merge [0.000514s] ... ok 271s {0} taskflow.tests.unit.test_types.GraphTest.test_merge_edges [0.000281s] ... ok 271s {0} taskflow.tests.unit.test_types.GraphTest.test_overlap_detector [0.000396s] ... ok 271s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_difference [0.000256s] ... ok 271s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_intersection [0.000249s] ... ok 271s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_multi_difference [0.000246s] ... ok 271s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_pickleable [0.000264s] ... ok 271s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_retain_duplicate_ordering [0.000226s] ... ok 271s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_retain_ordering [0.000221s] ... ok 271s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_union [0.000241s] ... ok 271s {0} taskflow.tests.unit.test_types.TimingTest.test_interrupt [0.000236s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_after_frozen [0.000328s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_bfs_itr [0.000247s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_disassociate [0.000265s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_empty [0.000227s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_find [0.000265s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_freeze [0.000263s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_path [0.000244s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_pformat_partial_species [0.000320s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_pformat_species [0.000267s] ... ok 271s {0} taskflow.tests.unit.test_types.TreeTest.test_to_diagraph [0.000310s] ... ok 271s {0} taskflow.tests.unit.test_utils.CachedPropertyTest.test_custom_property [0.000265s] ... ok 271s {0} taskflow.tests.unit.test_utils.CachedPropertyTest.test_undocumented_property [0.000259s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestClamping.test_clamped_callback [0.000234s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestClamping.test_invalid_clamp [0.000255s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestCountdownIter.test_no_count [0.000227s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestIterable.test_dict [0.000226s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestIterable.test_string_types [0.000212s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestIterable.test_tuple [0.000208s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestSafeCopyDictRaises.test_exceptions(list) [0.000401s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestSafeCopyDictRaises.test_exceptions(tuple) [0.000054s] ... ok 271s {0} taskflow.tests.unit.test_utils.TestSafeCopyDictRaises.test_exceptions(set) [0.000039s] ... ok 271s {0} taskflow.tests.unit.test_utils.UriParseTest.test_port_provided [0.000301s] ... ok 271s {0} taskflow.tests.unit.test_utils.UriParseTest.test_user [0.000235s] ... ok 271s {0} taskflow.tests.unit.test_utils_async_utils.MakeCompletedFutureTest.test_make_completed_future [0.000230s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_simple_text [0.000236s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_unicode_binary [0.000226s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_simple_binary [0.000229s] ... ok 271s /usr/lib/python3.12/unittest/case.py:580: RuntimeWarning: TestResult has no addDuration method 271s warnings.warn("TestResult has no addDuration method", 271s {0} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_simple_text [0.000224s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_unicode_text [0.000219s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_handles_bad_json [0.000297s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_handles_invalid_unicode [0.000256s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_handles_wrong_types [0.000254s] ... ok 271s {0} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_it_works [0.000218s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_fill [0.000261s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_unique_seen [0.000259s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill [0.000229s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_custom_filler [0.000214s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_find_first_match [0.000221s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_find_first_match_not_found [0.000216s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_generate_delays_bad [0.000315s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_unique_seen [0.000499s] ... ok 271s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_unique_seen_empty [0.000203s] ... ok 271s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_bind_invalid [0.000385s] ... ok 271s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_bundle_length [0.101642s] ... ok 271s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_start_stop [0.101474s] ... ok 271s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadHelpers.test_alive_thread [0.100997s] ... ok 271s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadHelpers.test_daemon_thread [0.000379s] ... ok 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 271s {0} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_custom [0.013357s] ... ok 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 271s {0} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_custom_executor [0.001210s] ... ok 271s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 271s {0} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_default [0.012162s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_failed_ack [0.004390s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_on_message [0.004314s] ... ok 271s WARNING [taskflow.engines.worker_based.dispatcher] Unexpected message type: 'hello' in message ': {'content_type': , 'type': 'hello', 'body_length': 0}' 271s {0} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_on_rejected_message [0.004829s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_execute [0.000462s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_revert [0.000393s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_to_str [0.000218s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_execute_task [0.006594s] ... ok 271s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 271s self._exception_str = _exception_message(self._exc_info[1]) 271s CRITICAL [taskflow.engines.worker_based.executor] Failed to submit '' (transitioning it to FAILURE) 271s Traceback (most recent call last): 271s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/executor.py", line 228, in _publish_request 271s self._proxy.publish(request, worker.topic, 271s File "/usr/lib/python3.12/unittest/mock.py", line 1139, in __call__ 271s return self._mock_call(*args, **kwargs) 271s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 271s File "/usr/lib/python3.12/unittest/mock.py", line 1143, in _mock_call 271s return self._execute_mock_call(*args, **kwargs) 271s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 271s File "/usr/lib/python3.12/unittest/mock.py", line 1198, in _execute_mock_call 271s raise effect 271s Exception: Woot! 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_execute_task_publish_error [0.007749s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_execute_task_topic_not_found [0.007304s] ... ok 271s WARNING [taskflow.engines.worker_based.executor] Unexpected response status '' 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_unknown_state [0.006261s] ... ok 271s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 271s self._exception_str = _exception_message(self._exc_info[1]) 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_wait_task_expired [0.008330s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_wait_task_not_expired [0.006442s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_revert_task [0.006517s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_start_stop [0.017457s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_stop_not_alive [0.006652s] ... ok 271s {0} taskflow.tests.unit.worker_based.test_message_pump.TestMessagePump.test_response [0.021523s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_pipeline.TestPipeline.test_execution_pipeline [0.055194s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_request_transitions [0.000673s] ... ok 272s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 272s self._exception_str = _exception_message(self._exc_info[1]) 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_failures [0.000559s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_result_none [0.000421s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_reply_notify [0.001264s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_reply_notify_invalid [0.001174s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_request_invalid_action [0.001632s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_completion [0.001142s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_mixed_invalid [0.001076s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_progress [0.001083s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_creation [0.178586s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_start [0.084029s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_start_with_on_wait [0.083996s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_stop [0.088807s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_on_update_progress [0.010930s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request [0.009055s] ... ok 272s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 272s self._exception_str = _exception_message(self._exc_info[1]) 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request_with_failure_result [0.009308s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request_with_failures [0.087548s] ... ok 272s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 272s self._exception_str = _exception_message(self._exc_info[1]) 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request_with_success_result [0.009078s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request [0.010431s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_parse_message_failure [0.010952s] ... ok 272s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 272s self._exception_str = _exception_message(self._exc_info[1]) 272s WARNING [taskflow.engines.worker_based.server] Failed to parse request contents from message ': {'content_type': , 'correlation_id': 'task-uuid', 'type': 'REQUEST', 'body_length': 0}' 272s Traceback (most recent call last): 272s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 177, in _process_request 272s work = pr.Request.from_dict(request, task_uuid=task_uuid) 272s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 272s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/protocol.py", line 466, in from_dict 272s arguments['result'] = ft.Failure.from_dict(result_data) 272s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 272s File "/usr/lib/python3.12/unittest/mock.py", line 1139, in __call__ 272s return self._mock_call(*args, **kwargs) 272s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 272s File "/usr/lib/python3.12/unittest/mock.py", line 1143, in _mock_call 272s return self._execute_mock_call(*args, **kwargs) 272s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 272s File "/usr/lib/python3.12/unittest/mock.py", line 1198, in _execute_mock_call 272s raise effect 272s ValueError: Woot! 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_parse_request_failure [0.011174s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_task_failure [0.009974s] ... ok 272s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 272s self._exception_str = _exception_message(self._exc_info[1]) 272s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_wait [0.010411s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_multi_same_topic_workers [0.000389s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_types.TestTopicWorker.test_topic_worker [0.000252s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_banner_writing [0.014287s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_modules [0.015655s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_non_task_class [0.015162s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_modules [0.013593s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_non_existent_module [0.015311s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_non_existent_task [0.013515s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_non_task_class [0.015086s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_unexpected_task_type [0.013725s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_run_with_custom_executor [0.015408s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_run_with_tasks [0.014343s] ... ok 272s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_stop [0.014237s] ... ok 277s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_restart_reverted_unordered_flows_with_retries [9.650440s] ... ok 277s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 277s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 277s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 277s self.pid = os.fork() 277s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resume_flow_that_should_be_retried [0.542154s] ... ok 277s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 277s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 277s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 277s self._exception_str = _exception_message(self._exc_info[1]) 277s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 277s self.pid = os.fork() 278s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_revert_scheduled [0.544988s] ... ok 278s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 278s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 278s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 278s self._exception_str = _exception_message(self._exc_info[1]) 278s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 278s self.pid = os.fork() 278s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 278s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_task_failure [0.540613s] ... ok 278s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 278s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 278s self._exception_str = _exception_message(self._exc_info[1]) 278s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 278s Traceback (most recent call last): 278s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 278s failure.Failure.reraise_if_any(memory.failures) 278s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 278s failures[0].reraise() 278s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 278s raise value 278s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 278s result = retry.revert(**arguments) 278s ^^^^^^^^^^^^^^^^^^^^^^^^^ 278s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 278s raise ValueError('WOOT!') 278s ValueError: WOOT! 278s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id 101abd47-e604-47e2-8071-e6f092a762b5) 278s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_retry_revert_fails [0.013354s] ... ok 278s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 278s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 278s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_just_retry [0.002068s] ... ok 278s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 278s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 278s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 278s self.pid = os.fork() 278s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 278s self._exception_str = _exception_message(self._exc_info[1]) 279s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 279s Traceback (most recent call last): 279s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 279s failure.Failure.reraise_if_any(memory.failures) 279s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 279s failures[0].reraise() 279s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 279s raise value 279s RuntimeError: Gotcha! 279s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_failure_linear_flow [0.543595s] ... ok 279s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 279s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 279s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 279s self.pid = os.fork() 279s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 279s self._exception_str = _exception_message(self._exc_info[1]) 280s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_failure_nested_flow_fails [0.810899s] ... ok 280s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 280s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 280s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 280s self.pid = os.fork() 280s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 280s self._exception_str = _exception_message(self._exc_info[1]) 280s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_failure_parent_flow_fails [0.812130s] ... ok 280s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 280s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 280s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 280s self.pid = os.fork() 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.803999s] ... ok 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_use_retry_as_a_task [0.002721s] ... ok 281s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_for_each_empty_collection [0.007967s] ... ok 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_for_each_with_list [0.019810s] ... ok 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_flow_with_retry_revert [0.008870s] ... ok 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_for_each_revert [0.021048s] ... ok 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_parameterized_for_each_revert [0.016650s] ... ok 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_provides_graph_reverts_correctly [0.017839s] ... ok 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 281s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 281s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_parameterized_for_each_with_list [0.014607s] ... ok 281s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 281s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_restart_reverted_unordered_flows_with_retries [7.099377s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_retry_queried [0.007838s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_retry_updated [0.006928s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_task_updated [0.006854s] ... ok 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_retry_fails [0.003248s] ... ok 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_retry_revert_fails [0.003426s] ... ok 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_retry_tasks_that_has_not_been_reverted [0.011016s] ... ok 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_revert_all_retry [0.011498s] ... ok 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_empty_unordered_flow [0.002120s] ... ok 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_just_retry [0.000903s] ... ok 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_failure_linear_flow [0.010009s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 288s Traceback (most recent call last): 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 288s failure.Failure.reraise_if_any(memory.failures) 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 288s failures[0].reraise() 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 288s raise value 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 288s result = retry.revert(**arguments) 288s ^^^^^^^^^^^^^^^^^^^^^^^^^ 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 288s raise ValueError('WOOT!') 288s ValueError: WOOT! 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 288s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id 5197a471-5edc-4811-88f9-cfecbefa0be4) 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 288s Traceback (most recent call last): 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 288s failure.Failure.reraise_if_any(memory.failures) 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 288s failures[0].reraise() 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 288s raise value 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 288s result = task.revert(**arguments) 288s ^^^^^^^^^^^^^^^^^^^^^^^^ 288s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 288s raise RuntimeError('Gotcha!') 288s RuntimeError: Gotcha! 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_failure_nested_flow_fails [0.016795s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_for_each_with_set [0.013047s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_flow_reverts_parent_retries [0.014602s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_flow_with_retry_revert [0.008175s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 288s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_new_revert_vs_old [0.019154s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 288s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_parameterized_for_each_empty_collection [0.004194s] ... ok 288s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 288s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 288s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_restart_reverted_unordered_flows_with_retries [7.091303s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.007538s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resume_flow_that_should_be_retried [0.006362s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_revert_scheduled [0.006360s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_task_updated [0.007453s] ... ok 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_retry_fails [0.003053s] ... ok 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_retry_revert_fails [0.003489s] ... ok 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_retry_tasks_that_has_not_been_reverted [0.009481s] ... ok 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_revert_all_retry [0.010367s] ... ok 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_empty_graph_flow [0.002123s] ... ok 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_just_retry [0.000960s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 296s Traceback (most recent call last): 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 296s failure.Failure.reraise_if_any(memory.failures) 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 296s failures[0].reraise() 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 296s raise value 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 296s result = retry.revert(**arguments) 296s ^^^^^^^^^^^^^^^^^^^^^^^^^ 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 296s raise ValueError('WOOT!') 296s ValueError: WOOT! 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 296s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id 5dc00435-c1b6-4833-a33b-ed8ee9f9d13d) 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_failure_linear_flow [0.008078s] ... ok 296s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 296s Traceback (most recent call last): 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 296s failure.Failure.reraise_if_any(memory.failures) 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 296s failures[0].reraise() 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 296s raise value 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 296s result = task.revert(**arguments) 296s ^^^^^^^^^^^^^^^^^^^^^^^^ 296s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 296s raise RuntimeError('Gotcha!') 296s RuntimeError: Gotcha! 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_failure_nested_flow_fails [0.014350s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_failure_parent_flow_fails [0.019392s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_success_linear_flow [0.012576s] ... ok 296s {1} taskflow.tests.unit.test_states.TestStates.test_ignored_flow_states [0.000268s] ... ok 296s {1} taskflow.tests.unit.test_states.TestStates.test_ignored_job_states [0.000220s] ... ok 296s {1} taskflow.tests.unit.test_states.TestStates.test_invalid_job_states [0.000312s] ... ok 296s {1} taskflow.tests.unit.test_states.TestStates.test_valid_flow_states [0.000221s] ... ok 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_states.TestStates.test_valid_job_states [0.000214s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_cached_retry_failure [0.001693s] ... ok 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 'result' (name 'result') 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_default_task_progress [0.000921s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_existing_task [0.000745s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_retry [0.000898s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_task_flow_detail [0.000882s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_by_name [0.001033s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_mapped_args [0.000942s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_not_found_args [0.000876s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_optional_args_not_found [0.000868s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_result_not_ready [0.000970s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_failure_after_reload [0.001295s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_failure_from_reverted_task [0.001347s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_flow_state [0.000641s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_non_existing_var [0.000926s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_without_save [0.000583s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_persistent_and_transient_missing [0.001058s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_resumed [0.000939s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_twice [0.001048s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_mapping_none [0.001016s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_reset [0.001185s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_reset_unknown_task [0.001090s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_result_is_checked [0.001239s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_and_get [0.001030s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_and_get_cached_failure [0.001157s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_fetch [0.001111s] ... ok 296s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 1 (name 'b') 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_multiple_results [0.001116s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_retry_intention [0.001026s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_set_and_get_flow_state [0.000715s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_short_result_is_checked [0.001329s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_by_name [0.000910s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_progress [0.001291s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_progress_erase [0.001026s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_transient_storage_fetch_all [0.000952s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_cleanup_retry_history [0.029456s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_default_task_progress [0.015560s] ... ok 296s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 0 (name 'a') 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_empty_result_is_checked [0.019220s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_task_flow_detail [0.015280s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_by_name [0.017112s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_mapped_args [0.018363s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_not_found_args [0.101240s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_optional_args_not_found [0.018582s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_unknown_name [0.011726s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_flow_metadata_update [0.013032s] ... ok 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_failure_after_reload [0.019536s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_state_of_unknown_task [0.010281s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_without_save [0.011547s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_initial_flow_state [0.009995s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_persistent_and_transient_missing [0.018553s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_persistent_missing [0.018816s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_twice [0.020627s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_logbook_get_unknown_atom_type [0.007610s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_non_saving_storage [0.010567s] ... ok 296s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 'result' (name 'result') 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_result_is_checked [0.018615s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_and_get [0.016993s] ... ok 296s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 296s self._exception_str = _exception_message(self._exc_info[1]) 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_and_get_cached_failure [0.020138s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_retry_intention [0.019300s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_retry_results_with_mapping [0.023018s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_task_intention [0.017145s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_set_and_get_flow_state [0.091364s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_set_and_get_task_state [0.015391s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_progress_erase [0.018542s] ... ok 296s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_transient_storage_fetch_all [0.017594s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 296s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 296s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_storage_is_rechecked [0.005212s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 296s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_one_task [0.003538s] ... ok 296s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 296s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 296s /usr/lib/python3.12/multiprocessing/popen_fork.py:66: DeprecationWarning: This process (pid=4599) is multi-threaded, use of fork() may lead to deadlocks in the child. 296s self.pid = os.fork() 297s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 297s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_storage_is_rechecked [0.295699s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 297s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 297s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_storage_is_rechecked [0.006090s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 297s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 297s self._exception_str = _exception_message(self._exc_info[1]) 297s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_and_resume_linear_flow_on_revert [0.012309s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 297s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 297s self._exception_str = _exception_message(self._exc_info[1]) 297s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_and_revert_even_if_task_is_gone [0.011376s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 297s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_linear_flow [0.007321s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 297s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 297s self._exception_str = _exception_message(self._exc_info[1]) 297s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_linear_flow_on_revert [0.013420s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 297s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 297s {1} taskflow.tests.unit.test_suspend.SerialEngineTest.test_storage_is_rechecked [0.004125s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 297s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 297s self._exception_str = _exception_message(self._exc_info[1]) 297s {1} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_and_revert_even_if_task_is_gone [0.010864s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 297s {1} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_one_task [0.003098s] ... ok 297s {1} taskflow.tests.unit.test_task.FunctorTaskTest.test_creation_with_version [0.000465s] ... ok 297s {1} taskflow.tests.unit.test_task.MapFunctorTaskTest.test_invalid_functor [0.000392s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_copy_no_listeners [0.000435s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_default_provides [0.000370s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_deregister_any_handler [0.000394s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_deregister_non_existent_listener [0.000384s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_multi_provides [0.000365s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_no_provides [0.000361s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_all_args [0.000379s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_bad_value [0.000616s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_unknown [0.000358s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_unknown_kwargs [0.000366s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_requires_allows_optional [0.000397s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_requires_amended [0.000376s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_requires_by_default [0.000384s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_requires_explicit [0.000445s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_requires_ignores_optional [0.000384s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_separate_revert_args [0.000533s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_task_repr [0.000379s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_task_str [0.000371s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_unpack [0.000376s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_update_progress_upper_bound [0.000804s] ... ok 297s {1} taskflow.tests.unit.test_task.TaskTest.test_update_progress_within_bounds [0.000391s] ... ok 297s {1} taskflow.tests.unit.test_types.GraphTest.test_directed [0.000303s] ... ok 297s {1} taskflow.tests.unit.test_types.GraphTest.test_frozen [0.000268s] ... ok 297s {1} taskflow.tests.unit.test_types.GraphTest.test_no_successors_no_predecessors [0.000236s] ... ok 297s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/graph.py:141: DeprecationWarning: nx.nx_pydot.to_pydot depends on the pydot package, which has known issues and is not actively maintained. 297s 297s See https://github.com/networkx/networkx/issues/5723 297s return nx_pydot.to_pydot(self).to_string() 297s {1} taskflow.tests.unit.test_types.GraphTest.test_pydot_output [0.102217s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_contains [0.000357s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_copy [0.000251s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_duplicate_length [0.000209s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_empty_difference [0.000215s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_empty_intersection [0.000217s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_empty_union [0.000212s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_length [0.000203s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_multi_intersection [0.000238s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_multi_union [0.000212s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_subset [0.000211s] ... ok 297s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_superset [0.000205s] ... ok 297s {1} taskflow.tests.unit.test_types.TimingTest.test_convert_fail [0.000341s] ... ok 297s {1} taskflow.tests.unit.test_types.TimingTest.test_convert_noop [0.000213s] ... ok 297s {1} taskflow.tests.unit.test_types.TimingTest.test_fail [0.000229s] ... ok 297s {1} taskflow.tests.unit.test_types.TimingTest.test_reset [0.000219s] ... ok 297s {1} taskflow.tests.unit.test_types.TimingTest.test_values [0.000212s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_bfs_itr_no_self [0.000229s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_bfs_itr_right_to_left [0.000415s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_contains [0.000264s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_dfs_itr [0.000222s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_dfs_itr_left_to_right [0.000210s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_dfs_itr_no_self [0.000537s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_disassociate_many [0.000232s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_index [0.000207s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_node_count [0.000209s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_not_empty [0.000203s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_pformat [0.002376s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_pformat_flat [0.000312s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_removal [0.000290s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_removal_direct [0.000270s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_removal_self [0.000227s] ... ok 297s {1} taskflow.tests.unit.test_types.TreeTest.test_to_digraph_retains_metadata [0.000263s] ... ok 297s {1} taskflow.tests.unit.test_utils.CachedPropertyTest.test_attribute_caching [0.000253s] ... ok 297s {1} taskflow.tests.unit.test_utils.CachedPropertyTest.test_documented_property [0.000239s] ... ok 297s {1} taskflow.tests.unit.test_utils.CachedPropertyTest.test_no_delete [0.000250s] ... ok 297s {1} taskflow.tests.unit.test_utils.CachedPropertyTest.test_set [0.000244s] ... ok 297s {1} taskflow.tests.unit.test_utils.CachedPropertyTest.test_threaded_access_property [0.409743s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestClamping.test_simple_clamp [0.000507s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestCountdownIter.test_expected_count [0.000400s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestCountdownIter.test_expected_count_custom_decr [0.000351s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestCountdownIter.test_invalid_decr [0.000370s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestIterable.test_list [0.000315s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestMergeUri.test_merge [0.000402s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestMergeUri.test_merge_existing_hostname [0.000231s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestMergeUri.test_merge_user_password [0.000240s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestMergeUri.test_merge_user_password_existing [0.000229s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(ten) [0.000248s] ... ok 297s /usr/lib/python3.12/unittest/case.py:580: RuntimeWarning: TestResult has no addDuration method 297s warnings.warn("TestResult has no addDuration method", 297s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(empty) [0.000242s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(negative) [0.000244s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(one) [0.000297s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(abc) [0.000214s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(ascii_letters) [0.000282s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(none) [0.000414s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(empty_dict) [0.000049s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(empty_list) [0.000036s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(dict) [0.000039s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(none) [0.000042s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(empty_dict) [0.000036s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(empty_list) [0.000031s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(dict) [0.000031s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSequenceMinus.test_equal_items_not_continious [0.000240s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSequenceMinus.test_simple_case [0.000207s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSequenceMinus.test_some_items_are_equal [0.000204s] ... ok 297s {1} taskflow.tests.unit.test_utils.TestSequenceMinus.test_subtrahend_has_extra_elements [0.000198s] ... ok 297s {1} taskflow.tests.unit.test_utils.UriParseTest.test_ipv6_host [0.000302s] ... ok 297s {1} taskflow.tests.unit.test_utils.UriParseTest.test_parse [0.000234s] ... ok 297s {1} taskflow.tests.unit.test_utils.UriParseTest.test_user_password [0.000221s] ... ok 297s {1} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_simple_binary [0.000232s] ... ok 297s {1} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_unicode_other_encoding [0.000204s] ... ok 297s {1} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_unicode_text [0.000198s] ... ok 297s {1} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_unicode_binary [0.000214s] ... ok 297s {1} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_unicode_other_encoding [0.000202s] ... ok 297s {1} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_it_works_with_unicode [0.000242s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_count [0.000993s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_find_first_match [0.000238s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_while_is_not [0.000233s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_count [0.000260s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_empty [0.000204s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_less_needed [0.000205s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_many_empty [0.000248s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_generate_delays [0.000210s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_generate_delays_custom_multiplier [0.000805s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_unique_seen_selector [0.000238s] ... ok 297s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_while_is_not [0.000245s] ... ok 297s {1} taskflow.tests.unit.test_utils_kazoo_utils.MakeClientTest.test_make_client_config [0.000701s] ... ok 297s {1} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_start_stop_order [0.101461s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 297s {1} taskflow.tests.unit.test_utils_threading_utils.TestThreadHelpers.test_alive_thread_falsey [0.000544s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_invalid_custom_executor [0.002027s] ... ok 297s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 297s {1} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_creation [0.000754s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_on_requeue_message [0.005666s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_creation [0.000443s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_creation_task_with_constructor_args [0.000528s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_creation_with_task_name [0.000486s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_creation [0.006740s] ... ok 297s WARNING [taskflow.engines.worker_based.executor] The 'correlation_id' message property is missing in message ': {'content_type': , 'type': 'RESPONSE', 'body_length': 0}' 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_no_correlation_id [0.008686s] ... ok 297s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 297s self._exception_str = _exception_message(self._exc_info[1]) 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_failure [0.007920s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_progress [0.006373s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_running [0.006634s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_success [0.006178s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_unknown_task [0.006701s] ... ok 297s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_restart [0.028894s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_start_already_running [0.016701s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_stop_not_running [0.006993s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_message_pump.TestMessagePump.test_multi_message [0.023427s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_message_pump.TestMessagePump.test_notify [0.021392s] ... ok 298s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 298s self._exception_str = _exception_message(self._exc_info[1]) 298s {1} taskflow.tests.unit.worker_based.test_pipeline.TestPipeline.test_execution_failure_pipeline [0.045390s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_creation [0.000513s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_pending_expired [0.000635s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_pending_not_expired [0.000555s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_running_not_expired [0.000555s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_set_result [0.000400s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_default [0.000388s] ... ok 298s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 298s self._exception_str = _exception_message(self._exc_info[1]) 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_invalid_json_failures [0.000543s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_result [0.000396s] ... ok 298s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 298s self._exception_str = _exception_message(self._exc_info[1]) 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_result_failure [0.000445s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_request [0.001336s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_request_invalid [0.001377s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_bad_state [0.001068s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_send_notify [0.001035s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_send_notify_invalid [0.001062s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_creation_custom [0.084194s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_publish [0.176930s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_start_with_on_wait_raises [0.083937s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_creation [0.010177s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_creation_with_endpoints [0.009117s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_on_run_reply_failure [0.010940s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_endpoint_not_found [0.011554s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_execution_failure [0.010479s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_reply_publish_failure [0.009443s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_start [0.010296s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_stop [0.010337s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_expiry [0.000519s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_multi_different_topic_workers [0.000353s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_single_topic_worker [0.000538s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_creation [0.013714s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_creation_with_custom_executor [0.014325s] ... ok 298s CRITICAL [taskflow.engines.worker_based.server] Failed to send reply to 'reply-to' for task 'task-uuid' with response 298s Traceback (most recent call last): 298s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 122, in _reply 298s self._proxy.publish(response, reply_to, correlation_id=task_uuid) 298s File "/usr/lib/python3.12/unittest/mock.py", line 1139, in __call__ 298s return self._mock_call(*args, **kwargs) 298s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 298s File "/usr/lib/python3.12/unittest/mock.py", line 1143, in _mock_call 298s return self._execute_mock_call(*args, **kwargs) 298s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 298s File "/usr/lib/python3.12/unittest/mock.py", line 1198, in _execute_mock_call 298s raise effect 298s RuntimeError: Woot! 298s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 298s self._exception_str = _exception_message(self._exc_info[1]) 298s WARNING [taskflow.engines.worker_based.server] The 'unittest.mock.MagicMock' task endpoint does not exist, unable to continue processing request message ': {'content_type': , 'correlation_id': 'task-uuid', 'type': 'REQUEST', 'body_length': 0}' 298s Traceback (most recent call last): 298s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 188, in _process_request 298s endpoint = self._endpoints[work.task_cls] 298s ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^ 298s KeyError: 'unittest.mock.MagicMock' 298s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 298s self._exception_str = _exception_message(self._exc_info[1]) 298s WARNING [taskflow.engines.worker_based.server] The '' handler does not exist on task endpoint 'taskflow.tests.utils.TaskOneArgOneReturn', unable to continue processing request message ': {'content_type': , 'correlation_id': 'task-uuid', 'type': 'REQUEST', 'body_length': 0}' 298s Traceback (most recent call last): 298s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 199, in _process_request 298s handler = getattr(endpoint, work.action) 298s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 298s AttributeError: 'Endpoint' object has no attribute '' 298s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_creation_with_custom_threads_count [0.013219s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_tasks [0.013891s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_tasks [0.012886s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_run_with_no_tasks [0.014644s] ... ok 298s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_wait [0.103588s] ... ok 299s 299s ====== 299s Totals 299s ====== 299s Ran: 1755 tests in 79.7766 sec. 299s - Passed: 1645 299s - Skipped: 110 299s - Expected Fail: 0 299s - Unexpected Success: 0 299s - Failed: 0 299s Sum of execute time for each test: 133.1742 sec. 299s 299s ============== 299s Worker Balance 299s ============== 299s - Worker 0 (863 tests) => 0:00:53.867635 299s - Worker 1 (892 tests) => 0:01:19.576321 299s + rm -rf .stestr 299s + echo Testing with python3.13: 299s + PYTHON=python3.13 stestr run 299s Testing with python3.13: 314s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 314s self._exception_str = _exception_message(self._exc_info[1]) 314s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_automatic_process_failure [0.004172s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_expected_transition_occurrences [0.010498s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_manual_process [0.001719s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations [0.001467s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_suspended [0.001995s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_graph_flow [0.000691s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_links [0.001731s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_linear [0.008227s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_linear_nested [0.001121s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_many_empty_in_graph_flow [0.001705s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retries_hierarchy [0.001553s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry [0.000477s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_graph_flow_with_tasks [0.000975s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_linear_flow [0.000400s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_unordered_flow [0.000389s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_subflows_hierarchy [0.001132s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_task [0.000384s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_unordered_nested_in_linear [0.000993s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_wrong_object [0.010457s] ... ok 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_green_executor_creation [0.015951s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_invalid_creation [0.001690s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_process_string_creation [0.001322s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_sync_executor_creation [0.000694s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_thread_executor_creation [0.000671s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_thread_string_creation [0.001520s] ... ok 314s {0} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_bad_hmac_reader [0.000300s] ... ok 314s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 314s self._exception_str = _exception_message(self._exc_info[1]) 314s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 314s self._exception_str = _exception_message(self._exc_info[1]) 314s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 314s self._exception_str = _exception_message(self._exc_info[1]) 314s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 314s self._exception_str = _exception_message(self._exc_info[1]) 314s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_automatic_process [0.004038s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_builder_automatic_process_reverted [0.003090s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_failure [0.002215s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_reverted [0.013961s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_builder.BuildersTest.test_run_iterations_suspended_failure [0.005691s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_checks_for_dups [0.004670s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_checks_for_dups_globally [0.000916s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty [0.000240s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_graph_flow_linkage [0.000710s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_linear_flow [0.000680s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_empty_flow_in_nested_flow [0.001313s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph [0.000930s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_dependencies [0.000662s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested [0.001558s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested_graph [0.001571s] ... ok 314s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 314s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested_provides [0.001123s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_graph_nested_requires [0.000855s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_invalid [0.000715s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_graph_flow [0.000410s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_linear_flow_with_tasks [0.000752s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_nested_flows [0.000619s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_retry_in_unordered_flow_with_tasks [0.000773s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_unordered [0.000929s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_compile.PatternCompileTest.test_unordered_nested [0.000977s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_creation.ParallelCreationTest.test_process_executor_creation [0.002672s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_no_connect_channel [0.001569s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_reader [0.000409s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_scoping.GraphScopingTest.test_nested [0.001511s] ... ok 314s {1} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_single_prior_linear [0.000624s] ... ok 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s {1} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_shadow_graph [0.000880s] ... ok 314s {1} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_redis_entry_point_text [0.000426s] ... ok 314s {1} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_zk_entry_point_text [0.000367s] ... ok 314s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test__incr ... SKIPPED: Etcd is not available 314s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_board_iter_empty ... SKIPPED: Etcd is not available 314s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_fresh_iter ... SKIPPED: Etcd is not available 314s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim ... SKIPPED: Etcd is not available 314s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim_abandon ... SKIPPED: Etcd is not available 314s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_consume_wait ... SKIPPED: Etcd is not available 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s {1} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_wait_timeout ... SKIPPED: Etcd is not available 314s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_claim [0.000914s] ... ok 314s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_consume_bad_owner [0.000531s] ... ok 314s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_create_board [0.000223s] ... ok 314s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_trash [0.000794s] ... ok 314s {1} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_trash_deleted_job [0.000622s] ... ok 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client_sentinel ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_board_iter_empty ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_fresh_iter ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_abandon_no_owner ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_consume ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_diff_owner ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_expiry ... SKIPPED: redis is not available 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_same_owner ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_wait_timeout ... SKIPPED: redis is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_board_iter [0.001220s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_board_iter_empty [0.004087s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_fresh_iter [0.001320s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim_abandon [0.005251s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim_consume [0.004048s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim_diff_owner [0.001722s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_consume_wait [0.001084s] ... ok 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_no_consume_wait [0.101963s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_no_post [0.001307s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_received_raw [0.000958s] ... ok 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_with_book [0.003361s] ... ok 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_board_iter ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_board_iter_empty ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_connect ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_fresh_iter ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim_diff_owner ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_consume_wait ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_no_post ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_with_book ... SKIPPED: zookeeper is not available 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_raises_on_link_cycle [0.000819s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_links_and_dependencies [0.000568s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_no_resolve_requires [0.000505s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_resolve_existing [0.000560s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_dependent_tasks [0.000554s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_dependent_tasks_two_different_calls [0.000541s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_task_same_provide [0.000494s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_with_retry [0.000371s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_invalid_decider_depth [0.000767s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_iter_links [0.000661s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_iter_nodes [0.000736s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_recache_on_add_no_deps [0.000639s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_recache_on_link [0.000624s] ... ok 314s {1} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_reset [0.000786s] ... ok 314s {1} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_iter_links [0.000625s] ... ok 314s {1} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_three_tasks [0.000587s] ... ok 314s {1} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_two_dependent_tasks [0.000491s] ... ok 314s {1} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_with_retry [0.000364s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_iter_nodes [0.000512s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_one_task [0.000394s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_starts_as_empty [0.000216s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_stringy [0.000596s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_tasks [0.000460s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_tasks_two_different_calls [0.000475s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_with_retry [0.000364s] ... ok 314s {1} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_with_retry_fully_satisfies [0.000485s] ... ok 314s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(no_cache) [0.000371s] ... ok 314s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(one) [0.000814s] ... ok 314s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(tiny) [0.115586s] ... ok 314s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(medimum) [0.230591s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_process_executor.ProcessExecutorHelpersTest.test_send_and_dispatch [0.979387s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.GraphScopingTest.test_dependent [0.003085s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.GraphScopingTest.test_no_visible [0.002073s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_empty [0.000463s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_nested_prior_linear [0.000750s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_nested_prior_linear_begin_middle_end [0.001978s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.LinearScopingTest.test_unknown [0.000734s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_graph_linear_scope [0.001976s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_linear_unordered_scope [0.001760s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.MixedPatternScopingTest.test_shadow_linear [0.000870s] ... ok 315s {0} taskflow.tests.unit.action_engine.test_scoping.UnorderedScopingTest.test_no_visible [0.001699s] ... ok 315s {0} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_redis_entry_point [0.000447s] ... ok 315s {0} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_zk_entry_point [0.000373s] ... ok 315s {0} taskflow.tests.unit.jobs.test_entrypoint.BackendFetchingTest.test_zk_entry_point_existing_client [0.000269s] ... ok 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_connect ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_get_one ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_abandon_no_owner ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim_consume ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_claim_diff_owner ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_no_consume_wait ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_posting_with_book ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.EtcdJobBoardTest.test_wait_arrival ... SKIPPED: Etcd is not available 315s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_abandon [0.004777s] ... ok 315s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_abandon_bad_owner [0.000714s] ... ok 315s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_claim_already_claimed [0.000960s] ... ok 315s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_claim_deleted [0.000809s] ... ok 315s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_consume [0.000990s] ... ok 315s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_post [0.001658s] ... ok 315s {0} taskflow.tests.unit.jobs.test_etcd_job.MockedEtcdJobBoard.test_trash_bad_owner [0.000619s] ... ok 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client_sentinel_fallbacks ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test__make_client_sentinel_ssl ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_connect ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_claim_abandon ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_consume_wait ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_no_consume_wait ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_posting_with_book ... SKIPPED: redis is not available 315s {0} taskflow.tests.unit.jobs.test_redis_job.RedisJobboardTest.test_wait_arrival ... SKIPPED: redis is not available 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_connect [0.006612s] ... ok 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_connect_check_compatible [0.009558s] ... ok 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_abandon_no_owner [0.001816s] ... ok 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_claim [0.001536s] ... ok 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_dates [0.001410s] ... ok 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_owner_lost [0.001388s] ... ok 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_posting_state_lock_lost [0.001930s] ... ok 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_register_entity [0.001124s] ... ok 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_trashing_claimed_job [0.002033s] ... ok 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_cache_overfill(large) [0.483264s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(no_cache) [0.000901s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(one) [0.000537s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(tiny) [0.000615s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(medimum) [0.000480s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_name(large) [0.000507s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(no_cache) [0.000658s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(one) [0.000464s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(tiny) [0.000372s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(medimum) [0.000374s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_file_backend_entry_point(large) [0.000367s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(no_cache) [0.001045s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(one) [0.000892s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(tiny) [0.000878s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(medimum) [0.001064s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_lazy_fetch(large) [0.001164s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(no_cache) [0.001292s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(one) [0.001234s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(tiny) [0.001489s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(medimum) [0.001594s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_merge_flow_detail(large) [0.001242s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(no_cache) [0.000700s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(one) [0.000979s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(tiny) [0.001020s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(medimum) [0.000759s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve(large) [0.000655s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(no_cache) [0.002388s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(one) [0.003402s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(tiny) [0.001811s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(medimum) [0.001596s] ... ok 315s {1} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_with_task_failure(large) [0.001542s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_clear [0.000365s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_many_children_allowed_not_recursive [0.000261s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_many_children_not_allowed [0.000240s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_no_children_allowed [0.000218s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_with_children_not_allowed [0.000243s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_link_loop_raises [0.000233s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive_targeted [0.000234s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive_targeted_absolute [0.000229s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_targeted [0.000229s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_not_found [0.000218s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_set_get_ls [0.000223s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_lazy_fetch [0.000520s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_meta_update [0.000589s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_update_not_existing [0.000662s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_add_task_detail [0.000676s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_lazy_fetch [0.000454s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_save_retrieve_many [0.002262s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_retry_detail_save_intention [0.000820s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_retry_type_ [0.000671s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_save [0.000668s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_update_not_existing [0.002353s] ... ok 315s {1} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_with_failure [0.001088s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_meta_update ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_add_task_detail ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_delete ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_lazy_fetch ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_save_retrieve_many ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_retry_detail_save_with_task_failure ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_meta_update ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_retry_type_ ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_update_not_existing ... SKIPPED: mysql is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_lazy_fetch ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_meta_update ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_update_not_existing ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_add_task_detail ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_delete ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_save_retrieve ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_save_retrieve_many ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_retry_detail_save_with_task_failure ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_update_not_existing ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SQLBackendFetchingTest.test_postgres_persistence_entry_point ... SKIPPED: postgres is not available 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_lazy_fetch [0.034469s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_meta_update [0.023096s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_save [0.017355s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_flow_detail_update_not_existing [0.022624s] ... ok 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_wait_arrival [0.206384s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_add_flow_detail [0.020897s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_add_task_detail [0.020013s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_lazy_fetch [0.013163s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_save_retrieve_many [0.062293s] ... ok 315s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZakeJobboardTest.test_wait_timeout [0.101584s] ... ok 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_abandon_no_owner ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim_abandon ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_claim_consume ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_dates ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_posting_no_consume_wait ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_wait_arrival ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.jobs.test_zk_job.ZookeeperJobboardTest.test_wait_timeout ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_add_nothing [0.000348s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_ambiguous_provides [0.000853s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_dependency_cycle [0.000718s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_from_unknown_node [0.000640s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_raises_on_cycle [0.000571s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_link_to_unknown_node [0.000542s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_links [0.000537s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_no_resolve_existing [0.000548s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_one_task [0.000397s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_ordering [0.000691s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_starts_as_empty [0.000240s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_stringy [0.001075s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.GraphFlowTest.test_graph_flow_two_independent_tasks [0.005361s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_recache_on_add [0.002307s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_bad_target [0.001093s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_one_node [0.000418s] ... ok 315s {0} taskflow.tests.unit.patterns.test_graph_flow.TargetedGraphFlowTest.test_targeted_flow_restricts [0.000832s] ... ok 315s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_iter_nodes [0.003128s] ... ok 315s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_add_nothing [0.000235s] ... ok 315s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_one_task [0.000373s] ... ok 315s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_starts_as_empty [0.000203s] ... ok 315s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_stringy [0.000574s] ... ok 315s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_two_dependent_tasks_two_different_calls [0.000455s] ... ok 315s {0} taskflow.tests.unit.patterns.test_linear_flow.LinearFlowTest.test_linear_flow_two_independent_tasks [0.000568s] ... ok 315s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_iter_links [0.000511s] ... ok 315s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_add_nothing [0.000197s] ... ok 315s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_task_same_provide [0.001335s] ... ok 315s {0} taskflow.tests.unit.patterns.test_unordered_flow.UnorderedFlowTest.test_unordered_flow_two_tasks_reverse_order [0.000758s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(no_cache) [0.001007s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(one) [0.005535s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(tiny) [0.000388s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(medimum) [0.000836s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_entry_point(large) [0.000872s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(no_cache) [0.000540s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(one) [0.000495s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(tiny) [0.000430s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(medimum) [0.000392s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_dir_backend_invalid_cache_size(large) [0.000749s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(no_cache) [0.008393s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(one) [0.004251s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(tiny) [0.001166s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(medimum) [0.001162s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_meta_update(large) [0.001678s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(no_cache) [0.002057s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(one) [0.001580s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(tiny) [0.003434s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(medimum) [0.002041s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_retry_detail_save_intention [0.073197s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_save(large) [0.004628s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(no_cache) [0.005099s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(one) [0.003077s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(tiny) [0.002920s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(medimum) [0.002062s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_flow_detail_update_not_existing(large) [0.002229s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(no_cache) [0.000837s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(one) [0.000981s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(tiny) [0.001567s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(medimum) [0.001414s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_flow_detail(large) [0.001025s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(no_cache) [0.002856s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(one) [0.001485s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(tiny) [0.001728s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(medimum) [0.001742s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_add_task_detail(large) [0.001209s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(no_cache) [0.001011s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(one) [0.001359s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(tiny) [0.001289s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(medimum) [0.001038s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_delete(large) [0.001447s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(no_cache) [0.001190s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_meta_update [0.042600s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(one) [0.001173s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(tiny) [0.001016s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(medimum) [0.000763s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_lazy_fetch(large) [0.000942s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(no_cache) [0.005234s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(one) [0.006337s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(tiny) [0.004404s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(medimum) [0.004752s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_logbook_save_retrieve_many(large) [0.004874s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(no_cache) [0.002361s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_save [0.034542s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(one) [0.003478s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(tiny) [0.002438s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(medimum) [0.003094s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_retry_detail_save_intention(large) [0.003818s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(no_cache) [0.003305s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(one) [0.001712s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(tiny) [0.002091s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(medimum) [0.003600s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_meta_update(large) [0.002163s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(no_cache) [0.001751s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(one) [0.002057s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(tiny) [0.002149s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(medimum) [0.001633s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_retry_type_(large) [0.001644s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_update_not_existing [0.032285s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(no_cache) [0.002088s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(one) [0.003762s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(tiny) [0.003271s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(medimum) [0.006203s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_save(large) [0.002669s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(no_cache) [0.001523s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(one) [0.001508s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(tiny) [0.002064s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(medimum) [0.001563s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_update_not_existing(large) [0.001513s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(no_cache) [0.002711s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(one) [0.002237s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(tiny) [0.002222s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(medimum) [0.001732s] ... ok 315s {0} taskflow.tests.unit.persistence.test_dir_persistence.DirPersistenceTest.test_task_detail_with_failure(large) [0.001654s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_bad_norms [0.000314s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_many_children_allowed [0.000297s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_del_root_not_allowed [0.000246s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ensure_linked_delete [0.000297s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ensure_path [0.000222s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive [0.000268s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_recursive_absolute [0.000234s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryFilesystemTest.test_ls_targeted_absolute [0.000226s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_flow_detail_save [0.000618s] ... ok 315s {1} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_with_failure [0.041679s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_add_flow_detail [0.000964s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_delete [0.000596s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_merge_flow_detail [0.000669s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_update_not_existing [0.002780s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_logbook_save_retrieve [0.000459s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_memory_backend_entry_point [0.000400s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_memory_backend_fetch_by_name [0.000293s] ... ok 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_retry_detail_save_with_task_failure [0.000924s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_lazy_fetch [0.002068s] ... ok 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_memory_persistence.MemoryPersistenceTest.test_task_detail_meta_update [0.000810s] ... ok 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_entrypoint ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_lazy_fetch ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_save ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_flow_detail_update_not_existing ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_add_flow_detail ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_merge_flow_detail ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_logbook_save_retrieve ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_retry_detail_save_intention ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_save ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.MysqlPersistenceTest.test_task_detail_with_failure ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_entrypoint ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_flow_detail_save ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_add_flow_detail ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_lazy_fetch ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_logbook_merge_flow_detail ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_retry_detail_save_intention ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_meta_update ... SKIPPED: postgres is not available 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_retry_type_ ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_save ... SKIPPED: postgres is not available 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.PostgresPersistenceTest.test_task_detail_with_failure ... SKIPPED: postgres is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.SQLBackendFetchingTest.test_mysql_persistence_entry_point ... SKIPPED: mysql is not available 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.SQLBackendFetchingTest.test_sqlite_persistence_entry_point [0.002067s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_merge_flow_detail [0.009025s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_save_retrieve [0.001955s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_save_retrieve_many [0.002640s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_retry_detail_save_intention [0.002261s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_retry_detail_save_with_task_failure [0.001905s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_save [0.001432s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_with_failure [0.002145s] ... ok 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_meta_update ... SKIPPED: zookeeper is not available 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_add_flow_detail ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_add_task_detail ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_delete ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_lazy_fetch ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_save_retrieve_many ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_retry_detail_save_with_task_failure ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_update_not_existing ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_with_failure ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_zk_persistence_entry_point ... SKIPPED: zookeeper is not available 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_argument_injection_rebind [0.005432s] ... ok 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_argument_injection_required [0.003837s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_arguments_missing [0.002174s] ... ok 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_bad_rebind_args_value [0.000825s] ... ok 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_bad_save_as_value [0.000525s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_derived_revert_args_required [0.006419s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_invalid_argument_name_map [0.003573s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_long_arg_name [0.004959s] ... ok 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_delete [0.048724s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_partial_arguments_mapping [0.004934s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_revert_rebound_args_required [0.001556s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_all_in_one [0.011059s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_as [0.007335s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 315s self.pid = os.fork() 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_merge_flow_detail [0.034002s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_argument_injection [0.023003s] ... ok 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_logbook_save_retrieve [0.018819s] ... ok 315s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 315s self.pid = os.fork() 315s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 315s self._exception_str = _exception_message(self._exc_info[1]) 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_argument_injection_rebind [0.022747s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 315s self.pid = os.fork() 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_retry_detail_save_with_task_failure [0.028526s] ... ok 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_argument_injection_required [0.025386s] ... ok 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_bad_rebind_args_value [0.000578s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_bad_save_as_value [0.000344s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_invalid_argument_name_list [0.001820s] ... ok 315s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 315s self.pid = os.fork() 315s {0} taskflow.tests.unit.persistence.test_sql_persistence.SqlitePersistenceTest.test_task_detail_retry_type_ [0.028310s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_lazy_fetch [0.002130s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_meta_update [0.001626s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_flow_detail_save [0.000839s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_add_flow_detail [0.000826s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_add_task_detail [0.001006s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_logbook_delete [0.000829s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_meta_update [0.001464s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_retry_type_ [0.001065s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_task_detail_update_not_existing [0.001150s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZakePersistenceTest.test_zk_persistence_entry_point [0.000632s] ... ok 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_lazy_fetch ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_save ... SKIPPED: zookeeper is not available 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_flow_detail_update_not_existing ... SKIPPED: zookeeper is not available 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_merge_flow_detail ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_logbook_save_retrieve ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_retry_detail_save_intention ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_meta_update ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_retry_type_ ... SKIPPED: zookeeper is not available 315s {0} taskflow.tests.unit.persistence.test_zk_persistence.ZkPersistenceTest.test_task_detail_save ... SKIPPED: zookeeper is not available 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_long_arg_name [0.024622s] ... ok 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_all_arguments_mapping [0.006149s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 315s self.pid = os.fork() 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_argument_injection [0.004004s] ... ok 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_arguments_passing [0.002716s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_invalid_argument_name_list [0.001872s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_revert_required_args_required [0.001480s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_dict [0.002352s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithEventletTest.test_save_several_values [0.002314s] ... ok 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_partial_arguments_mapping [0.024204s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 315s self.pid = os.fork() 315s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_revert_required_args_required [0.002013s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 315s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 315s self.pid = os.fork() 315s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_all_arguments_mapping [0.023285s] ... ok 315s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 315s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_arguments_missing [0.002039s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_dict [0.023875s] ... ok 316s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 316s self.pid = os.fork() 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 316s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 316s self.pid = os.fork() 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_arguments_passing [0.016256s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 316s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 316s self.pid = os.fork() 316s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 316s self._exception_str = _exception_message(self._exc_info[1]) 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_several_values [0.023826s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_all_arguments_mapping [0.005005s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_argument_injection [0.003090s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_argument_injection_required [0.002507s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_derived_revert_args_required [0.026349s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_arguments_missing [0.001845s] ... ok 316s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_bad_save_as_value [0.000444s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_invalid_argument_name_map [0.002361s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 316s self._exception_str = _exception_message(self._exc_info[1]) 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 316s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_revert_rebound_args_required [0.001818s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_derived_revert_args_required [0.004861s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_invalid_argument_name_map [0.001530s] ... ok 316s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 316s self.pid = os.fork() 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_long_arg_name [0.009908s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_revert_rebound_args_required [0.001613s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_revert_required_args_required [0.001568s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_several_values [0.002466s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_argument_injection_rebind [0.002314s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_all_in_one [0.022993s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_arguments_missing [0.001755s] ... ok 316s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 316s self.pid = os.fork() 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_arguments_passing [0.006082s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_invalid_argument_name_map [0.004168s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.LongArgNameTask==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithProcessTest.test_save_as [0.012533s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_argument_injection_rebind [0.002720s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_long_arg_name [0.002666s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_as [0.002002s] ... ok 316s {1} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_dict [0.002639s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_arguments_passing [0.003596s] ... ok 316s {1} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_bad_transition_raises [0.000732s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_bad_rebind_args_value [0.000572s] ... ok 316s {1} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_rerunning_allowed [0.000519s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {1} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_resuming_from_running [0.000326s] ... ok 316s {1} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_failure_state [0.000346s] ... ok 316s {1} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_retrying_state [0.000334s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_invalid_argument_name_list [0.001969s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_failure_state [0.000301s] ... ok 316s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_pending_state [0.000489s] ... ok 316s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_reverted_state [0.000230s] ... ok 316s {1} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_reverting_state [0.000324s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_partial_arguments_mapping [0.007427s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_all_in_one [0.002343s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiDict==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_as [0.002333s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.ParallelEngineWithThreadsTest.test_save_dict [0.002449s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_all_arguments_mapping [0.002655s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_argument_injection [0.002106s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_argument_injection_required [0.002160s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_bad_rebind_args_value [0.000393s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_bad_save_as_value [0.000454s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskRevertExtraArgs==1.0", creating one. 316s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 316s self._exception_str = _exception_message(self._exc_info[1]) 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_derived_revert_args_required [0.004229s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_invalid_argument_name_list [0.001428s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArgOneReturn==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_partial_arguments_mapping [0.003147s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiArg==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_revert_rebound_args_required [0.001519s] ... ok 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_revert_required_args_required [0.001425s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_all_in_one [0.002451s] ... ok 316s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.TaskMultiReturn==1.0", creating one. 316s {0} taskflow.tests.unit.test_arguments_passing.SerialEngineTest.test_save_several_values [0.002065s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_no_resuming_from_pending [0.000235s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckFlowTransitionTest.test_to_same_state [0.000213s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_pending_state [0.000258s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_reverted_state [0.000220s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_reverting_state [0.000214s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_running_state [0.000209s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckRetryTransitionTest.test_from_success_state [0.000214s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_running_state [0.000217s] ... ok 316s {0} taskflow.tests.unit.test_check_transition.CheckTaskTransitionTest.test_from_success_state [0.000212s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_connection(blocking) [0.001863s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_connection(nonblocking_many_thread) [0.001342s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_connection(nonblocking_one_thread) [0.000698s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_flowdetails_store(blocking) [0.004968s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_flowdetails_store(nonblocking_many_thread) [0.005092s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_flowdetails_store(nonblocking_one_thread) [0.004784s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_empty(blocking) [0.001044s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_empty(nonblocking_many_thread) [0.000986s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_empty(nonblocking_one_thread) [0.001136s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_max_dispatches(blocking) [0.004569s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_max_dispatches(nonblocking_many_thread) [0.004940s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run_max_dispatches(nonblocking_one_thread) [0.004394s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_combined_store(blocking) [0.111196s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_combined_store(nonblocking_many_thread) [0.006364s] ... ok 316s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 316s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_combined_store(nonblocking_one_thread) [0.006209s] ... ok 316s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 316s self._exception_str = _exception_message(self._exc_info[1]) 316s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=0d48a46d-0822-4332-a40d-1aef4af2593d, details={'flow_uuid': '08070009-38b7-45c9-b056-1e3e9cb4c621'}) 316s Traceback (most recent call last): 316s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 316s stage_func() 316s ~~~~~~~~~~^^ 316s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 166, in _run_engine 316s for _state in engine.run_iter(): 316s ~~~~~~~~~~~~~~~^^ 316s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 344, in run_iter 316s failure.Failure.reraise_if_any(er_failures) 316s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ 316s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 316s failures[0].reraise() 316s ~~~~~~~~~~~~~~~~~~~^^ 316s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 316s raise value 316s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 316s result = task.execute(**arguments) 316s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 227, in execute 316s raise RuntimeError('Woot!') 316s RuntimeError: Woot! 317s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_fail_run(blocking) [1.008597s] ... ok 317s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 317s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 317s self._exception_str = _exception_message(self._exc_info[1]) 317s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=f4d9e047-70fa-4e80-9d3b-98bbc1d5fce9, details={'flow_uuid': 'ec93b675-9377-4930-9d91-5dcfe6c2e7b5'}) 317s Traceback (most recent call last): 317s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 317s stage_func() 317s ~~~~~~~~~~^^ 317s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 166, in _run_engine 317s for _state in engine.run_iter(): 317s ~~~~~~~~~~~~~~~^^ 317s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 344, in run_iter 317s failure.Failure.reraise_if_any(er_failures) 317s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ 317s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 317s failures[0].reraise() 317s ~~~~~~~~~~~~~~~~~~~^^ 317s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 317s raise value 317s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 317s result = task.execute(**arguments) 317s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 227, in execute 317s raise RuntimeError('Woot!') 317s RuntimeError: Woot! 318s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 318s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_stop_aborts_engine(blocking) [2.006274s] ... ok 318s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 318s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_fail_run(nonblocking_many_thread) [1.010751s] ... ok 318s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 318s self._exception_str = _exception_message(self._exc_info[1]) 318s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=44c9d401-81ac-47c2-a013-65ba203ac492, details={'flow_uuid': 'c9429d3f-c20e-48e8-97c7-ce8746db5e84'}) 318s Traceback (most recent call last): 318s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 318s stage_func() 318s ~~~~~~~~~~^^ 318s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 166, in _run_engine 318s for _state in engine.run_iter(): 318s ~~~~~~~~~~~~~~~^^ 318s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 344, in run_iter 318s failure.Failure.reraise_if_any(er_failures) 318s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ 318s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 318s failures[0].reraise() 318s ~~~~~~~~~~~~~~~~~~~^^ 318s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 318s raise value 318s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 318s result = task.execute(**arguments) 318s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 227, in execute 318s raise RuntimeError('Woot!') 318s RuntimeError: Woot! 319s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 319s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_fail_run(nonblocking_one_thread) [1.009607s] ... ok 319s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 319s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_job_store(blocking) [0.005725s] ... ok 319s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 319s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_job_store(nonblocking_many_thread) [0.005572s] ... ok 319s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 319s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_job_store(nonblocking_one_thread) [0.004811s] ... ok 319s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=e35f40fb-e7fd-4f67-84b3-f3d3cd751cef, details={'flow_uuid': '5e211b54-09d7-46f8-b7ab-201451d227ca'}) 319s Traceback (most recent call last): 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 319s stage_func() 319s ~~~~~~~~~~^^ 319s File "/usr/lib/python3/dist-packages/fasteners/lock.py", line 226, in wrapper 319s return f(self, *args, **kwargs) 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 84, in wrapper 319s return meth(self, *args, **kwargs) 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 434, in validate 319s raise exc.MissingDependencies(self._flow, 319s sorted(missing), 319s cause=last_cause) 319s taskflow.exceptions.MissingDependencies: '"linear_flow.Flow: test(len=1)"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s MissingDependencies: 'revert' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s MissingDependencies: 'execute' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_missing_store(blocking) [0.004361s] ... ok 319s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_missing_store(nonblocking_many_thread) [0.005103s] ... ok 319s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_missing_store(nonblocking_one_thread) [0.004663s] ... ok 319s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 319s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=0e669b4e-1314-45ed-972d-495e1326f44e, details={'flow_uuid': 'bd4283f7-b37e-49ef-b736-1a66c5a88777'}) 319s Traceback (most recent call last): 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 319s stage_func() 319s ~~~~~~~~~~^^ 319s File "/usr/lib/python3/dist-packages/fasteners/lock.py", line 226, in wrapper 319s return f(self, *args, **kwargs) 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 84, in wrapper 319s return meth(self, *args, **kwargs) 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 434, in validate 319s raise exc.MissingDependencies(self._flow, 319s sorted(missing), 319s cause=last_cause) 319s taskflow.exceptions.MissingDependencies: '"linear_flow.Flow: test(len=1)"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s MissingDependencies: 'revert' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s MissingDependencies: 'execute' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 319s WARNING [taskflow.conductors.backends.impl_executor] Job execution failed (consumption proceeding): ZookeeperJob: poke (priority=JobPriority.NORMAL, uuid=8dcd342f-824c-42f6-af64-cae765d78909, details={'flow_uuid': 'd7b2c0e6-6bdc-47a5-bf5a-46d9f07267c1'}) 319s Traceback (most recent call last): 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/conductors/backends/impl_executor.py", line 180, in _dispatch_job 319s stage_func() 319s ~~~~~~~~~~^^ 319s File "/usr/lib/python3/dist-packages/fasteners/lock.py", line 226, in wrapper 319s return f(self, *args, **kwargs) 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 84, in wrapper 319s return meth(self, *args, **kwargs) 319s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 434, in validate 319s raise exc.MissingDependencies(self._flow, 319s sorted(missing), 319s cause=last_cause) 319s taskflow.exceptions.MissingDependencies: '"linear_flow.Flow: test(len=1)"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s MissingDependencies: 'revert' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s MissingDependencies: 'execute' method on '"task1==1.0"' requires ['x', 'y', 'z'] but no other entity produces said requirements 319s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 320s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 320s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_stop_aborts_engine(nonblocking_many_thread) [2.008570s] ... ok 320s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 320s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run(blocking) [1.005711s] ... ok 321s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 321s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run(nonblocking_many_thread) [1.007232s] ... ok 322s {0} taskflow.tests.unit.test_conductors.ManyConductorTest.test_stop_aborts_engine(nonblocking_one_thread) [2.008276s] ... ok 322s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 322s {0} taskflow.tests.unit.test_conductors.NonBlockingExecutorTest.test_bad_wait_timeout [0.000737s] ... ok 322s {0} taskflow.tests.unit.test_deciders.TestDeciders.test_bad_pick_widest [0.000575s] ... ok 322s {0} taskflow.tests.unit.test_deciders.TestDeciders.test_bad_translate [0.000755s] ... ok 322s {0} taskflow.tests.unit.test_deciders.TestDeciders.test_translate [0.000318s] ... ok 322s {0} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_options_empty [0.000750s] ... ok 322s WARNING [stevedore.named] Could not load not_really_any_engine 322s {0} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_unknown_load [0.000648s] ... ok 322s {0} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_factory_in_meta [0.000497s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 322s {0} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_importable_function [0.000446s] ... ok 322s {0} taskflow.tests.unit.test_engine_helpers.LoadFromFactoryTestCase.test_non_reimportable [0.000400s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_completed_reset_run_again [0.011605s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_failed_reset_run_again [0.018626s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_failing_task_with_flow_notifications [0.010430s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_all_with_a_single_result [0.003274s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_all_with_two_results [0.002691s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_with_two_results [0.002578s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_flow_failures_are_passed_to_revert [0.005718s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional [0.007265s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_ignore_reset [0.010210s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_jumps_across_2 [0.005701s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_diamond_ignored [0.006871s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_four_tasks_added_separately [0.008442s] ... ok 322s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {1} taskflow.tests.unit.test_conductors.ManyConductorTest.test_run(nonblocking_one_thread) [1.006397s] ... ok 322s {1} taskflow.tests.unit.test_conductors.NonBlockingExecutorTest.test_bad_factory [0.000528s] ... ok 322s {1} taskflow.tests.unit.test_deciders.TestDeciders.test_pick_widest [0.000230s] ... ok 322s {1} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_default_load [0.000510s] ... ok 322s {1} taskflow.tests.unit.test_engine_helpers.EngineLoadingTestCase.test_options_passthrough [0.000376s] ... ok 322s {1} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_factory_with_arg [0.000597s] ... ok 322s {1} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_arg_factory [0.001052s] ... ok 322s {1} taskflow.tests.unit.test_engine_helpers.FlowFromDetailTestCase.test_no_meta [0.000342s] ... ok 322s {1} taskflow.tests.unit.test_engine_helpers.LoadFromFactoryTestCase.test_it_works [0.001443s] ... ok 322s {1} taskflow.tests.unit.test_engine_helpers.LoadFromFactoryTestCase.test_it_works_by_name [0.000684s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 322s result = task.revert(**arguments) 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 322s raise RuntimeError('Gotcha!') 322s RuntimeError: Gotcha! 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_four_tasks_revert [0.012543s] ... ok 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_correctly_reverts_children [0.011376s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_four_tasks_revert_failure [0.010853s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_one_task [0.002579s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 173de47c-3acc-4741-94ff-d7ea6a31cd97) 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_two_tasks [0.003926s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_invalid_flow_raises [0.000922s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_overlap_parent_expected_result [0.005105s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_expected_optional_multiplers [0.016859s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_flow_two_tasks [0.003889s] ... ok 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_fetch_with_a_single_result [0.003125s] ... ok 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 322s result = task.revert(**arguments) 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 322s raise RuntimeError('Gotcha!') 322s RuntimeError: Gotcha! 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_revert_exception_is_reraised [0.009621s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_not_run_task_is_not_reverted [0.005591s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_history [0.015312s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_conditional_jumps_across [0.005766s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_provided [0.007740s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_two_independent_tasks [0.004146s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.005680s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id c10363a0-ba8e-4923-aced-07ffb8d83b24) 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 322s result = task.revert(**arguments) 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 322s raise RuntimeError('Gotcha!') 322s RuntimeError: Gotcha! 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_invalid_flow_raises_from_run [0.001088s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_raises_for_unordered_in_linear [0.010632s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_many_results_storage_provided_visible_to [0.005373s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_removes_data [0.009343s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_many_results_visible_to [0.005382s] ... ok 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_missing_deps_deep [0.001856s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_capture_task_notifications [0.006045s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_nested_graph_flows [0.001513s] ... ok 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_nasty_failing_task_exception_reraised [0.006037s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 322s result = task.revert(**arguments) 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 322s raise RuntimeError('Gotcha!') 322s RuntimeError: Gotcha! 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_jump_over_atom [0.005425s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 322s result = task.revert(**arguments) 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 322s raise RuntimeError('Gotcha!') 322s RuntimeError: Gotcha! 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_nasty_revert [0.007643s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_jump_over_bad_atom [0.004264s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_overlap_parent_sibling_expected_result [0.005609s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_revert [0.008395s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_overlap_sibling_expected_result [0.005032s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_flow_one_task [0.002788s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_flow_with_priority [0.012626s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_parallel_revert [0.008363s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_graph_flow_decider_various_depths [0.026501s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_task_with_flow_notifications [0.002758s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 322s result = task.revert(**arguments) 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 322s raise RuntimeError('Gotcha!') 322s RuntimeError: Gotcha! 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_exception_is_reraised [0.007633s] ... ok 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 322s try_suspend = yield new_state 322s ^^^^^^^^^^^^^^^ 322s OSError: I Broke 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_interrupted_externally [0.004863s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_iter_suspend_resume [0.005132s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_nested_blocks [0.003841s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_ok_for_linear_in_unordered [0.010090s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_one_task [0.002552s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_two_tasks [0.006466s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_ok_for_unordered_in_linear [0.012320s] ... ok 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_two_tasks_iter [0.005097s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 322s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 322s self._exception_str = _exception_message(self._exc_info[1]) 322s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 322s Traceback (most recent call last): 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 322s failure.Failure.reraise_if_any(memory.failures) 322s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 322s failures[0].reraise() 322s ~~~~~~~~~~~~~~~~~~~^^ 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 322s raise value 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 322s result = task.revert(**arguments) 322s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 322s raise RuntimeError('Gotcha!') 322s RuntimeError: Gotcha! 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_revert_raises_for_linear_in_unordered [0.009695s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_graph_flow [0.001300s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_linear_flow [0.001148s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_suspended_reset_run_again [0.012408s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_empty_unordered_flow [0.001364s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_task_can_update_value [0.003096s] ... ok 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_run_task_as_flow [0.002890s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_task_graph_property [0.001207s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 322s {0} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_task_graph_property_for_one_task [0.001453s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 322s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 322s {1} taskflow.tests.unit.test_engines.ParallelEngineWithEventletTest.test_sequential_flow_two_tasks_with_resumption [0.003758s] ... ok 322s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 322s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 322s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 322s self.pid = os.fork() 322s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 322s self.pid = os.fork() 323s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 323s self._exception_str = _exception_message(self._exc_info[1]) 324s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_completed_reset_run_again [1.563548s] ... ok 324s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_correct_load [0.001687s] ... ok 324s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id 8e2e2500-aec1-412c-bac4-9f0f45a640e9) 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 324s self._exception_str = _exception_message(self._exc_info[1]) 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_correctly_reverts_children [1.570026s] ... ok 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 324s self.pid = os.fork() 324s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 324s self.pid = os.fork() 324s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_all_with_two_results [0.032327s] ... ok 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_with_two_results [0.024225s] ... ok 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 324s self.pid = os.fork() 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 324s self.pid = os.fork() 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_custom_notifications_proxied [0.190491s] ... ok 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 324s self.pid = os.fork() 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 324s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_expected_optional_multiplers [0.138668s] ... ok 324s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 324s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 324s self.pid = os.fork() 325s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 325s self._exception_str = _exception_message(self._exc_info[1]) 325s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_ignore_reset [1.328062s] ... ok 325s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 325s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 325s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 325s self.pid = os.fork() 325s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 325s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 325s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_jumps_across_2 [0.540165s] ... ok 325s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 325s self.pid = os.fork() 326s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 326s self._exception_str = _exception_message(self._exc_info[1]) 326s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 326s _exception_message(ei1[1]) == _exception_message(ei2[1]), 327s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_four_tasks_added_separately [1.037586s] ... ok 327s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 327s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 327s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 327s self.pid = os.fork() 327s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_failed_reset_run_again [3.153593s] ... ok 327s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 327s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 327s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 327s self.pid = os.fork() 327s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 327s self._exception_str = _exception_message(self._exc_info[1]) 327s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 327s self._exception_str = _exception_message(self._exc_info[1]) 328s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 328s self._exception_str = _exception_message(self._exc_info[1]) 328s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 328s self._exception_str = _exception_message(self._exc_info[1]) 328s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_four_tasks_revert [1.539642s] ... ok 328s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 328s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 328s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 328s self.pid = os.fork() 328s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_failing_task_with_flow_notifications [1.059601s] ... ok 328s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 328s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 328s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 328s self.pid = os.fork() 328s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_all_with_a_single_result [0.025909s] ... ok 328s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 328s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 328s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 328s self.pid = os.fork() 328s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_fetch_with_a_single_result [0.023988s] ... ok 328s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 328s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 328s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 328s self.pid = os.fork() 329s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 329s self._exception_str = _exception_message(self._exc_info[1]) 329s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional [0.532905s] ... ok 329s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 329s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 329s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 329s self.pid = os.fork() 329s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 329s Traceback (most recent call last): 329s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 329s failure.Failure.reraise_if_any(memory.failures) 329s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 329s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 329s failures[0].reraise() 329s ~~~~~~~~~~~~~~~~~~~^^ 329s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 329s raise value 329s RuntimeError: Gotcha! 329s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 329s self._exception_str = _exception_message(self._exc_info[1]) 329s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_four_tasks_revert_failure [0.819713s] ... ok 329s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 329s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 329s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 329s self.pid = os.fork() 329s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_one_task [0.270717s] ... ok 329s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 329s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 329s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 329s self.pid = os.fork() 329s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 329s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 329s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_two_independent_tasks [0.288084s] ... ok 329s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 329s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 329s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 329s self.pid = os.fork() 330s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_history [1.100199s] ... ok 330s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 330s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 330s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 330s self.pid = os.fork() 330s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_two_tasks [0.550994s] ... ok 330s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 330s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 330s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 330s self.pid = os.fork() 330s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_just_custom_notifications_proxied [0.180759s] ... ok 330s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 330s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 330s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 330s self.pid = os.fork() 330s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 330s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_many_results_storage_provided_visible_to [0.025852s] ... ok 330s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 330s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 330s self.pid = os.fork() 330s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 330s self._exception_str = _exception_message(self._exc_info[1]) 330s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 330s self._exception_str = _exception_message(self._exc_info[1]) 330s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_nasty_failing_task_exception_reraised [0.024697s] ... ok 330s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 330s Traceback (most recent call last): 330s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 330s failure.Failure.reraise_if_any(memory.failures) 330s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 330s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 330s failures[0].reraise() 330s ~~~~~~~~~~~~~~~~~~~^^ 330s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 330s raise value 330s RuntimeError: Gotcha! 330s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 330s self._exception_str = _exception_message(self._exc_info[1]) 330s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 330s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 330s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 330s self.pid = os.fork() 330s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_conditional_jumps_across [0.540257s] ... ok 330s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 330s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 330s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 330s self.pid = os.fork() 330s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 330s self._exception_str = _exception_message(self._exc_info[1]) 331s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 331s Traceback (most recent call last): 331s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 331s failure.Failure.reraise_if_any(memory.failures) 331s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 331s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 331s failures[0].reraise() 331s ~~~~~~~~~~~~~~~~~~~^^ 331s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 331s raise value 331s RuntimeError: Gotcha! 331s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_nasty_revert [0.545660s] ... ok 331s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 331s self._exception_str = _exception_message(self._exc_info[1]) 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_diamond_ignored [0.527418s] ... ok 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.026216s] ... ok 331s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 5c8ef63d-3a95-45e4-82df-26af61e527b5) 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_invalid_flow_raises [0.001515s] ... ok 331s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 0b0bbb8f-41cd-4c10-9f05-f36ad83df04e) 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_invalid_flow_raises_from_run [0.000829s] ... ok 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_many_results_visible_to [0.023789s] ... ok 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_missing_deps_deep [0.002827s] ... ok 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 331s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_overlap_parent_expected_result [0.291822s] ... ok 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_overlap_parent_sibling_expected_result [0.285642s] ... ok 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 331s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_flow_one_task [0.279288s] ... ok 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 331s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_overlap_sibling_expected_result [0.278972s] ... ok 331s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 331s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 331s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 331s self.pid = os.fork() 332s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 332s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_flow_two_tasks [0.300302s] ... ok 332s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 332s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 332s self.pid = os.fork() 332s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 332s self._exception_str = _exception_message(self._exc_info[1]) 332s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 332s self._exception_str = _exception_message(self._exc_info[1]) 332s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_revert [0.555654s] ... ok 332s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 332s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 332s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 332s self.pid = os.fork() 332s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 332s self._exception_str = _exception_message(self._exc_info[1]) 333s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 333s Traceback (most recent call last): 333s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 333s failure.Failure.reraise_if_any(memory.failures) 333s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 333s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 333s failures[0].reraise() 333s ~~~~~~~~~~~~~~~~~~~^^ 333s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 333s raise value 333s RuntimeError: Gotcha! 333s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_revert_exception_is_reraised [0.552911s] ... ok 333s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 333s self._exception_str = _exception_message(self._exc_info[1]) 333s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 333s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 333s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 333s self.pid = os.fork() 333s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_parallel_flow_with_priority [1.318629s] ... ok 333s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 333s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 333s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 333s self.pid = os.fork() 333s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 333s self._exception_str = _exception_message(self._exc_info[1]) 333s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 333s self._exception_str = _exception_message(self._exc_info[1]) 333s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 333s Traceback (most recent call last): 333s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 333s failure.Failure.reraise_if_any(memory.failures) 333s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 333s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 333s failures[0].reraise() 333s ~~~~~~~~~~~~~~~~~~~^^ 333s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 333s raise value 333s RuntimeError: Gotcha! 333s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 333s self._exception_str = _exception_message(self._exc_info[1]) 333s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_exception_is_reraised [0.568948s] ... ok 333s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 333s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 333s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 333s self.pid = os.fork() 334s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 334s Traceback (most recent call last): 334s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 334s failure.Failure.reraise_if_any(memory.failures) 334s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 334s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 334s failures[0].reraise() 334s ~~~~~~~~~~~~~~~~~~~^^ 334s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 334s raise value 334s RuntimeError: Gotcha! 334s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 334s self._exception_str = _exception_message(self._exc_info[1]) 334s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_raises_for_unordered_in_linear [0.788642s] ... ok 334s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 334s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 334s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_nested_graph_flows [0.012526s] ... ok 334s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 334s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 334s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_unordered_flow [0.011443s] ... ok 334s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 334s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 334s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 334s self.pid = os.fork() 334s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_jump_over_atom [0.024206s] ... ok 334s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 334s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 334s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 334s self.pid = os.fork() 334s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 334s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_jump_over_bad_atom [0.024902s] ... ok 334s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 334s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 334s self.pid = os.fork() 334s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 334s self._exception_str = _exception_message(self._exc_info[1]) 334s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 334s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 334s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 334s self._exception_str = _exception_message(self._exc_info[1]) 334s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_not_run_task_is_not_reverted [0.648225s] ... ok 334s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 334s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 334s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 334s self.pid = os.fork() 335s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 335s self._exception_str = _exception_message(self._exc_info[1]) 335s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 335s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 335s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 335s self._exception_str = _exception_message(self._exc_info[1]) 335s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 335s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 335s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_ok_for_linear_in_unordered [1.040006s] ... ok 335s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 335s self.pid = os.fork() 335s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 335s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 336s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_various_depths [2.174957s] ... ok 336s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 336s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 336s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 336s self.pid = os.fork() 336s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 336s self._exception_str = _exception_message(self._exc_info[1]) 336s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_task_as_flow [0.278792s] ... ok 336s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 336s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 336s self.pid = os.fork() 337s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_iter_suspend_resume [0.576248s] ... ok 337s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 337s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 337s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 337s self._exception_str = _exception_message(self._exc_info[1]) 337s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_ok_for_unordered_in_linear [1.601881s] ... ok 337s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 337s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 337s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 337s self.pid = os.fork() 337s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 337s self.pid = os.fork() 337s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 337s self._exception_str = _exception_message(self._exc_info[1]) 337s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_nested_blocks [0.542730s] ... ok 337s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 337s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 337s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 337s self.pid = os.fork() 337s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_provided [0.555938s] ... ok 337s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 337s self._exception_str = _exception_message(self._exc_info[1]) 337s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 337s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 337s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 337s self.pid = os.fork() 337s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 337s self._exception_str = _exception_message(self._exc_info[1]) 337s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 337s self._exception_str = _exception_message(self._exc_info[1]) 338s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 338s Traceback (most recent call last): 338s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 338s failure.Failure.reraise_if_any(memory.failures) 338s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 338s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 338s failures[0].reraise() 338s ~~~~~~~~~~~~~~~~~~~^^ 338s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 338s raise value 338s RuntimeError: Gotcha! 338s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_two_tasks [0.540223s] ... ok 338s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 338s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 338s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 338s self.pid = os.fork() 338s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 338s self._exception_str = _exception_message(self._exc_info[1]) 338s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_raises_for_linear_in_unordered [0.533775s] ... ok 338s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 338s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 338s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 338s self.pid = os.fork() 338s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 338s self._exception_str = _exception_message(self._exc_info[1]) 338s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_two_tasks_iter [0.533466s] ... ok 338s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 338s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 338s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 338s self.pid = os.fork() 338s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 338s self._exception_str = _exception_message(self._exc_info[1]) 338s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_revert_removes_data [0.554083s] ... ok 338s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 338s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 338s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 338s self.pid = os.fork() 339s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_capture_task_notifications [0.744068s] ... ok 339s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 339s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 339s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_graph_flow [0.012833s] ... ok 339s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 339s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 339s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_empty_linear_flow [0.011664s] ... ok 339s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 339s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 339s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 339s self.pid = os.fork() 339s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 339s self._exception_str = _exception_message(self._exc_info[1]) 340s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_graph_flow_decider_revert [0.540377s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 340s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 340s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 340s self.pid = os.fork() 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_suspended_reset_run_again [1.576193s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 340s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 340s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 340s self.pid = os.fork() 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_task_can_update_value [0.024529s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_run_task_with_flow_notifications [0.274820s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 340s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 340s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 340s self.pid = os.fork() 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_failed_reset_run_again [0.022086s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_all_with_two_results [0.003084s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional [0.005706s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_history [0.014536s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_diamond_ignored [0.008144s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_four_tasks_revert [0.011086s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 340s result = task.revert(**arguments) 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 340s raise RuntimeError('Gotcha!') 340s RuntimeError: Gotcha! 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_four_tasks_revert_failure [0.010269s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_two_independent_tasks [0.003932s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.005719s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 85ef16eb-7121-4d15-a29f-a3f2fb257ed3) 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 340s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id dcca5dc3-9f47-4be9-8134-58d279d8af6f) 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_invalid_flow_raises [0.000723s] ... ok 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_invalid_flow_raises_from_run [0.000681s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_many_results_visible_to [0.005512s] ... ok 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_missing_deps_deep [0.001646s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_overlap_parent_expected_result [0.005484s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_overlap_sibling_expected_result [0.009241s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_flow_two_tasks [0.005292s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 340s result = task.revert(**arguments) 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 340s raise RuntimeError('Gotcha!') 340s RuntimeError: Gotcha! 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_exception_is_reraised [0.008476s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_ok_for_unordered_in_linear [0.013230s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 340s result = task.revert(**arguments) 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 340s raise RuntimeError('Gotcha!') 340s RuntimeError: Gotcha! 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_raises_for_linear_in_unordered [0.009091s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_capture_task_notifications [0.005402s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_linear_flow [0.001209s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_jump_over_atom [0.004372s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_jump_over_bad_atom [0.004599s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_various_depths [0.025944s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 340s try_suspend = yield new_state 340s ^^^^^^^^^^^^^^^ 340s OSError: I Broke 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_interrupted_externally [0.005985s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_two_tasks_iter [0.004411s] ... ok 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_suspended_reset_run_again [0.012650s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_task_graph_property [0.001218s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_task_graph_property_for_one_task [0.000792s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 340s {0} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_using_common_executor [0.001369s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id e571f656-c5f0-4bd0-9349-7df3e9559f4c) 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_correct_load [0.000952s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_correctly_reverts_children [0.008641s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_all_with_a_single_result [0.002196s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_with_a_single_result [0.002506s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_with_two_results [0.002544s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_flow_failures_are_passed_to_revert [0.005324s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_history [0.012192s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_jumps_across [0.005213s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_jumps_across_2 [0.006473s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_diamond_ignored [0.005422s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_four_tasks_added_separately [0.006380s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 340s result = task.revert(**arguments) 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 340s raise RuntimeError('Gotcha!') 340s RuntimeError: Gotcha! 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_four_tasks_revert_failure [0.008198s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_one_task [0.002750s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 5968b3ff-62b7-4b6f-a623-9f1b64d68d93) 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_two_independent_tasks [0.003795s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 18674265-e8a2-440a-893b-616b4dd9892b) 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_invalid_flow_raises [0.000755s] ... ok 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_invalid_flow_raises_from_run [0.000644s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_many_results_storage_provided_visible_to [0.004516s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_many_results_visible_to [0.004558s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 340s result = task.revert(**arguments) 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 340s raise RuntimeError('Gotcha!') 340s RuntimeError: Gotcha! 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_nasty_failing_task_exception_reraised [0.004684s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 340s result = task.revert(**arguments) 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 340s raise RuntimeError('Gotcha!') 340s RuntimeError: Gotcha! 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_nasty_revert [0.006561s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_overlap_parent_expected_result [0.004414s] ... ok 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_flow_with_priority [0.011942s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_revert [0.007551s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 340s result = task.revert(**arguments) 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 340s raise RuntimeError('Gotcha!') 340s RuntimeError: Gotcha! 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_revert_exception_is_reraised [0.008143s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_ok_for_linear_in_unordered [0.009067s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_ok_for_unordered_in_linear [0.010930s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_capture_task_notifications [0.004210s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_graph_flow [0.001562s] ... ok 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_unordered_flow [0.001073s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_jump_over_atom [0.004045s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_jump_over_bad_atom [0.004160s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_revert [0.006348s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_task_as_flow [0.002259s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 340s try_suspend = yield new_state 340s ^^^^^^^^^^^^^^^ 340s OSError: I Broke 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_interrupted_externally [0.004703s] ... ok 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_iter_suspend_resume [0.004393s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id 3de9d915-e240-4095-b559-7613986316cc) 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_one_task [0.002370s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_singlethreaded_is_the_default [0.000390s] ... ok 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_task_can_update_value [0.002634s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 340s {0} taskflow.tests.unit.test_engines.SerialEngineTest.test_task_graph_property [0.001035s] ... ok 340s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 340s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 340s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id b1e66de4-8107-4afa-a6c0-b30a896bc6da) 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 340s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_correct_load [0.020779s] ... ok 340s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 340s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 340s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 340s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 340s self._exception_str = _exception_message(self._exc_info[1]) 340s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 340s Traceback (most recent call last): 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 340s failure.Failure.reraise_if_any(memory.failures) 340s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 340s failures[0].reraise() 340s ~~~~~~~~~~~~~~~~~~~^^ 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 340s raise value 340s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 340s try_suspend = yield new_state 340s ^^^^^^^^^^^^^^^ 340s OSError: I Broke 340s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_interrupted_externally [0.538845s] ... ok 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 340s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 340s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 340s self.pid = os.fork() 340s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_correctly_reverts_children [0.153022s] ... ok 340s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 340s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 341s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_one_task [0.288091s] ... ok 341s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 341s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 341s self.pid = os.fork() 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_expected_optional_multiplers [0.293721s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 341s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 341s self._exception_str = _exception_message(self._exc_info[1]) 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_failing_task_with_flow_notifications [0.148723s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_all_with_two_results [0.054213s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 341s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_sequential_flow_two_tasks_with_resumption [0.284087s] ... ok 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 341s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 341s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_task_graph_property [0.001870s] ... ok 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 341s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 341s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_task_graph_property_for_one_task [0.001122s] ... ok 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 341s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_with_a_single_result [0.060786s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 341s self.pid = os.fork() 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional [0.065388s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_jumps_across [0.065652s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_jumps_across_2 [0.083178s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 341s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 341s self._exception_str = _exception_message(self._exc_info[1]) 341s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_four_tasks_revert [0.255583s] ... ok 341s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 341s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-nasty(len=3)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 342s raise exc.WrappedFailure([self]) 342s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_four_tasks_revert_failure [0.114735s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_one_task [0.072357s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-2(len=2)", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_two_independent_tasks [0.074213s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_two_tasks [0.066273s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id 28429d8f-5880-44e6-9822-17d67ff830d4) 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_invalid_flow_raises [0.011558s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No name provided for flow i am string, not task/flow, sorry (id fdc82231-d349-44d1-afec-6d27acfa2e33) 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow i am string, not task/flow, sorry, creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_invalid_flow_raises_from_run [0.011285s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_many_results_storage_provided_visible_to [0.076477s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_many_results_visible_to [0.077526s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_missing_deps_deep [0.011370s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithProcessTest.test_update_progress_notifications_proxied [1.023285s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_completed_reset_run_again [0.017952s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No name provided for flow (id 60435bd3-a6e7-410d-ae18-e1e4fd7265b2) 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow , creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_correct_load [0.001168s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root-1(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_correctly_reverts_children [0.013821s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_overlap_parent_sibling_expected_result [0.077988s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_expected_optional_multiplers [0.026783s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_failing_task_with_flow_notifications [0.013257s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_all_with_a_single_result [0.002628s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_with_a_single_result [0.002658s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_fetch_with_two_results [0.002789s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_flow_failures_are_passed_to_revert [0.007511s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_ignore_reset [0.015543s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: main-work(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_jumps_across [0.007832s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_conditional_jumps_across_2 [0.006395s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_four_tasks_added_separately [0.013406s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_one_task [0.002849s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_graph_flow_two_tasks [0.004437s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_many_results_storage_provided_visible_to [0.005409s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 342s raise value 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 342s result = task.revert(**arguments) 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 342s raise RuntimeError('Gotcha!') 342s RuntimeError: Gotcha! 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_nasty_failing_task_exception_reraised [0.005908s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 342s raise value 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 342s result = task.revert(**arguments) 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 342s raise RuntimeError('Gotcha!') 342s RuntimeError: Gotcha! 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_nasty_revert [0.007584s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_overlap_parent_sibling_expected_result [0.005140s] ... ok 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_flow_with_priority [0.112379s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_flow_one_task [0.003116s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=10)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_flow_with_priority [0.013603s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-r-r-l(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_revert [0.009761s] ... ok 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 342s raise value 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 342s result = task.revert(**arguments) 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 342s raise RuntimeError('Gotcha!') 342s RuntimeError: Gotcha! 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_parallel_revert_exception_is_reraised [0.012006s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_not_run_task_is_not_reverted [0.005594s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_ok_for_linear_in_unordered [0.010111s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_provided [0.012808s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 342s raise value 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 342s result = task.revert(**arguments) 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 342s raise RuntimeError('Gotcha!') 342s RuntimeError: Gotcha! 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_raises_for_unordered_in_linear [0.012553s] ... ok 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_revert_removes_data [0.009510s] ... ok 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 342s raise exc.WrappedFailure([self]) 342s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_graph_flow [0.001261s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_nested_graph_flows [0.001232s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_empty_unordered_flow [0.001339s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_graph_flow_decider_revert [0.008087s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_revert_exception_is_reraised [0.104747s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_task_as_flow [0.003182s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_run_task_with_flow_notifications [0.003322s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_iter_suspend_resume [0.005460s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_nested_blocks [0.006735s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_one_task [0.002907s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_two_tasks [0.004319s] ... ok 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_sequential_flow_two_tasks_with_resumption [0.003235s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.ParallelEngineWithThreadsTest.test_task_can_update_value [0.003728s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_completed_reset_run_again [0.009712s] ... ok 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_expected_optional_multiplers [0.014828s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 342s raise exc.WrappedFailure([self]) 342s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_failed_reset_run_again [0.022775s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "fail==1.0", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_exception_is_reraised [0.089646s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_failing_task_with_flow_notifications [0.012212s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_fetch_all_with_two_results [0.008090s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional [0.007801s] ... ok 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_conditional_ignore_reset [0.016872s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4-failing(len=4)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_four_tasks_revert [0.020061s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1-1(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_two_tasks [0.004166s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.009748s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: missing-many(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_missing_deps_deep [0.002682s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_overlap_parent_sibling_expected_result [0.005843s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_overlap_sibling_expected_result [0.005248s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_flow_one_task [0.002821s] ... ok 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_parallel_flow_two_tasks [0.003992s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-1(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 342s Traceback (most recent call last): 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 342s failure.Failure.reraise_if_any(memory.failures) 342s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 342s failures[0].reraise() 342s ~~~~~~~~~~~~~~~~~~~^^ 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 342s raise value 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 342s result = task.revert(**arguments) 342s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 342s raise RuntimeError('Gotcha!') 342s RuntimeError: Gotcha! 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_exception_is_reraised [0.007609s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_not_run_task_is_not_reverted [0.005378s] ... ok 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 342s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_ok_for_linear_in_unordered [0.110285s] ... ok 342s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 342s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 342s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_provided [0.006393s] ... ok 342s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 342s self._exception_str = _exception_message(self._exc_info[1]) 343s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 343s Traceback (most recent call last): 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 343s failure.Failure.reraise_if_any(memory.failures) 343s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 343s failures[0].reraise() 343s ~~~~~~~~~~~~~~~~~~~^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 343s raise value 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 343s result = task.revert(**arguments) 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 343s raise RuntimeError('Gotcha!') 343s RuntimeError: Gotcha! 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_raises_for_linear_in_unordered [0.009081s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 343s Traceback (most recent call last): 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 343s failure.Failure.reraise_if_any(memory.failures) 343s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 343s failures[0].reraise() 343s ~~~~~~~~~~~~~~~~~~~^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 343s raise value 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 343s result = task.revert(**arguments) 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 343s raise RuntimeError('Gotcha!') 343s RuntimeError: Gotcha! 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_raises_for_unordered_in_linear [0.010493s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_revert_removes_data [0.011906s] ... ok 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_linear_flow [0.002316s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_empty_nested_graph_flows [0.001584s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_graph_flow_decider_various_depths [0.027784s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_run_task_with_flow_notifications [0.002694s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_nested_blocks [0.004747s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_two_tasks [0.005397s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_two_tasks_iter [0.004965s] ... ok 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_sequential_flow_two_tasks_with_resumption [0.004466s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_suspended_reset_run_again [0.012054s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 343s {1} taskflow.tests.unit.test_engines.SerialEngineTest.test_task_graph_property_for_one_task [0.000976s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_ok_for_unordered_in_linear [0.161348s] ... ok 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_provided [0.090932s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-root(len=2)", creating one. 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 343s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_completed_reset_run_again [0.209587s] ... ok 343s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 343s Traceback (most recent call last): 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 343s failure.Failure.reraise_if_any(memory.failures) 343s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 343s failures[0].reraise() 343s ~~~~~~~~~~~~~~~~~~~^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 343s raise exc.WrappedFailure([self]) 343s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_raises_for_linear_in_unordered [0.088423s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=0)", creating one. 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_graph_flow [0.025579s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_linear_flow [0.023707s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_jump_over_atom [0.072843s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_revert [0.090389s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_task_as_flow [0.054076s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_failed_reset_run_again [0.312953s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_task_with_flow_notifications [0.054283s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 343s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_all_with_a_single_result [0.068407s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 343s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 343s self._exception_str = _exception_message(self._exc_info[1]) 343s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 343s Traceback (most recent call last): 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 343s failure.Failure.reraise_if_any(memory.failures) 343s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 343s failures[0].reraise() 343s ~~~~~~~~~~~~~~~~~~~^^ 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 343s raise value 343s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 308, in run_iter 343s try_suspend = yield new_state 343s ^^^^^^^^^^^^^^^ 343s OSError: I Broke 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_interrupted_externally [0.066552s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_fetch_with_two_results [0.054192s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=5)", creating one. 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_iter_suspend_resume [0.097096s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_two_tasks [0.068001s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-2(len=2)", creating one. 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 343s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_history [0.173275s] ... ok 343s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=3)", creating one. 343s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_two_tasks_iter [0.066313s] ... ok 343s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_two_tasks_with_resumption [0.071068s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: root(len=3)", creating one. 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_conditional_ignore_reset [0.170049s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: root(len=4)", creating one. 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_diamond_ignored [0.069454s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-4(len=4)", creating one. 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_suspended_reset_run_again [0.207462s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_task_graph_property [0.011713s] ... ok 344s {0} taskflow.tests.unit.test_exceptions.TestExceptions.test_cause_pformat [0.000397s] ... ok 344s {0} taskflow.tests.unit.test_exceptions.TestExceptions.test_raise_with_cause [0.000223s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_captures_exc_info [0.000616s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_captures_message [0.000315s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_captures_value [0.000303s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_str [0.000391s] ... ok 344s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_type_not_there [0.000298s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_pformat_no_traceback [0.000300s] ... ok 344s {0} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_reraises [0.000523s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_copy_exc_info [0.000234s] ... ok 344s {0} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_tuple_nen_none [0.000190s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes [0.001124s] ... ok 344s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_compares_to_none [0.000327s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_failure_copy [0.000357s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_failure_copy_recaptured [0.000449s] ... ok 344s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_pformat_traceback [0.000311s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_recaptured_not_eq [0.000435s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_reraises_one [0.000303s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_unknown_argument [0.000251s] ... ok 344s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_str_not_there [0.000441s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_type [0.000317s] ... ok 344s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_type_not_there [0.000427s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_exception_types [0.000325s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_failure.py:337: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self.assertEqual(encodeutils.exception_to_unicode(excp), 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_pformat_no_traceback [0.000346s] ... ok 344s {0} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_exception_with_non_ascii_str [0.000348s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_failure_equality_non_ascii_unicode [0.000375s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_failure_equality_with_non_ascii_str [0.000359s] ... ok 344s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_captures_message [0.000429s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_type_not_there [0.000396s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_pformat_no_traceback [0.000395s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_reraises [0.000424s] ... ok 344s {0} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_simple_check [0.000385s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_builtin_retry_args [0.001350s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_cyclic_dependency [0.000847s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_requires_values [0.000663s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_retry_and_task_provide_same_value [0.000648s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_multi_provides_and_requires_values [0.001535s] ... ok 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_four_tasks_added_separately [0.113401s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_provides_required_values [0.000581s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-3-multi(len=3)", creating one. 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_provides_values [0.000467s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_requires_values [0.000509s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_nested_flows_requirements [0.000781s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_with_provides [0.000360s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_with_requirements [0.000360s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_no_requirements_no_provides [0.000340s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_with_requirements [0.000355s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_requires_and_provides [0.000344s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_with_provides [0.000335s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_provides_and_requires_values [0.000375s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_provides_values [0.000331s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_without_dependencies [0.000321s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_required_values [0.000692s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_same_values [0.000437s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_same_values_one_add [0.000437s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_values [0.000437s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_requires_values [0.000510s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_and_task [0.000532s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_and_task_same_requires_provides [0.000469s] ... ok 344s {0} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_without_dependencies [0.000434s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_formatters.FormattersTest.test_exc_info_with_details_format [0.007125s] ... ok 344s {0} taskflow.tests.unit.test_formatters.FormattersTest.test_exc_info_with_details_format_hidden [0.006969s] ... ok 344s {0} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_it_runs [0.004294s] ... ok 344s {0} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_lambda_functors [0.003464s] ... ok 344s {0} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_simple [0.000514s] ... ok 344s {0} taskflow.tests.unit.test_listeners.TestCapturingListeners.test_basic_do_not_capture [0.002330s] ... ok 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=a489bb9a-416a-4913-a605-9a4057741a56, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 344s {0} taskflow.tests.unit.test_listeners.TestClaimListener.test_claim_lost_custom_handler [0.016291s] ... ok 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=4f87b10a-36a1-4221-a624-2e02982e49df, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=4f87b10a-36a1-4221-a624-2e02982e49df, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=4f87b10a-36a1-4221-a624-2e02982e49df, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=4f87b10a-36a1-4221-a624-2e02982e49df, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 344s {0} taskflow.tests.unit.test_listeners.TestClaimListener.test_claim_lost_new_owner [0.007604s] ... ok 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=8eb98545-c707-40ab-91e5-eb442ea9b642, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=8eb98545-c707-40ab-91e5-eb442ea9b642, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=8eb98545-c707-40ab-91e5-eb442ea9b642, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.listeners.claims] Job 'ZookeeperJob: test-1 (priority=JobPriority.NORMAL, uuid=8eb98545-c707-40ab-91e5-eb442ea9b642, details={})' has lost its claim (previously owned by 'test') 344s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 344s {0} taskflow.tests.unit.test_listeners.TestClaimListener.test_claim_lost_suspended [0.008468s] ... ok 344s {0} taskflow.tests.unit.test_listeners.TestDurationListener.test_deregister [0.001490s] ... ok 344s {0} taskflow.tests.unit.test_listeners.TestDurationListener.test_record_ending_exception [0.002786s] ... ok 344s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_basic_customized [0.001965s] ... ok 344s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_dynamic [0.002222s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_graph_flow_with_multireturn_and_multiargs_tasks [0.077219s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "taskflow.tests.utils.NastyFailingTask==1.0", creating one. 344s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_dynamic_failure [0.003098s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_dynamic_failure_customized_level [0.002904s] ... ok 344s {0} taskflow.tests.unit.test_mapfunctor_task.MapFunctorTaskTest.test_double_array [0.002390s] ... ok 344s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_bad_notify [0.000274s] ... ok 344s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_called [0.000239s] ... ok 344s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_not_called [0.000220s] ... ok 344s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_register_deregister [0.000245s] ... ok 344s {0} taskflow.tests.unit.test_notifier.NotifierTest.test_restricted_notifier [0.000252s] ... ok 344s {0} taskflow.tests.unit.test_progress.TestProgress.test_dual_storage_progress [0.003152s] ... ok 344s {0} taskflow.tests.unit.test_progress.TestProgress.test_storage_progress [0.002347s] ... ok 344s {0} taskflow.tests.unit.test_progress.TestProgress.test_storage_progress_detail [0.001766s] ... ok 344s {0} taskflow.tests.unit.test_reducefunctor_task.ReduceFunctorTaskTest.test_sum_array [0.002230s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_for_each_empty_collection [0.004529s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_for_each_with_list [0.018016s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_for_each_with_set [0.014177s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 344s Traceback (most recent call last): 344s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 344s failure.Failure.reraise_if_any(memory.failures) 344s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 344s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 344s failures[0].reraise() 344s ~~~~~~~~~~~~~~~~~~~^^ 344s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 344s raise exc.WrappedFailure([self]) 344s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_flow_reverts_parent_retries [0.016662s] ... ok 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_nasty_failing_task_exception_reraised [0.077877s] ... ok 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_flow_with_retry_revert [0.007873s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_flow_with_retry_revert_all [0.009327s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_for_each_revert_all [0.021910s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_parameterized_for_each_revert_all [0.016532s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_provides_graph_reverts_correctly [0.017619s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 344s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 344s Traceback (most recent call last): 344s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 344s failure.Failure.reraise_if_any(memory.failures) 344s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 344s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 344s failures[0].reraise() 344s ~~~~~~~~~~~~~~~~~~~^^ 344s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 344s raise exc.WrappedFailure([self]) 344s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_new_revert_vs_old [0.020231s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_nasty_revert [0.091171s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_parameterized_for_each_with_list [0.014871s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_parameterized_for_each_with_set [0.013948s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_restart_reverted_unordered_flows_with_retries ... SKIPPED: Skipping this test when using green threads. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.006752s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_retry_queried [0.006749s] ... ok 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_task_updated [0.006593s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_revert_all_retry [0.010897s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_empty_graph_flow [0.004403s] ... ok 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_empty_unordered_flow [0.002160s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_overlap_parent_expected_result [0.076978s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_failure_nested_flow_fails [0.016011s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 344s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_for_each_empty_collection [0.013239s] ... ok 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 344s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 344s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 344s self.pid = os.fork() 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_overlap_sibling_expected_result [0.079707s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=1)", creating one. 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_flow_one_task [0.055108s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-2(len=2)", creating one. 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_flow_two_tasks [0.065625s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-r-3(len=3)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_parallel_revert [0.105429s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-not-run(len=2)", creating one. 344s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 344s self._exception_str = _exception_message(self._exc_info[1]) 344s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_not_run_task_is_not_reverted [0.078570s] ... ok 344s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 344s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: p-root(len=3)", creating one. 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 345s Traceback (most recent call last): 345s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 345s failure.Failure.reraise_if_any(memory.failures) 345s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 345s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 345s failures[0].reraise() 345s ~~~~~~~~~~~~~~~~~~~^^ 345s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 352, in reraise 345s raise exc.WrappedFailure([self]) 345s taskflow.exceptions.WrappedFailure: WrappedFailure: [Failure: RuntimeError: Gotcha!] 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_raises_for_unordered_in_linear [0.096724s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: revert-removes(len=3)", creating one. 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_revert_removes_data [0.149929s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=2)", creating one. 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_capture_task_notifications [0.077657s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g-1(len=2)", creating one. 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: p-1(len=0)", creating one. 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_nested_graph_flows [0.021977s] ... ok 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_empty_unordered_flow [0.022967s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=3)", creating one. 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_jump_over_bad_atom [0.082114s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: g(len=5)", creating one. 345s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_for_each_with_list [1.078275s] ... ok 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 345s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 345s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 345s self.pid = os.fork() 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_run_graph_flow_decider_various_depths [0.299775s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: nested-1(len=2)", creating one. 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_nested_blocks [0.065292s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_sequential_flow_one_task [0.054297s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow(len=1)", creating one. 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_task_can_update_value [0.054473s] ... ok 345s WARNING [kombu.connection] No hostname was supplied. Reverting to default 'localhost' 345s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "task1==1.0", creating one. 345s {1} taskflow.tests.unit.test_engines.WorkerBasedEngineTest.test_task_graph_property_for_one_task [0.011455s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_cause [0.000303s] ... ok 345s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_invalid_pformat_indent [0.000254s] ... ok 345s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_no_looping [0.000271s] ... ok 345s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_pformat_root_class [0.000208s] ... ok 345s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_pformat_str [0.000258s] ... ok 345s {1} taskflow.tests.unit.test_exceptions.TestExceptions.test_raise_with [0.000198s] ... ok 345s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_str_not_there [0.001551s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_check_type [0.000402s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_exception_types [0.000390s] ... ok 345s {1} taskflow.tests.unit.test_failure.CaptureFailureTestCase.test_str [0.001052s] ... ok 345s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_copy_none [0.000315s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s _exception_message(ei1[1]) == _exception_message(ei2[1]), 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_none_equals [0.000275s] ... ok 345s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_none_ne_tuple [0.000190s] ... ok 345s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_tuple_equals_itself [0.000188s] ... ok 345s {1} taskflow.tests.unit.test_failure.ExcInfoUtilsTest.test_typle_equals_copy [0.000216s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes_pickle [0.001660s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes_suppress_context [0.000570s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FailureCausesTest.test_causes_to_from_dict [0.001971s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_bad_root_exception [0.001252s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_cause_exception_args [0.000316s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_dont_catch_base_exception [0.000231s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_empty_does_not_reraise [0.000188s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_invalids [0.002994s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_no_capture_exc_args [0.000361s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_pformat_traceback_captured_no_exc_info [0.000326s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_reraises_several [0.000507s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_two_captured_eq [0.000507s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_two_recaptured_neq [0.000341s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_valid_from_dict_to_dict [0.001030s] ... ok 345s {1} taskflow.tests.unit.test_failure.FailureObjectTestCase.test_valid_from_dict_to_dict_2 [0.001009s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_failure.py:353: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self.assertEqual(hi_cn, encodeutils.exception_to_unicode(fail)) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_captures_message [0.000262s] ... ok 345s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_check_str [0.000243s] ... ok 345s {1} taskflow.tests.unit.test_failure.FromExceptionTestCase.test_str [0.000233s] ... ok 345s {1} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_exception_non_ascii_unicode [0.000236s] ... ok 345s {1} taskflow.tests.unit.test_failure.NonAsciiExceptionsTestCase.test_wrapped_failure_non_ascii_unicode [0.000267s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_str [0.000323s] ... ok 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_str_not_there [0.000315s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_check_type [0.000307s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_exception_types [0.000305s] ... ok 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_no_exc_info [0.000308s] ... ok 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_no_type_names [0.000364s] ... ok 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_pformat_traceback [0.000306s] ... ok 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_str [0.000314s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.ReCreatedFailureTestCase.test_value_lost [0.000310s] ... ok 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 345s self._exception_str = _exception_message(self._exc_info[1]) 345s {1} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_flattening [0.000511s] ... ok 345s {1} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_simple_iter [0.000309s] ... ok 345s {1} taskflow.tests.unit.test_failure.WrappedFailureTestCase.test_two_failures [0.000363s] ... ok 345s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_multi_provides_and_requires_values [0.000724s] ... ok 345s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_provides_provided_value_other_call [0.000533s] ... ok 345s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_provides_required_values [0.000693s] ... ok 345s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_provides_values [0.000634s] ... ok 345s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_requires_rebind_values [0.001194s] ... ok 345s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_retry_and_task [0.000612s] ... ok 345s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_graph_flow_retry_and_task_dependency_provide_require [0.000523s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_requires_rebind_values [0.000539s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_retry_and_task [0.000531s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_linear_flow_without_dependencies [0.000457s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_no_requirements_no_provides [0.000366s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_graph_flow_requires_and_provides [0.000386s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_requires_and_provides [0.000379s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_linear_flow_with_provides [0.000362s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_no_requirements_no_provides [0.000359s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_in_unordered_flow_with_requirements [0.000359s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_retry_requires_and_provides_same_value [0.000362s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_additional_values [0.000385s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_and_provides_same_values [0.000381s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_default_values [0.000376s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_task_requires_rebinded_mapped [0.000376s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_multi_provides_and_requires_values [0.000563s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_provides_required_value_other_call [0.000473s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_requires_provided_value_other_call [0.000467s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_requires_rebind_values [0.000509s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_and_task_provide_same_value [0.000459s] ... ok 346s {1} taskflow.tests.unit.test_flow_dependencies.FlowDependenciesTest.test_unordered_flow_retry_two_tasks_provide_same_value [0.000715s] ... ok 346s {1} taskflow.tests.unit.test_formatters.FormattersTest.test_exc_info_format [0.006470s] ... ok 346s {1} taskflow.tests.unit.test_formatters.FormattersTest.test_formatted_via_listener [0.007906s] ... ok 346s {1} taskflow.tests.unit.test_functor_task.FunctorTaskTest.test_other_name [0.000437s] ... ok 346s {1} taskflow.tests.unit.test_listeners.TestClaimListener.test_bad_create [0.004554s] ... ok 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s WARNING [taskflow.listeners.logging] Task 'Broken' (c01f8439-e359-4164-a6da-69115b3e04c2) transitioned into state 'FAILURE' from state 'RUNNING' 346s 3 predecessors (most recent first): 346s A node 346s |__A node 346s |__A node 346s Traceback (most recent call last): 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 52, in _execute_task 346s result = task.execute(**arguments) 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 265, in execute 346s raise RuntimeError('Woot!') 346s RuntimeError: Woot! 346s WARNING [taskflow.listeners.logging] Task 'Broken' (c01f8439-e359-4164-a6da-69115b3e04c2) transitioned into state 'REVERTED' from state 'REVERTING' 346s WARNING [taskflow.listeners.logging] Task 'Happy-2' (b4052b07-5048-4b98-8277-7865640c9a44) transitioned into state 'REVERTED' from state 'REVERTING' 346s WARNING [taskflow.listeners.logging] Task 'Happy-1' (0fa0b508-0336-42f9-8502-0f534a7beab8) transitioned into state 'REVERTED' from state 'REVERTING' 346s WARNING [taskflow.listeners.logging] Flow 'test' (7947b874-6580-4b18-bf74-8dac5c67769e) transitioned into state 'REVERTED' from state 'RUNNING' 346s WARNING [taskflow.jobs.backends.impl_zookeeper] Connection to zookeeper has been lost 346s {1} taskflow.tests.unit.test_listeners.TestDurationListener.test_flow_duration [0.105342s] ... ok 346s {1} taskflow.tests.unit.test_listeners.TestDurationListener.test_task_duration [0.103631s] ... ok 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_listeners.TestEventTimeListener.test_event_time [0.103488s] ... ok 346s {1} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_basic [0.002763s] ... ok 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_listeners.TestLoggingListeners.test_basic_failure [0.002889s] ... ok 346s {1} taskflow.tests.unit.test_mapfunctor_task.MapFunctorTaskTest.test_square_array [0.002833s] ... ok 346s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_details_filter [0.000249s] ... ok 346s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_different_details_filter [0.000230s] ... ok 346s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_not_callable [0.000235s] ... ok 346s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_notify_reset [0.000200s] ... ok 346s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_restricted_notifier_any [0.000231s] ... ok 346s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_restricted_notifier_no_any [0.000229s] ... ok 346s {1} taskflow.tests.unit.test_notifier.NotifierTest.test_selective_notify [0.000224s] ... ok 346s {1} taskflow.tests.unit.test_progress.TestProgress.test_no_segments_progress [0.002367s] ... ok 346s {1} taskflow.tests.unit.test_progress.TestProgress.test_sanity_progress [0.002149s] ... ok 346s {1} taskflow.tests.unit.test_reducefunctor_task.ReduceFunctorTaskTest.test_multiply_array [0.002219s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_default_times_retry [0.023577s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_for_each_revert [0.019676s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_parameterized_for_each_revert [0.015573s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_nested_provides_graph_retried_correctly [0.011169s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_parameterized_for_each_empty_collection [0.004298s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_restart_reverted_flow_with_retry [0.011654s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resume_flow_that_should_be_retried [0.006203s] ... ok 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_retry_updated [0.006056s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_revert_scheduled [0.005839s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_resumption_on_crash_after_task_failure [0.006374s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_retry_fails [0.003267s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 346s Traceback (most recent call last): 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 346s failure.Failure.reraise_if_any(memory.failures) 346s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 346s failures[0].reraise() 346s ~~~~~~~~~~~~~~~~~~~^^ 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 346s raise value 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 346s result = retry.revert(**arguments) 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 346s raise ValueError('WOOT!') 346s ValueError: WOOT! 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_retry_revert_fails [0.003411s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_retry_tasks_that_has_not_been_reverted [0.009719s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_empty_linear_flow [0.001984s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id 695cdf32-78ad-4f72-9c0b-c102eb3dfb39) 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_run_just_retry [0.001033s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 346s Traceback (most recent call last): 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 346s failure.Failure.reraise_if_any(memory.failures) 346s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 346s failures[0].reraise() 346s ~~~~~~~~~~~~~~~~~~~^^ 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 346s raise value 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 346s result = task.revert(**arguments) 346s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 346s raise RuntimeError('Gotcha!') 346s RuntimeError: Gotcha! 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_failure_linear_flow [0.007943s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_failure_parent_flow_fails [0.019401s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_reverted_linear_flow [0.015874s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_states_retry_success_linear_flow [0.011742s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 346s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 346s self._exception_str = _exception_message(self._exc_info[1]) 346s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_for_each_with_set [0.819274s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.011028s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 346s {1} taskflow.tests.unit.test_retries.ParallelEngineWithEventletTest.test_use_retry_as_a_task [0.000813s] ... ok 346s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 346s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 346s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 346s self.pid = os.fork() 346s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 346s self.pid = os.fork() 347s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 347s self._exception_str = _exception_message(self._exc_info[1]) 347s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 347s self._exception_str = _exception_message(self._exc_info[1]) 347s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_flow_with_retry_revert [0.786497s] ... ok 347s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 347s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 347s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 347s self.pid = os.fork() 347s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 347s self._exception_str = _exception_message(self._exc_info[1]) 348s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 348s _exception_message(ei1[1]) == _exception_message(ei2[1]), 348s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_flow_with_retry_revert_all [1.052107s] ... ok 348s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 348s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 348s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 348s self.pid = os.fork() 348s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 348s self._exception_str = _exception_message(self._exc_info[1]) 349s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 349s self._exception_str = _exception_message(self._exc_info[1]) 349s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_default_times_retry [3.095152s] ... ok 349s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 349s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 349s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 349s self.pid = os.fork() 349s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 349s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_for_each_revert_all [1.591092s] ... ok 349s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 349s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 349s self.pid = os.fork() 350s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 350s self._exception_str = _exception_message(self._exc_info[1]) 350s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 350s self._exception_str = _exception_message(self._exc_info[1]) 351s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_flow_reverts_parent_retries [1.549176s] ... ok 351s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 351s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 351s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 351s self.pid = os.fork() 351s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 351s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_parameterized_for_each_revert_all [1.290566s] ... ok 351s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 351s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 351s self._exception_str = _exception_message(self._exc_info[1]) 351s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 351s self.pid = os.fork() 351s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 351s self._exception_str = _exception_message(self._exc_info[1]) 352s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_for_each_revert [1.294993s] ... ok 352s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 352s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 352s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 352s self.pid = os.fork() 352s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_provides_graph_retried_correctly [1.301234s] ... ok 352s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 352s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 352s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 352s self.pid = os.fork() 352s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 352s self._exception_str = _exception_message(self._exc_info[1]) 352s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 352s self._exception_str = _exception_message(self._exc_info[1]) 353s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 353s self._exception_str = _exception_message(self._exc_info[1]) 353s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_parameterized_for_each_revert [1.037465s] ... ok 353s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 353s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 353s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 353s self._exception_str = _exception_message(self._exc_info[1]) 353s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 353s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_parameterized_for_each_empty_collection [0.013744s] ... ok 353s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 353s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 353s self.pid = os.fork() 353s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 353s self._exception_str = _exception_message(self._exc_info[1]) 354s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 354s self._exception_str = _exception_message(self._exc_info[1]) 354s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 354s _exception_message(ei1[1]) == _exception_message(ei2[1]), 354s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_parameterized_for_each_with_list [0.786036s] ... ok 354s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 354s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 354s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 354s self.pid = os.fork() 354s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 354s self._exception_str = _exception_message(self._exc_info[1]) 354s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_nested_provides_graph_reverts_correctly [2.050484s] ... ok 354s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 354s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 354s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 354s self.pid = os.fork() 354s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 354s self._exception_str = _exception_message(self._exc_info[1]) 355s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_parameterized_for_each_with_set [0.789332s] ... ok 355s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 355s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 355s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 355s self.pid = os.fork() 355s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 355s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 355s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 355s self._exception_str = _exception_message(self._exc_info[1]) 355s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 355s self._exception_str = _exception_message(self._exc_info[1]) 355s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_new_revert_vs_old [1.105454s] ... ok 355s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 355s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 355s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 355s self.pid = os.fork() 355s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 355s self._exception_str = _exception_message(self._exc_info[1]) 355s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 355s _exception_message(ei1[1]) == _exception_message(ei2[1]), 356s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_restart_reverted_flow_with_retry [1.086017s] ... ok 356s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 356s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 356s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 356s self.pid = os.fork() 356s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 356s self._exception_str = _exception_message(self._exc_info[1]) 356s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.790314s] ... ok 356s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 356s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 356s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 356s self._exception_str = _exception_message(self._exc_info[1]) 356s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 356s self.pid = os.fork() 357s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_retry_queried [0.530486s] ... ok 357s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 357s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 357s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 357s self._exception_str = _exception_message(self._exc_info[1]) 357s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 357s self.pid = os.fork() 357s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 357s _exception_message(ei1[1]) == _exception_message(ei2[1]), 357s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_retry_updated [0.538091s] ... ok 357s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 357s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 357s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 357s self._exception_str = _exception_message(self._exc_info[1]) 357s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 357s self.pid = os.fork() 358s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_task_failure [0.540903s] ... ok 358s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 358s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 358s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 358s self._exception_str = _exception_message(self._exc_info[1]) 358s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_retry_fails [0.013738s] ... ok 358s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 358s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 358s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 358s self._exception_str = _exception_message(self._exc_info[1]) 358s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 358s Traceback (most recent call last): 358s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 358s failure.Failure.reraise_if_any(memory.failures) 358s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 358s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 358s failures[0].reraise() 358s ~~~~~~~~~~~~~~~~~~~^^ 358s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 358s raise value 358s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 358s result = retry.revert(**arguments) 358s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 358s raise ValueError('WOOT!') 358s ValueError: WOOT! 358s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 358s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_retry_revert_fails [0.013179s] ... ok 358s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 358s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 358s self.pid = os.fork() 358s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 358s self._exception_str = _exception_message(self._exc_info[1]) 358s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 358s self._exception_str = _exception_message(self._exc_info[1]) 359s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_retry_tasks_that_has_not_been_reverted [1.037653s] ... ok 359s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 359s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 359s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_empty_graph_flow [0.012995s] ... ok 359s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id edba32ae-fdd8-4973-b504-3194b3047c6e) 359s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 359s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 359s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_just_retry [0.001385s] ... ok 359s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 359s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 359s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 359s self.pid = os.fork() 359s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 359s self._exception_str = _exception_message(self._exc_info[1]) 360s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:60: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 360s _exception_message(ei1[1]) == _exception_message(ei2[1]), 361s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 361s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_reverted_linear_flow [2.075552s] ... ok 361s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 361s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 361s self.pid = os.fork() 361s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 361s self._exception_str = _exception_message(self._exc_info[1]) 362s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_success_linear_flow [1.543279s] ... ok 362s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 362s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 362s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 362s self.pid = os.fork() 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.786683s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_for_each_empty_collection [0.005336s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_for_each_with_list [0.019370s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_for_each_with_set [0.015408s] ... ok 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_flow_reverts_parent_retries [0.016360s] ... ok 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_parameterized_for_each_revert [0.016835s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_provides_graph_retried_correctly [0.012288s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_provides_graph_reverts_correctly [0.020649s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_new_revert_vs_old [0.022651s] ... ok 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.008110s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_revert_scheduled [0.006715s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_task_updated [0.006773s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_retry_fails [0.003228s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 363s Traceback (most recent call last): 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 363s failure.Failure.reraise_if_any(memory.failures) 363s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 363s failures[0].reraise() 363s ~~~~~~~~~~~~~~~~~~~^^ 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 363s raise value 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 363s result = retry.revert(**arguments) 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 363s raise ValueError('WOOT!') 363s ValueError: WOOT! 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_retry_revert_fails [0.003851s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_retry_tasks_that_has_not_been_reverted [0.010730s] ... ok 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_revert_all_retry [0.011748s] ... ok 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_empty_unordered_flow [0.002301s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id 8bc37b8a-cd3a-4707-b672-09bd0a44ff2e) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_just_retry [0.000882s] ... ok 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_success_linear_flow [0.012688s] ... ok 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_use_retry_as_a_task [0.000885s] ... ok 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_when_subflow_fails_revert_running_tasks [0.013320s] ... ok 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_for_each_empty_collection [0.003960s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_for_each_revert_all [0.022900s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_parameterized_for_each_revert [0.017184s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_parameterized_for_each_revert_all [0.016003s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_provides_graph_reverts_correctly [0.015994s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_parameterized_for_each_with_list [0.014564s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_resume_flow_that_should_be_retried [0.006329s] ... ok 363s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('UNDEFINED', 'RESUMING'), ('RESUMING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 363s Traceback (most recent call last): 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 363s failure.Failure.reraise_if_any(memory.failures) 363s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 363s failures[0].reraise() 363s ~~~~~~~~~~~~~~~~~~~^^ 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 363s raise value 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 40, in _revert_retry 363s result = retry.revert(**arguments) 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/unit/test_retries.py", line 53, in revert 363s raise ValueError('WOOT!') 363s ValueError: WOOT! 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_retry_revert_fails [0.003626s] ... ok 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_retry_tasks_that_has_not_been_reverted [0.008773s] ... ok 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_empty_linear_flow [0.002269s] ... ok 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_empty_unordered_flow [0.001951s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 363s Traceback (most recent call last): 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 363s failure.Failure.reraise_if_any(memory.failures) 363s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 363s failures[0].reraise() 363s ~~~~~~~~~~~~~~~~~~~^^ 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 363s raise value 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 363s result = task.revert(**arguments) 363s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 363s raise RuntimeError('Gotcha!') 363s RuntimeError: Gotcha! 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_failure_linear_flow [0.007859s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_failure_nested_flow_fails [0.015420s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_failure_parent_flow_fails [0.017935s] ... ok 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_success_linear_flow [0.010943s] ... ok 363s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 363s {0} taskflow.tests.unit.test_retries.SerialEngineTest.test_use_retry_as_a_task [0.000842s] ... ok 363s {0} taskflow.tests.unit.test_states.TestStates.test_ignored_flow_states [0.000227s] ... ok 363s {0} taskflow.tests.unit.test_states.TestStates.test_invalid_flow_states [0.000289s] ... ok 363s {0} taskflow.tests.unit.test_states.TestStates.test_valid_flow_states [0.000204s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_cleanup_retry_history [0.001422s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_existing_task [0.000705s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_task [0.000841s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_mapped_args [0.000800s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_not_found_args [0.000811s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_optional_args_not_found [0.000787s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_result_not_ready [0.001293s] ... ok 363s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 363s self._exception_str = _exception_message(self._exc_info[1]) 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_flow_name_uuid_and_meta [0.000364s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_failure_from_reverted_task [0.001275s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_state_of_unknown_task [0.000804s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_tasks_states [0.001850s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject [0.001214s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_persistent_and_transient_missing [0.001520s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_persistent_missing [0.001041s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_twice [0.003189s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_logbook_get_unknown_atom_type [0.000550s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_many_thread_inject [0.017300s] ... ok 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_reset_unknown_task [0.001165s] ... ok 363s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 'result' (name 'result') 363s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_result_is_checked [0.001770s] ... ok 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_and_get_cached_failure [0.001388s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_and_get_non_cached_failure [0.001098s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_fetch_revert [0.001239s] ... ok 364s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 1 (name 'b') 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_multiple_results [0.001160s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_retry_results_with_mapping [0.001305s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_set_and_get_task_state [0.000881s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_short_result_is_checked [0.001108s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_metadata_update_with_none [0.000998s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_progress_erase [0.000940s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageMemoryTest.test_transient_storage_fetch_mapped [0.000887s] ... ok 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_cached_retry_failure [0.026002s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_cleanup_retry_history [0.023029s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_retry [0.018886s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_task [0.018286s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_task_flow_detail [0.014078s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_by_name [0.018865s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_mapped_args [0.017311s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_optional_args_found [0.022437s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_unknown_name [0.010003s] ... ok 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_failure_after_reload [0.018630s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_non_existing_var [0.013604s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_state_of_unknown_task [0.009907s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_tasks_states [0.025356s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_without_save [0.009876s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_initial_flow_state [0.010430s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject [0.016879s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_persistent_and_transient_missing [0.016151s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_resumed [0.020619s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_reset [0.018887s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_reset_unknown_task [0.014234s] ... ok 364s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 'result' (name 'result') 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_result_is_checked [0.016803s] ... ok 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_and_get_cached_failure [0.017029s] ... ok 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_and_get_non_cached_failure [0.100877s] ... ok 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_fail_fetch_revert [0.019826s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_fetch_revert [0.020083s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_multiple_results [0.023507s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_retry_intention [0.016533s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_retry_results [0.018842s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_task_intention [0.017725s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_set_and_get_task_state [0.014463s] ... ok 364s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 1 (name 'b') 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_short_result_is_checked [0.024929s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_metadata_update_with_none [0.017656s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_progress_erase [0.017341s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_transient_storage_restore [0.016296s] ... ok 364s {0} taskflow.tests.unit.test_storage.StorageSQLTest.test_unknown_task_by_name [0.009404s] ... ok 364s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 364s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 364s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_storage_is_rechecked [0.004884s] ... ok 364s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_and_resume_linear_flow_on_revert [0.018174s] ... ok 364s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 364s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_and_revert_even_if_task_is_gone [0.011251s] ... ok 364s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_linear_flow [0.006877s] ... ok 364s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 364s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 364s self._exception_str = _exception_message(self._exc_info[1]) 364s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_linear_flow_on_revert [0.010304s] ... ok 364s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 364s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithEventletTest.test_suspend_one_task [0.003032s] ... ok 364s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 364s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 364s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 364s self.pid = os.fork() 365s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 365s self._exception_str = _exception_message(self._exc_info[1]) 365s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 365s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_restart_reverted_unordered_flows_with_retries [9.657134s] ... ok 365s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 365s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 365s self.pid = os.fork() 366s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 366s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 366s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_and_revert_even_if_task_is_gone [1.597756s] ... ok 366s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 366s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 366s self.pid = os.fork() 366s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 366s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 366s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 366s self._exception_str = _exception_message(self._exc_info[1]) 366s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resume_flow_that_should_be_retried [0.566733s] ... ok 366s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 366s self.pid = os.fork() 366s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_revert_scheduled [0.539207s] ... ok 366s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 366s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 366s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 366s self._exception_str = _exception_message(self._exc_info[1]) 366s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 366s self.pid = os.fork() 367s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_linear_flow [0.816716s] ... ok 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 367s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 367s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6451) is multi-threaded, use of fork() may lead to deadlocks in the child. 367s self.pid = os.fork() 367s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_resumption_on_crash_after_task_updated [0.528873s] ... ok 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 367s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 367s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 367s self.pid = os.fork() 367s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_one_task [0.291065s] ... ok 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 367s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 367s self._exception_str = _exception_message(self._exc_info[1]) 367s {0} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_and_revert_even_if_task_is_gone [0.012263s] ... ok 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 367s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 367s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 367s self._exception_str = _exception_message(self._exc_info[1]) 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 367s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 367s self._exception_str = _exception_message(self._exc_info[1]) 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 367s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 367s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_storage_is_rechecked [0.003973s] ... ok 367s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_and_resume_linear_flow_on_revert [0.009596s] ... ok 367s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_and_revert_even_if_task_is_gone [0.009578s] ... ok 367s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_linear_flow [0.005740s] ... ok 367s {0} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_one_task [0.002915s] ... ok 367s {0} taskflow.tests.unit.test_task.FunctorTaskTest.test_revert_not_callable [0.000337s] ... ok 367s {0} taskflow.tests.unit.test_task.MapFunctorTaskTest.test_functor_invalid_requires [0.000894s] ... ok 367s {0} taskflow.tests.unit.test_task.ReduceFunctorTaskTest.test_invalid_functor [0.000341s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_bad_provides [0.000366s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_bind_not_callable [0.000394s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_copy_listeners [0.000402s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_copy_no_listeners [0.000375s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_default_provides [0.000341s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_default_provides_can_be_overridden [0.000331s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_deregister_non_existent_listener [0.000360s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_no_provides [0.000348s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_all_args [0.000356s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_includes_optional [0.000347s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_rebind_partial [0.000354s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_requires_by_default [0.000347s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_requires_explicit [0.000335s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_requires_explicit_not_enough [0.000320s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_requires_ignores_optional [0.000378s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_separate_revert_optional_args [0.000360s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_task_repr [0.000350s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_unpack [0.001318s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_update_progress_handler_failure [0.001111s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_update_progress_upper_bound [0.000598s] ... ok 367s {0} taskflow.tests.unit.test_task.TaskTest.test_update_progress_within_bounds [0.000362s] ... ok 367s {0} taskflow.tests.unit.test_types.GraphTest.test_directed [0.000277s] ... ok 367s {0} taskflow.tests.unit.test_types.GraphTest.test_overlap_detector [0.000387s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_copy [0.000237s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_difference [0.000225s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_duplicate_length [0.000202s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_empty_difference [0.000210s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_empty_intersection [0.000225s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_empty_union [0.000212s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_intersection [0.000219s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_length [0.000198s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_multi_difference [0.000227s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_multi_intersection [0.000215s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_pickleable [0.000234s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_retain_duplicate_ordering [0.000200s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_retain_ordering [0.000197s] ... ok 367s {0} taskflow.tests.unit.test_types.OrderedSetTest.test_subset [0.000200s] ... ok 367s {0} taskflow.tests.unit.test_types.TimingTest.test_convert_noop [0.000209s] ... ok 367s {0} taskflow.tests.unit.test_types.TimingTest.test_fail [0.000226s] ... ok 367s {0} taskflow.tests.unit.test_types.TimingTest.test_reset [0.000205s] ... ok 367s {0} taskflow.tests.unit.test_types.TimingTest.test_values [0.000212s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_after_frozen [0.000304s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_bfs_itr [0.000213s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_bfs_itr_right_to_left [0.000211s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_dfs_itr_no_self [0.000211s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_index [0.000205s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_node_count [0.000204s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_pformat [0.000692s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_pformat_partial_species [0.000256s] ... ok 367s {0} taskflow.tests.unit.test_types.TreeTest.test_removal_direct [0.000244s] ... ok 367s {0} taskflow.tests.unit.test_utils.CachedPropertyTest.test_custom_property [0.000273s] ... ok 367s {0} taskflow.tests.unit.test_utils.CachedPropertyTest.test_documented_property [0.000217s] ... ok 367s {0} taskflow.tests.unit.test_utils.CachedPropertyTest.test_no_delete [0.000248s] ... ok 367s {0} taskflow.tests.unit.test_utils.CachedPropertyTest.test_set [0.000249s] ... ok 367s {0} taskflow.tests.unit.test_utils.CachedPropertyTest.test_threaded_access_property [0.276218s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestCountdownIter.test_no_count [0.000379s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestIterable.test_dict [0.000231s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestIterable.test_list [0.000192s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestIterable.test_string_types [0.000186s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestMergeUri.test_merge_user_password [0.000292s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestMergeUri.test_merge_user_password_existing [0.000199s] ... ok 367s /usr/lib/python3.13/unittest/case.py:597: RuntimeWarning: TestResult has no addDuration method 367s warnings.warn("TestResult has no addDuration method", 367s {0} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(none) [0.001110s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(empty_dict) [0.000039s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(empty_list) [0.000029s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_expected(dict) [0.000028s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestSequenceMinus.test_simple_case [0.000227s] ... ok 367s {0} taskflow.tests.unit.test_utils.TestSequenceMinus.test_subtrahend_has_extra_elements [0.000192s] ... ok 367s {0} taskflow.tests.unit.test_utils.UriParseTest.test_parse [0.000241s] ... ok 367s {0} taskflow.tests.unit.test_utils.UriParseTest.test_port_provided [0.000203s] ... ok 367s {0} taskflow.tests.unit.test_utils.UriParseTest.test_user_password [0.000204s] ... ok 367s {0} taskflow.tests.unit.test_utils_async_utils.MakeCompletedFutureTest.test_make_completed_future [0.000234s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_simple_binary [0.000217s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_unicode_binary [0.000190s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_unicode_text [0.000183s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_simple_binary [0.000189s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_unicode_binary [0.000184s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_unicode_other_encoding [0.000185s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_handles_bad_json [0.000282s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_handles_invalid_unicode [0.000229s] ... ok 367s {0} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_handles_wrong_types [0.000230s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_count [0.000233s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_find_first_match [0.000220s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_count [0.000250s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill [0.000197s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_custom_filler [0.000187s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_less_needed [0.000183s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_find_first_match_not_found [0.000803s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_generate_delays_bad [0.000336s] ... ok 367s {0} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_generate_delays_custom_multiplier [0.000208s] ... ok 367s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_bundle_length [0.100874s] ... ok 367s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 367s self._exception_str = _exception_message(self._exc_info[1]) 368s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_start_stop_order [0.101042s] ... ok 368s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadHelpers.test_alive_thread [0.100845s] ... ok 368s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadHelpers.test_alive_thread_falsey [0.000326s] ... ok 368s {0} taskflow.tests.unit.test_utils_threading_utils.TestThreadHelpers.test_daemon_thread [0.000218s] ... ok 368s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 368s {0} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_custom_executor [0.001593s] ... ok 368s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 368s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 368s {0} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_invalid_custom_executor [0.001260s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_creation [0.000339s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_on_message [0.007381s] ... ok 368s WARNING [taskflow.engines.worker_based.dispatcher] Unexpected message type: 'hello' in message ': {'content_type': , 'type': 'hello', 'body_length': 0}' 368s {0} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_on_rejected_message [0.005448s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_on_requeue_message [0.004580s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_to_str [0.000241s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_execute_task [0.007677s] ... ok 368s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 368s self._exception_str = _exception_message(self._exc_info[1]) 368s CRITICAL [taskflow.engines.worker_based.executor] Failed to submit '' (transitioning it to FAILURE) 368s Traceback (most recent call last): 368s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/executor.py", line 228, in _publish_request 368s self._proxy.publish(request, worker.topic, 368s ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^ 368s reply_to=self._uuid, 368s ^^^^^^^^^^^^^^^^^^^^ 368s correlation_id=request.uuid) 368s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 368s File "/usr/lib/python3.13/unittest/mock.py", line 1167, in __call__ 368s return self._mock_call(*args, **kwargs) 368s ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 368s File "/usr/lib/python3.13/unittest/mock.py", line 1171, in _mock_call 368s return self._execute_mock_call(*args, **kwargs) 368s ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 368s File "/usr/lib/python3.13/unittest/mock.py", line 1226, in _execute_mock_call 368s raise effect 368s Exception: Woot! 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_execute_task_publish_error [0.010936s] ... ok 368s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 368s self._exception_str = _exception_message(self._exc_info[1]) 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_failure [0.007208s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_progress [0.006783s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_running [0.007101s] ... ok 368s WARNING [taskflow.engines.worker_based.executor] Unexpected response status '' 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_unknown_state [0.007119s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_unknown_task [0.007026s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_wait_task_not_expired [0.007183s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_restart [0.028223s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_revert_task [0.007310s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_start_already_running [0.017784s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_message_pump.TestMessagePump.test_notify [0.021603s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_message_pump.TestMessagePump.test_response [0.021358s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_pending_expired [0.000791s] ... ok 368s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 368s self._exception_str = _exception_message(self._exc_info[1]) 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_running_not_expired [0.000550s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_failures [0.000523s] ... ok 368s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 368s self._exception_str = _exception_message(self._exc_info[1]) 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_result_failure [0.000422s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_result_none [0.000387s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_request [0.001688s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_request_invalid [0.000922s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_bad_state [0.000887s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_completion [0.000990s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_send_notify [0.000850s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_send_notify_invalid [0.000905s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_creation [0.097546s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_start_with_on_wait_raises [0.096713s] ... ok 368s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 368s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_revert_all_retry [1.057107s] ... ok 368s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 368s Exception in thread Thread-513 (loop): 368s Traceback (most recent call last): 368s File "/usr/lib/python3.13/threading.py", line 1041, in _bootstrap_inner 368s self.run() 368s ~~~~~~~~^^ 368s File "/usr/lib/python3.13/threading.py", line 992, in run 368s self._target(*self._args, **self._kwargs) 368s ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 368s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 203, in loop 368s poll_fun(timeout, map) 368s ~~~~~~~~^^^^^^^^^^^^^^ 368s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 144, in poll 368s r, w, e = select.select(r, w, e, timeout) 368s ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^ 368s OSError: [Errno 9] Bad file descriptor 368s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_empty_linear_flow [0.004940s] ... ok 368s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=0)", creating one. 368s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 368s Exception in thread Thread-514 (loop): 368s Traceback (most recent call last): 368s File "/usr/lib/python3.13/threading.py", line 1041, in _bootstrap_inner 368s self.run() 368s ~~~~~~~~^^ 368s File "/usr/lib/python3.13/threading.py", line 992, in run 368s self._target(*self._args, **self._kwargs) 368s ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 368s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 203, in loop 368s poll_fun(timeout, map) 368s ~~~~~~~~^^^^^^^^^^^^^^ 368s File "/usr/lib/python3/dist-packages/asyncore/asyncore.py", line 144, in poll 368s r, w, e = select.select(r, w, e, timeout) 368s ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^ 368s OSError: [Errno 9] Bad file descriptor 368s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_run_empty_unordered_flow [0.002876s] ... ok 368s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 368s self._exception_str = _exception_message(self._exc_info[1]) 368s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 368s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request_with_failure_result [0.010725s] ... ok 368s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 368s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 368s self.pid = os.fork() 368s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request_with_success_result [0.010413s] ... ok 368s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 368s self._exception_str = _exception_message(self._exc_info[1]) 368s WARNING [taskflow.engines.worker_based.server] The '' handler does not exist on task endpoint 'taskflow.tests.utils.TaskOneArgOneReturn', unable to continue processing request message ': {'content_type': , 'correlation_id': 'task-uuid', 'type': 'REQUEST', 'body_length': 0}' 368s Traceback (most recent call last): 368s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 199, in _process_request 368s handler = getattr(endpoint, work.action) 368s AttributeError: 'Endpoint' object has no attribute '' 368s {0} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_execution_failure [0.015092s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_expiry [0.000450s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_multi_different_topic_workers [0.000319s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_multi_same_topic_workers [0.000309s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_types.TestProxyFinder.test_single_topic_worker [0.000292s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_creation [0.015780s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_modules [0.016215s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_tasks [0.017038s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_run_with_custom_executor [0.016670s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_run_with_no_tasks [0.016331s] ... ok 368s {0} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_wait [0.016480s] ... ok 368s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 368s self._exception_str = _exception_message(self._exc_info[1]) 369s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 369s Traceback (most recent call last): 369s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 369s failure.Failure.reraise_if_any(memory.failures) 369s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 369s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 369s failures[0].reraise() 369s ~~~~~~~~~~~~~~~~~~~^^ 369s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 369s raise value 369s RuntimeError: Gotcha! 369s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_failure_linear_flow [0.544615s] ... ok 369s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 369s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 369s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 369s self.pid = os.fork() 369s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 369s self._exception_str = _exception_message(self._exc_info[1]) 369s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_failure_nested_flow_fails [0.798852s] ... ok 369s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 369s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 369s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 369s self.pid = os.fork() 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_states_retry_failure_parent_flow_fails [0.795640s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 370s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithProcessTest.test_use_retry_as_a_task [0.001908s] ... ok 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_default_times_retry [0.030392s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_flow_with_retry_revert [0.009192s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_flow_with_retry_revert_all [0.010074s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_for_each_revert [0.021518s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_for_each_revert_all [0.020575s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_nested_parameterized_for_each_revert_all [0.017555s] ... ok 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_parameterized_for_each_empty_collection [0.004775s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_parameterized_for_each_with_list [0.014792s] ... ok 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_parameterized_for_each_with_set [0.015942s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 370s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_restart_reverted_flow_with_retry [0.013099s] ... ok 370s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 370s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 370s self._exception_str = _exception_message(self._exc_info[1]) 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_restart_reverted_unordered_flows_with_retries [7.096601s] ... ok 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resume_flow_that_should_be_retried [0.006765s] ... ok 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 377s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 377s self._exception_str = _exception_message(self._exc_info[1]) 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_retry_queried [0.007136s] ... ok 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 377s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 377s self._exception_str = _exception_message(self._exc_info[1]) 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_retry_updated [0.006979s] ... ok 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 377s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 377s self._exception_str = _exception_message(self._exc_info[1]) 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_resumption_on_crash_after_task_failure [0.006679s] ... ok 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_empty_graph_flow [0.002018s] ... ok 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_run_empty_linear_flow [0.001926s] ... ok 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_failure_linear_flow [0.009474s] ... ok 377s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_failure_nested_flow_fails [0.015997s] ... ok 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=0)", creating one. 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 377s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 377s self._exception_str = _exception_message(self._exc_info[1]) 377s ERROR [taskflow.engines.action_engine.engine] Engine execution has failed, something bad must have happened (last 10 machine transitions were [('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'SCHEDULING'), ('SCHEDULING', 'WAITING'), ('WAITING', 'ANALYZING'), ('ANALYZING', 'GAME_OVER'), ('GAME_OVER', 'FAILURE')]) 377s Traceback (most recent call last): 377s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/engine.py", line 304, in run_iter 377s failure.Failure.reraise_if_any(memory.failures) 377s ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 377s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 338, in reraise_if_any 377s failures[0].reraise() 377s ~~~~~~~~~~~~~~~~~~~^^ 377s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py", line 350, in reraise 377s raise value 377s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/action_engine/executor.py", line 71, in _revert_task 377s result = task.revert(**arguments) 377s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/tests/utils.py", line 279, in revert 377s raise RuntimeError('Gotcha!') 377s RuntimeError: Gotcha! 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 377s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 377s self._exception_str = _exception_message(self._exc_info[1]) 377s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 377s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 377s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_failure_parent_flow_fails [0.023020s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_states_retry_reverted_linear_flow [0.017167s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.011589s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.ParallelEngineWithThreadsTest.test_when_subflow_fails_revert_success_tasks [0.016080s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_default_times_retry [0.021338s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_for_each_with_list [0.016605s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_for_each_with_set [0.012645s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_flow_reverts_parent_retries [0.013135s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_flow_with_retry_revert [0.007358s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_flow_with_retry_revert_all [0.007892s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_for_each_revert [0.017575s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: test(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_nested_provides_graph_retried_correctly [0.010358s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_new_revert_vs_old [0.018552s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_parameterized_for_each_empty_collection [0.004201s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=1)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_parameterized_for_each_with_set [0.015953s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=1)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 378s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_restart_reverted_flow_with_retry [0.012070s] ... ok 378s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test(len=2)", creating one. 378s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 378s self._exception_str = _exception_message(self._exc_info[1]) 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_restart_reverted_unordered_flows_with_retries [7.093716s] ... ok 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=3)", creating one. 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resume_flow_that_had_been_interrupted_during_retrying [0.007092s] ... ok 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_retry_queried [0.005768s] ... ok 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_retry_updated [0.005806s] ... ok 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=1)", creating one. 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: testflow(len=0)", creating one. 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "graph_flow.Flow: flow-1(len=0)", creating one. 385s WARNING [taskflow.utils.persistence_utils] No name provided for flow "None==1.0" (id 3bfe3376-2d7f-4d33-ad83-f1d6f62de3f0) 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "None==1.0", creating one. 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: flow-1(len=2)", creating one. 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_revert_scheduled [0.005854s] ... ok 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_task_failure [0.005685s] ... ok 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_resumption_on_crash_after_task_updated [0.005698s] ... ok 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_retry_fails [0.002926s] ... ok 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_revert_all_retry [0.009712s] ... ok 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_empty_graph_flow [0.001932s] ... ok 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_run_just_retry [0.000813s] ... ok 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_states_retry_reverted_linear_flow [0.014745s] ... ok 385s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "unordered_flow.Flow: flow-1(len=2)", creating one. 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s {1} taskflow.tests.unit.test_retries.SerialEngineTest.test_unordered_flow_task_fails_parallel_tasks_should_be_reverted [0.010782s] ... ok 385s {1} taskflow.tests.unit.test_states.TestStates.test_ignored_job_states [0.000240s] ... ok 385s {1} taskflow.tests.unit.test_states.TestStates.test_invalid_job_states [0.000267s] ... ok 385s {1} taskflow.tests.unit.test_states.TestStates.test_invalid_task_states [0.000198s] ... ok 385s {1} taskflow.tests.unit.test_states.TestStates.test_valid_job_states [0.000202s] ... ok 385s {1} taskflow.tests.unit.test_states.TestStates.test_valid_task_states [0.000191s] ... ok 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_cached_retry_failure [0.001380s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_default_task_progress [0.000857s] ... ok 385s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 0 (name 'a') 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_empty_result_is_checked [0.001208s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_retry [0.000864s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_retry_and_task_with_same_name [0.001044s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_ensure_task_flow_detail [0.000846s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_by_name [0.000974s] ... ok 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_optional_args_found [0.000807s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_fetch_unknown_name [0.000594s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_flow_metadata_update [0.000626s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_failure_after_reload [0.001040s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_flow_state [0.000596s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_non_existing_var [0.000859s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_get_without_save [0.000539s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_initial_flow_state [0.000525s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_inject_resumed [0.000866s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_many_thread_ensure_same_task [0.013136s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_mapping_none [0.001053s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_non_saving_storage [0.000881s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_reset [0.001086s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_and_get [0.000944s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_fail_fetch_revert [0.001134s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_fetch [0.000982s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_retry_intention [0.000945s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_retry_results [0.001092s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_save_task_intention [0.000932s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_set_and_get_flow_state [0.000625s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_by_name [0.000828s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_task_progress [0.001178s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_transient_storage_fetch_all [0.000804s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_transient_storage_restore [0.000804s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageMemoryTest.test_unknown_task_by_name [0.000598s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_default_task_progress [0.017181s] ... ok 385s WARNING [taskflow.storage] Atom 'my task' did not supply result with index 0 (name 'a') 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_empty_result_is_checked [0.018243s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_existing_task [0.009061s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_ensure_retry_and_task_with_same_name [0.014083s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_not_found_args [0.016478s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_optional_args_not_found [0.016835s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_fetch_result_not_ready [0.019571s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_flow_metadata_update [0.011631s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_flow_name_uuid_and_meta [0.004279s] ... ok 385s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 385s self._exception_str = _exception_message(self._exc_info[1]) 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_failure_from_reverted_task [0.020906s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_get_flow_state [0.011836s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_persistent_missing [0.019521s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_inject_twice [0.018941s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_logbook_get_unknown_atom_type [0.005228s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_many_thread_ensure_same_task [0.025149s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_many_thread_inject [0.242590s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_mapping_none [0.016012s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_non_saving_storage [0.009652s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_and_get [0.015541s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_fetch [0.019003s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_save_retry_results_with_mapping [0.017832s] ... ok 385s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_set_and_get_flow_state [0.012985s] ... ok 386s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_by_name [0.013098s] ... ok 386s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_task_progress [0.028201s] ... ok 386s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_transient_storage_fetch_all [0.016428s] ... ok 386s {1} taskflow.tests.unit.test_storage.StorageSQLTest.test_transient_storage_fetch_mapped [0.015475s] ... ok 386s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 386s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 386s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 386s self.pid = os.fork() 386s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_storage_is_rechecked [0.287955s] ... ok 386s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 386s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 386s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 386s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 386s self.pid = os.fork() 387s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 387s self._exception_str = _exception_message(self._exc_info[1]) 387s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 387s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 387s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_and_resume_linear_flow_on_revert [1.559220s] ... ok 387s WARNING [taskflow.engines.action_engine.process_executor] Process task executor is deprecated. It is now disabled in Python 3.12 or later and will be removed. 387s /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: This process (pid=6455) is multi-threaded, use of fork() may lead to deadlocks in the child. 387s self.pid = os.fork() 388s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 388s self._exception_str = _exception_message(self._exc_info[1]) 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=2)", creating one. 389s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithProcessTest.test_suspend_linear_flow_on_revert [1.571661s] ... ok 389s WARNING [taskflow.storage] Atom '_TaskFlow_INJECTOR' did not supply result with index 'foo' (name 'foo') 389s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_storage_is_rechecked [0.007631s] ... ok 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 389s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 389s self._exception_str = _exception_message(self._exc_info[1]) 389s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_and_resume_linear_flow_on_revert [0.012495s] ... ok 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 389s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_linear_flow [0.007649s] ... ok 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 389s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_linear_flow_on_revert [0.012280s] ... ok 389s {1} taskflow.tests.unit.test_suspend.ParallelEngineWithThreadsTest.test_suspend_one_task [0.004474s] ... ok 389s {1} taskflow.tests.unit.test_suspend.SerialEngineTest.test_suspend_linear_flow_on_revert [0.009278s] ... ok 389s {1} taskflow.tests.unit.test_task.FunctorTaskTest.test_creation_with_version [0.000516s] ... ok 389s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 389s self._exception_str = _exception_message(self._exc_info[1]) 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "a==1.0", creating one. 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: linear(len=3)", creating one. 389s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 389s self._exception_str = _exception_message(self._exc_info[1]) 389s {1} taskflow.tests.unit.test_task.FunctorTaskTest.test_execute_not_callable [0.000249s] ... ok 389s {1} taskflow.tests.unit.test_task.MapFunctorTaskTest.test_invalid_functor [0.000322s] ... ok 389s {1} taskflow.tests.unit.test_task.ReduceFunctorTaskTest.test_functor_invalid_requires [0.000888s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_deregister_any_handler [0.000397s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_deregister_any_handler_empty_listeners [0.000363s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_generated_name [0.000361s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_multi_provides [0.000353s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_passed_name [0.000349s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_provides [0.000344s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_all [0.000362s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_bad_value [0.000398s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_more [0.000331s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_more_kwargs [0.000355s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_list_partial [0.000358s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_unknown [0.000286s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_rebind_unknown_kwargs [0.000334s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_register_handler_is_none [0.000378s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_requires_allows_optional [0.000366s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_requires_amended [0.000347s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_revert_kwargs [0.000354s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_separate_revert_args [0.000506s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_task_str [0.000552s] ... ok 389s {1} taskflow.tests.unit.test_task.TaskTest.test_update_progress_lower_bound [0.002298s] ... ok 389s {1} taskflow.tests.unit.test_types.GraphTest.test_frozen [0.000351s] ... ok 389s {1} taskflow.tests.unit.test_types.GraphTest.test_invalid_detector [0.000356s] ... ok 389s {1} taskflow.tests.unit.test_types.GraphTest.test_merge [0.000391s] ... ok 389s {1} taskflow.tests.unit.test_types.GraphTest.test_merge_edges [0.000377s] ... ok 389s {1} taskflow.tests.unit.test_types.GraphTest.test_no_successors_no_predecessors [0.000337s] ... ok 389s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/graph.py:141: DeprecationWarning: nx.nx_pydot.to_pydot depends on the pydot package, which has known issues and is not actively maintained. 389s 389s See https://github.com/networkx/networkx/issues/5723 389s return nx_pydot.to_pydot(self).to_string() 389s {1} taskflow.tests.unit.test_types.GraphTest.test_pydot_output [0.072193s] ... ok 389s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_contains [0.000398s] ... ok 389s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_multi_union [0.000311s] ... ok 389s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_superset [0.000325s] ... ok 389s {1} taskflow.tests.unit.test_types.OrderedSetTest.test_union [0.000292s] ... ok 389s {1} taskflow.tests.unit.test_types.TimingTest.test_convert_fail [0.000633s] ... ok 389s {1} taskflow.tests.unit.test_types.TimingTest.test_interrupt [0.000297s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_bfs_itr_no_self [0.000317s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_contains [0.000311s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_dfs_itr [0.000304s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_dfs_itr_left_to_right [0.000297s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_disassociate [0.000330s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_disassociate_many [0.000304s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_empty [0.000292s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_find [0.000339s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_freeze [0.000332s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_not_empty [0.000279s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_path [0.000313s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_pformat_flat [0.000403s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_pformat_species [0.000321s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_removal [0.000346s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_removal_self [0.000294s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_to_diagraph [0.000360s] ... ok 389s {1} taskflow.tests.unit.test_types.TreeTest.test_to_digraph_retains_metadata [0.000305s] ... ok 389s {1} taskflow.tests.unit.test_utils.CachedPropertyTest.test_attribute_caching [0.000309s] ... ok 389s {1} taskflow.tests.unit.test_utils.CachedPropertyTest.test_undocumented_property [0.000299s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestClamping.test_clamped_callback [0.000290s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestClamping.test_invalid_clamp [0.000299s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestClamping.test_simple_clamp [0.000300s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestCountdownIter.test_expected_count [0.000366s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestCountdownIter.test_expected_count_custom_decr [0.000310s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestCountdownIter.test_invalid_decr [0.000319s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestIterable.test_tuple [0.000277s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestMergeUri.test_merge [0.000372s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestMergeUri.test_merge_existing_hostname [0.000307s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(ten) [0.000278s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(empty) [0.000288s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(negative) [0.000293s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(one) [0.000286s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(abc) [0.000286s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestReversedEnumerate.test_sample_equivalence(ascii_letters) [0.000310s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(none) [0.000328s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(empty_dict) [0.000043s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(empty_list) [0.000179s] ... ok 389s /usr/lib/python3.13/unittest/case.py:597: RuntimeWarning: TestResult has no addDuration method 389s warnings.warn("TestResult has no addDuration method", 389s {1} taskflow.tests.unit.test_utils.TestSafeCopyDict.test_mutated_post_copy(dict) [0.000031s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSafeCopyDictRaises.test_exceptions(list) [0.000225s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSafeCopyDictRaises.test_exceptions(tuple) [0.000138s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSafeCopyDictRaises.test_exceptions(set) [0.000044s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSequenceMinus.test_equal_items_not_continious [0.000406s] ... ok 389s {1} taskflow.tests.unit.test_utils.TestSequenceMinus.test_some_items_are_equal [0.000453s] ... ok 389s {1} taskflow.tests.unit.test_utils.UriParseTest.test_ipv6_host [0.000507s] ... ok 389s {1} taskflow.tests.unit.test_utils.UriParseTest.test_user [0.000413s] ... ok 389s {1} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_simple_text [0.000445s] ... ok 389s {1} taskflow.tests.unit.test_utils_binary.BinaryDecodeTest.test_unicode_other_encoding [0.000420s] ... ok 389s {1} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_simple_text [0.000440s] ... ok 389s {1} taskflow.tests.unit.test_utils_binary.BinaryEncodeTest.test_unicode_text [0.000529s] ... ok 389s {1} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_it_works [0.000479s] ... ok 389s {1} taskflow.tests.unit.test_utils_binary.DecodeJsonTest.test_it_works_with_unicode [0.000350s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_fill [0.001416s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_unique_seen [0.000388s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_bad_while_is_not [0.000378s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_empty [0.000299s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_fill_many_empty [0.000350s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_find_first_match [0.000266s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_generate_delays [0.000288s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_unique_seen [0.000220s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_unique_seen_empty [0.000193s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_unique_seen_selector [0.000197s] ... ok 389s {1} taskflow.tests.unit.test_utils_iter_utils.IterUtilsTest.test_while_is_not [0.000226s] ... ok 389s {1} taskflow.tests.unit.test_utils_kazoo_utils.MakeClientTest.test_make_client_config [0.000658s] ... ok 389s {1} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_bind_invalid [0.000389s] ... ok 389s {1} taskflow.tests.unit.test_utils_threading_utils.TestThreadBundle.test_start_stop [0.102089s] ... ok 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 389s {1} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_custom [0.016833s] ... ok 389s WARNING [taskflow.utils.persistence_utils] No logbook provided for flow "linear_flow.Flow: test-flow(len=1)", creating one. 389s {1} taskflow.tests.unit.worker_based.test_creation.TestWorkerBasedActionEngine.test_creation_default [0.013070s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_dispatcher.TestDispatcher.test_failed_ack [0.004902s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_creation [0.000455s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_creation_task_with_constructor_args [0.000337s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_creation_with_task_name [0.000421s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_execute [0.000469s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_endpoint.TestEndpoint.test_revert [0.000453s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_creation [0.007236s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_execute_task_topic_not_found [0.009951s] ... ok 389s WARNING [taskflow.engines.worker_based.executor] The 'correlation_id' message property is missing in message ': {'content_type': , 'type': 'RESPONSE', 'body_length': 0}' 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_no_correlation_id [0.007699s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_message_response_state_success [0.007212s] ... ok 389s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 389s self._exception_str = _exception_message(self._exc_info[1]) 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_on_wait_task_expired [0.007879s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_start_stop [0.018462s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_stop_not_alive [0.008681s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_executor.TestWorkerTaskExecutor.test_stop_not_running [0.007945s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_message_pump.TestMessagePump.test_multi_message [0.023625s] ... ok 389s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 389s self._exception_str = _exception_message(self._exc_info[1]) 389s {1} taskflow.tests.unit.worker_based.test_pipeline.TestPipeline.test_execution_failure_pipeline [0.045022s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_pipeline.TestPipeline.test_execution_pipeline [0.045407s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_creation [0.001282s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_pending_not_expired [0.001152s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_request_transitions [0.001049s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_set_result [0.000572s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_default [0.000467s] ... ok 389s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 389s self._exception_str = _exception_message(self._exc_info[1]) 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_invalid_json_failures [0.000641s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocol.test_to_dict_with_result [0.000582s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_reply_notify [0.001143s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_reply_notify_invalid [0.002044s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_request_invalid_action [0.001763s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_mixed_invalid [0.001353s] ... ok 389s {1} taskflow.tests.unit.worker_based.test_protocol.TestProtocolValidation.test_response_progress [0.001410s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_creation_custom [0.122195s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_publish [0.100382s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_start [0.101478s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_start_with_on_wait [0.099015s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_proxy.TestProxy.test_stop [0.209386s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_creation [0.011009s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_creation_with_endpoints [0.011054s] ... ok 390s CRITICAL [taskflow.engines.worker_based.server] Failed to send reply to 'reply-to' for task 'task-uuid' with response 390s Traceback (most recent call last): 390s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 122, in _reply 390s self._proxy.publish(response, reply_to, correlation_id=task_uuid) 390s ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 390s File "/usr/lib/python3.13/unittest/mock.py", line 1167, in __call__ 390s return self._mock_call(*args, **kwargs) 390s ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 390s File "/usr/lib/python3.13/unittest/mock.py", line 1171, in _mock_call 390s return self._execute_mock_call(*args, **kwargs) 390s ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 390s File "/usr/lib/python3.13/unittest/mock.py", line 1226, in _execute_mock_call 390s raise effect 390s RuntimeError: Woot! 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_on_run_reply_failure [0.014852s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_on_update_progress [0.011431s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request [0.010472s] ... ok 390s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 390s self._exception_str = _exception_message(self._exc_info[1]) 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_parse_request_with_failures [0.010922s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request [0.011806s] ... ok 390s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 390s self._exception_str = _exception_message(self._exc_info[1]) 390s WARNING [taskflow.engines.worker_based.server] The 'unittest.mock.MagicMock' task endpoint does not exist, unable to continue processing request message ': {'content_type': , 'correlation_id': 'task-uuid', 'type': 'REQUEST', 'body_length': 0}' 390s Traceback (most recent call last): 390s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 188, in _process_request 390s endpoint = self._endpoints[work.task_cls] 390s ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^ 390s KeyError: 'unittest.mock.MagicMock' 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_endpoint_not_found [0.012381s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_parse_message_failure [0.011020s] ... ok 390s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 390s self._exception_str = _exception_message(self._exc_info[1]) 390s WARNING [taskflow.engines.worker_based.server] Failed to parse request contents from message ': {'content_type': , 'correlation_id': 'task-uuid', 'type': 'REQUEST', 'body_length': 0}' 390s Traceback (most recent call last): 390s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/server.py", line 177, in _process_request 390s work = pr.Request.from_dict(request, task_uuid=task_uuid) 390s File "/tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/engines/worker_based/protocol.py", line 466, in from_dict 390s arguments['result'] = ft.Failure.from_dict(result_data) 390s ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^ 390s File "/usr/lib/python3.13/unittest/mock.py", line 1167, in __call__ 390s return self._mock_call(*args, **kwargs) 390s ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 390s File "/usr/lib/python3.13/unittest/mock.py", line 1171, in _mock_call 390s return self._execute_mock_call(*args, **kwargs) 390s ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^ 390s File "/usr/lib/python3.13/unittest/mock.py", line 1226, in _execute_mock_call 390s raise effect 390s ValueError: Woot! 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_parse_request_failure [0.013608s] ... ok 390s /tmp/autopkgtest.Pt9kGK/build.RSd/src/taskflow/types/failure.py:198: DeprecationWarning: Using function/method 'exception_to_unicode()' is deprecated: Use str(exc) instead 390s self._exception_str = _exception_message(self._exc_info[1]) 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_process_request_task_failure [0.013328s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_reply_publish_failure [0.016203s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_start [0.012432s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_stop [0.011763s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_server.TestServer.test_wait [0.011906s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_types.TestTopicWorker.test_topic_worker [0.000545s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_banner_writing [0.017349s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_creation_with_custom_executor [0.016340s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_creation_with_custom_threads_count [0.016118s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_non_task_class [0.016120s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_modules [0.019303s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_non_existent_module [0.016237s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_non_existent_task [0.016321s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_string_non_task_class [0.016547s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_from_tasks [0.016458s] ... ok 390s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_derive_endpoints_unexpected_task_type [0.016287s] ... ok 391s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_run_with_tasks [0.020416s] ... ok 391s {1} taskflow.tests.unit.worker_based.test_worker.TestWorker.test_stop [0.016181s] ... ok 391s 391s ====== 391s Totals 391s ====== 391s Ran: 1755 tests in 76.9040 sec. 391s - Passed: 1645 391s - Skipped: 110 391s - Expected Fail: 0 391s - Unexpected Success: 0 391s - Failed: 0 391s Sum of execute time for each test: 131.0851 sec. 391s 391s ============== 391s Worker Balance 391s ============== 391s - Worker 0 (892 tests) => 0:00:54.526380 391s - Worker 1 (863 tests) => 0:01:16.793232 391s + rm -rf .stestr 391s /tmp/autopkgtest.Pt9kGK/wrapper.sh: checking for leaked background processes... 391s /tmp/autopkgtest.Pt9kGK/wrapper.sh: waiting for tee/cat subprocesses... 391s /tmp/autopkgtest.Pt9kGK/wrapper.sh: cleaning up... 391s /tmp/autopkgtest.Pt9kGK/wrapper.sh: Exit status: 0 391s autopkgtest: DBG: testbed command exited with code 0 391s autopkgtest [13:01:08]: test python-stestr: -----------------------] 391s autopkgtest: DBG: testbed executing test finished with exit status 0 391s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/python-stestr-stdout /tmp/autopkgtest-work.pr6y_vod/out/python-stestr-stdout 392s autopkgtest: DBG: got reply from testbed: ok 392s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/python-stestr-stderr /tmp/autopkgtest-work.pr6y_vod/out/python-stestr-stderr 392s autopkgtest: DBG: got reply from testbed: ok 392s autopkgtest [13:01:09]: test python-stestr: - - - - - - - - - - results - - - - - - - - - - 392s python-stestr PASS 392s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/python-stestr-artifacts/ /tmp/autopkgtest-work.pr6y_vod/out/artifacts/ 392s autopkgtest: DBG: got reply from testbed: ok 392s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Pt9kGK/python-stestr-artifacts', '/tmp/autopkgtest.Pt9kGK/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 393s autopkgtest: DBG: testbed command exited with code 0 393s autopkgtest [13:01:10]: test autodep8-python3: preparing testbed 393s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python-taskflow-doc', 'python3-taskflow', 'debhelper-compat (= 13)', 'dh-python', 'openstack-pkg-tools', 'python3-all', 'python3-pbr (>= 2.0.0)', 'python3-setuptools', 'python3-sphinx (>= 2.0.0)', 'python3-sphinxcontrib.jquery', 'alembic', 'python3-alembic (>= 0.8.10)', 'python3-automaton (>= 1.9.0)', 'python3-cachetools (>= 2.0.0)', 'python3-etcd3gw', 'python3-eventlet (>= 0.33.1-4ubuntu2~)', 'python3-fasteners (>= 0.17.3)', 'python3-futurist (>= 1.2.0)', 'python3-jsonschema (>= 3.2.0)', 'python3-kazoo (>= 2.6.0)', 'python3-kombu (>= 4.3.0)', 'python3-netifaces', 'python3-networkx (>= 2.1.0)', 'python3-openstackdocstheme (>= 2.2.1)', 'python3-oslo.serialization (>= 2.18.0)', 'python3-oslo.utils (>= 3.33.0)', 'python3-oslotest (>= 1:3.2.0)', 'python3-psycopg2 (>= 2.8.0)', 'python3-pyasyncore', 'python3-pydot (>= 1.2.4)', 'python3-pydotplus (>= 2.0.2)', 'python3-pymysql (>= 0.7.6)', 'python3-redis (>= 2.10.0)', 'python3-sqlalchemy (>= 1.0.10)', 'python3-sqlalchemy-utils (>= 0.36.1-0ubuntu2~)', 'python3-stestr (>= 2.0.0)', 'python3-stevedore (>= 1:1.20.0)', 'python3-subunit', 'python3-tenacity (>= 6.0.0)', 'python3-testscenarios (>= 0.4)', 'python3-testtools (>= 2.2.0)', 'python3-zake (>= 0.1.6)', 'subunit', 'build-essential'], deps_new=['python3-all', 'python3-taskflow'] 393s autopkgtest: DBG: testbed reset 393s autopkgtest: DBG: sending command to testbed: revert 507s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.Pt9kGK 507s autopkgtest: DBG: sending command to testbed: print-execute-command 507s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.j7vqqolt/runcmd 507s autopkgtest: DBG: sending command to testbed: capabilities 507s autopkgtest: DBG: got reply from testbed: ok ok suggested-normal-user=ubuntu revert-full-system revert isolation-machine reboot root-on-testbed 507s autopkgtest: DBG: testbed capabilities: ['ok', 'suggested-normal-user=ubuntu', 'revert-full-system', 'revert', 'isolation-machine', 'reboot', 'root-on-testbed', 'has_internet'] 507s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 507s autopkgtest: DBG: testbed command exited with code 0 507s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.Pt9kGK/wrapper.sh 508s autopkgtest: DBG: got reply from testbed: ok 508s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/wrapper.sh'], kind short, sout raw, serr pipe, env [] 508s autopkgtest: DBG: testbed command exited with code 0 508s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 508s autopkgtest: DBG: testbed command exited with code 0 508s autopkgtest [13:03:05]: testbed dpkg architecture: s390x 508s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 508s autopkgtest: DBG: testbed command exited with code 0 508s autopkgtest [13:03:05]: testbed apt version: 2.9.30 508s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 508s autopkgtest: DBG: testbed command exited with code 0 508s autopkgtest: DBG: testbed has eatmydata 508s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest [13:03:06]: @@@@@@@@@@@@@@@@@@@@ test bed setup 509s 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 [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest [13:03:06]: testbed release detected to be: plucky 509s 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 [] 509s autopkgtest: DBG: testbed command exited with code 0 509s 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 [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: adding APT source: Types: deb deb-src 509s URIs: http://ftpmaster.internal/ubuntu/ 509s Suites: plucky-proposed 509s Components: main restricted universe multiverse 509s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 509s 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 [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 509s Package: * 509s Pin: release plucky-proposed 509s Pin-Priority: 500 509s 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 [] 509s autopkgtest: DBG: testbed command exited with code 0 509s autopkgtest [13:03:06]: updating testbed package index (apt update) 509s 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'] 510s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 510s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 510s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 510s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 510s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 510s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 510s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 510s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 510s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 510s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 510s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 510s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 510s Fetched 1700 kB in 1s (1856 kB/s) 511s Reading package lists... 511s autopkgtest: DBG: testbed command exited with code 0 511s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 511s Package: * 511s Pin: release plucky-proposed 511s Pin-Priority: 100 511s 511s Package: src:sphinx:any 511s Pin: release plucky-proposed 511s Pin-Priority: 995 511s autopkgtest: DBG: testbed command ['sh', '-ec', '"$@" > "/etc/apt/preferences.d/autopkgtest-plucky-proposed.pref"', 'add_apt_preference', 'printf', '%s\\n', 'Package: *\nPin: release plucky-proposed\nPin-Priority: 100\n\nPackage: src:sphinx:any\nPin: release plucky-proposed\nPin-Priority: 995'], kind short, sout raw, serr pipe, env [] 511s autopkgtest: DBG: testbed command exited with code 0 511s 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.Pt9kGK/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 511s autopkgtest: DBG: testbed command exited with code 0 511s 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'] 512s + lsb_release --codename --short 512s + RELEASE=plucky 512s + cat 512s + [ plucky != trusty ] 512s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 512s Reading package lists... 512s Building dependency tree... 512s Reading state information... 512s Calculating upgrade... 512s The following packages were automatically installed and are no longer required: 512s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 512s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 512s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 512s linux-tools-6.11.0-8-generic 512s Use 'sudo apt autoremove' to remove them. 512s The following packages will be upgraded: 512s iproute2 liblsof0 libp11-kit0 lsof 512s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 512s Need to get 1791 kB of archives. 512s After this operation, 17.4 kB of additional disk space will be used. 512s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 513s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 513s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 513s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 513s Preconfiguring packages ... 513s Fetched 1791 kB in 1s (2755 kB/s) 513s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81030 files and directories currently installed.) 513s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 513s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 513s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 513s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 513s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 513s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 513s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 513s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 513s Setting up liblsof0 (4.99.4+dfsg-1) ... 513s Setting up iproute2 (6.13.0-1ubuntu1) ... 513s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 513s Setting up lsof (4.99.4+dfsg-1) ... 513s Processing triggers for man-db (2.13.0-1) ... 514s Processing triggers for libc-bin (2.40-4ubuntu1) ... 514s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 514s + /usr/lib/apt/apt-helper analyze-pattern ?true 514s + uname -r 514s + sed s/\./\\./g 514s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 514s + apt list ?obsolete 514s + tail+ cut -d/ -f1 514s -n+2 514s + grep -v ^linux-.*6\.12\.0-15-generic.* 514s + true 514s + obsolete_pkgs= 514s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 514s Reading package lists... 514s Building dependency tree... 514s Reading state information... 515s The following packages will be REMOVED: 515s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 515s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 515s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 515s linux-tools-6.11.0-8-generic* 515s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 515s After this operation, 167 MB disk space will be freed. 515s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 81031 files and directories currently installed.) 515s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 515s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 515s Removing libpython3.12t64:s390x (3.12.9-1) ... 515s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 515s Removing libnsl2:s390x (1.3.0-3build3) ... 515s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 515s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 515s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 516s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 516s Processing triggers for libc-bin (2.40-4ubuntu1) ... 516s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 516s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 516s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 516s + grep -q trusty /etc/lsb-release 516s + [ ! -d /usr/share/doc/unattended-upgrades ] 516s + [ ! -d /usr/share/doc/lxd ] 516s + [ ! -d /usr/share/doc/lxd-client ] 516s + [ ! -d /usr/share/doc/snapd ] 516s + type iptables 516s + cat 516s + chmod 755 /etc/rc.local 516s + . /etc/rc.local 516s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 516s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 516s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 516s + uname -m 516s + [ s390x = ppc64le ] 516s + [ -d /run/systemd/system ] 516s + systemd-detect-virt --quiet --vm 516s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 516s + cat 516s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 516s + echo COMPRESS=lz4 516s autopkgtest: DBG: testbed command exited with code 0 516s autopkgtest [13:03:13]: upgrading testbed (apt dist-upgrade and autopurge) 516s 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'] 516s Reading package lists... 517s Building dependency tree... 517s Reading state information... 517s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 517s Starting 2 pkgProblemResolver with broken count: 0 517s Done 517s Entering ResolveByKeep 517s 517s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 517s autopkgtest: DBG: testbed command exited with code 0 517s 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'] 518s Reading package lists... 518s Building dependency tree... 518s Reading state information... 518s Starting pkgProblemResolver with broken count: 0 518s Starting 2 pkgProblemResolver with broken count: 0 518s Done 518s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 518s autopkgtest: DBG: testbed command exited with code 0 518s 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.Pt9kGK/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 518s autopkgtest: DBG: testbed command exited with code 1 518s autopkgtest [13:03:15]: rebooting testbed after setup commands that affected boot 518s autopkgtest: DBG: sending command to testbed: reboot 539s autopkgtest: DBG: got reply from testbed: ok 539s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 539s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 539s autopkgtest: DBG: testbed command exited with code 0 539s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot 539s autopkgtest: DBG: got reply from testbed: ok 539s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 539s autopkgtest: DBG: testbed command exited with code 0 539s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare 540s autopkgtest: DBG: got reply from testbed: ok 540s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 540s autopkgtest: DBG: testbed command exited with code 0 540s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Pt9kGK/testbed-packages"], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/testbed-packages /tmp/autopkgtest-work.pr6y_vod/out/testbed-packages 541s autopkgtest: DBG: got reply from testbed: ok 541s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 541s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 541s autopkgtest: DBG: testbed command exited with code 0 541s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot 541s autopkgtest: DBG: got reply from testbed: ok 541s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare 542s autopkgtest: DBG: got reply from testbed: ok 542s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 542s autopkgtest: DBG: testbed command exited with code 0 542s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.Pt9kGK/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 543s autopkgtest: DBG: testbed command exited with code 0 543s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 543s autopkgtest: DBG: testbed command exited with code 0 543s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 543s autopkgtest: DBG: install_deps: deps_new=['python3-all', 'python3-taskflow'] 543s autopkgtest: DBG: install-deps: satisfying python3-all, python3-taskflow 543s autopkgtest: DBG: can use apt-get on testbed: True 543s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', 'satisfy', 'python3-all, python3-taskflow'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 543s Reading package lists... 543s Building dependency tree... 543s Reading state information... 543s Starting pkgProblemResolver with broken count: 0 543s Starting 2 pkgProblemResolver with broken count: 0 543s Done 544s The following NEW packages will be installed: 544s alembic libjs-jquery libjs-sphinxdoc libjs-underscore libnsl2 libpq5 544s libpython3.12-minimal libpython3.12-stdlib python3-alembic python3-all 544s python3-amqp python3-arrow python3-automaton python3-cachetools 544s python3-dateutil python3-debtcollector python3-dnspython python3-eventlet 544s python3-fasteners python3-futurist python3-greenlet 544s python3-importlib-metadata python3-iso8601 python3-kombu python3-mako 544s python3-monotonic python3-msgpack python3-networkx python3-oslo.i18n 544s python3-oslo.serialization python3-oslo.utils python3-packaging python3-pbr 544s python3-prettytable python3-psutil python3-psycopg2 python3-pyasyncore 544s python3-pymysql python3-six python3-sqlalchemy python3-sqlalchemy-utils 544s python3-stevedore python3-taskflow python3-tenacity python3-vine 544s python3-wcwidth python3-wrapt python3.12 python3.12-minimal 544s 0 upgraded, 49 newly installed, 0 to remove and 0 not upgraded. 544s Need to get 22.1 MB of archives. 544s After this operation, 124 MB of additional disk space will be used. 544s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 544s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 544s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 544s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 544s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 544s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3-importlib-metadata all 8.6.1-1 [20.7 kB] 544s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x python3-mako all 1.3.8-2 [63.5 kB] 544s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x python3-greenlet s390x 3.1.0-1 [176 kB] 544s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy all 2.0.38+ds1-0ubuntu1 [1215 kB] 544s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alembic all 1.13.2-4 [149 kB] 544s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 544s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 544s Get:13 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 544s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x alembic all 1.13.2-4 [294 kB] 544s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libpq5 s390x 17.3-3 [147 kB] 544s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 544s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dateutil all 2.9.0-3 [80.2 kB] 544s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x python3-arrow all 1.3.0-1.1ubuntu1 [56.1 kB] 544s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pbr all 6.1.1-0ubuntu1 [58.2 kB] 544s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wrapt s390x 1.15.0-4 [34.4 kB] 544s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x python3-debtcollector all 3.0.0-3 [13.3 kB] 544s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x python3-wcwidth all 0.2.13+dfsg1-1 [26.3 kB] 544s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x python3-prettytable all 3.12.0-1 [36.5 kB] 545s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x python3-automaton all 3.2.0-3 [15.0 kB] 545s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x python3-cachetools all 5.3.3-1 [10.3 kB] 545s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x python3-dnspython all 2.7.0-1ubuntu1 [167 kB] 545s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x python3-eventlet all 0.39.0-0ubuntu1 [277 kB] 545s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x python3-monotonic all 1.6-3 [5344 B] 545s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x python3-fasteners all 0.18-2 [12.5 kB] 545s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x python3-futurist all 3.0.0-3 [24.2 kB] 545s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x python3-vine all 5.1.0+dfsg-1 [14.2 kB] 545s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x python3-amqp all 5.3.1-2 [43.5 kB] 545s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x python3-kombu all 5.4.2-3 [145 kB] 545s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x python3-msgpack s390x 1.0.3-3build3 [117 kB] 545s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x python3-networkx all 3.2.1-4ubuntu1 [11.5 MB] 545s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.i18n all 6.5.0-0ubuntu1 [22.3 kB] 545s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x python3-iso8601 all 2.1.0-2 [9136 B] 545s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psutil s390x 5.9.8-2build3 [195 kB] 545s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 545s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.utils all 8.1.0-0ubuntu1 [88.4 kB] 545s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x python3-oslo.serialization all 5.6.0-0ubuntu1 [15.8 kB] 545s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x python3-psycopg2 s390x 2.9.10-1 [147 kB] 545s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pyasyncore all 1.0.2-3 [10.2 kB] 545s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pymysql all 1.1.1-2ubuntu1 [39.5 kB] 545s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x python3-six all 1.17.0-1 [13.2 kB] 545s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlalchemy-utils all 0.41.1-0ubuntu1 [59.4 kB] 545s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x python3-stevedore all 1:5.4.0-0ubuntu1 [21.1 kB] 545s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tenacity all 9.0.0-0ubuntu1 [17.0 kB] 545s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x python3-taskflow all 5.10.0-0ubuntu1 [261 kB] 545s Fetched 22.1 MB in 2s (13.5 MB/s) 546s Selecting previously unselected package libpython3.12-minimal:s390x. 546s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55929 files and directories currently installed.) 546s Preparing to unpack .../00-libpython3.12-minimal_3.12.9-1_s390x.deb ... 546s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 546s Selecting previously unselected package python3.12-minimal. 546s Preparing to unpack .../01-python3.12-minimal_3.12.9-1_s390x.deb ... 546s Unpacking python3.12-minimal (3.12.9-1) ... 546s Selecting previously unselected package libnsl2:s390x. 546s Preparing to unpack .../02-libnsl2_1.3.0-3build3_s390x.deb ... 546s Unpacking libnsl2:s390x (1.3.0-3build3) ... 546s Selecting previously unselected package libpython3.12-stdlib:s390x. 546s Preparing to unpack .../03-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 546s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 546s Selecting previously unselected package python3.12. 546s Preparing to unpack .../04-python3.12_3.12.9-1_s390x.deb ... 546s Unpacking python3.12 (3.12.9-1) ... 546s Selecting previously unselected package python3-importlib-metadata. 546s Preparing to unpack .../05-python3-importlib-metadata_8.6.1-1_all.deb ... 546s Unpacking python3-importlib-metadata (8.6.1-1) ... 546s Selecting previously unselected package python3-mako. 546s Preparing to unpack .../06-python3-mako_1.3.8-2_all.deb ... 546s Unpacking python3-mako (1.3.8-2) ... 546s Selecting previously unselected package python3-greenlet. 546s Preparing to unpack .../07-python3-greenlet_3.1.0-1_s390x.deb ... 546s Unpacking python3-greenlet (3.1.0-1) ... 546s Selecting previously unselected package python3-sqlalchemy. 546s Preparing to unpack .../08-python3-sqlalchemy_2.0.38+ds1-0ubuntu1_all.deb ... 546s Unpacking python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 546s Selecting previously unselected package python3-alembic. 546s Preparing to unpack .../09-python3-alembic_1.13.2-4_all.deb ... 546s Unpacking python3-alembic (1.13.2-4) ... 546s Selecting previously unselected package libjs-jquery. 546s Preparing to unpack .../10-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 546s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 546s Selecting previously unselected package libjs-underscore. 546s Preparing to unpack .../11-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 546s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 546s Selecting previously unselected package libjs-sphinxdoc. 546s Preparing to unpack .../12-libjs-sphinxdoc_8.1.3-5_all.deb ... 546s Unpacking libjs-sphinxdoc (8.1.3-5) ... 546s Selecting previously unselected package alembic. 546s Preparing to unpack .../13-alembic_1.13.2-4_all.deb ... 546s Unpacking alembic (1.13.2-4) ... 546s Selecting previously unselected package libpq5:s390x. 546s Preparing to unpack .../14-libpq5_17.3-3_s390x.deb ... 546s Unpacking libpq5:s390x (17.3-3) ... 546s Selecting previously unselected package python3-all. 546s Preparing to unpack .../15-python3-all_3.13.1-1~exp2_s390x.deb ... 546s Unpacking python3-all (3.13.1-1~exp2) ... 546s Selecting previously unselected package python3-dateutil. 546s Preparing to unpack .../16-python3-dateutil_2.9.0-3_all.deb ... 546s Unpacking python3-dateutil (2.9.0-3) ... 546s Selecting previously unselected package python3-arrow. 546s Preparing to unpack .../17-python3-arrow_1.3.0-1.1ubuntu1_all.deb ... 546s Unpacking python3-arrow (1.3.0-1.1ubuntu1) ... 546s Selecting previously unselected package python3-pbr. 546s Preparing to unpack .../18-python3-pbr_6.1.1-0ubuntu1_all.deb ... 546s Unpacking python3-pbr (6.1.1-0ubuntu1) ... 546s Selecting previously unselected package python3-wrapt. 546s Preparing to unpack .../19-python3-wrapt_1.15.0-4_s390x.deb ... 546s Unpacking python3-wrapt (1.15.0-4) ... 546s Selecting previously unselected package python3-debtcollector. 546s Preparing to unpack .../20-python3-debtcollector_3.0.0-3_all.deb ... 546s Unpacking python3-debtcollector (3.0.0-3) ... 546s Selecting previously unselected package python3-wcwidth. 546s Preparing to unpack .../21-python3-wcwidth_0.2.13+dfsg1-1_all.deb ... 546s Unpacking python3-wcwidth (0.2.13+dfsg1-1) ... 546s Selecting previously unselected package python3-prettytable. 546s Preparing to unpack .../22-python3-prettytable_3.12.0-1_all.deb ... 546s Unpacking python3-prettytable (3.12.0-1) ... 546s Selecting previously unselected package python3-automaton. 546s Preparing to unpack .../23-python3-automaton_3.2.0-3_all.deb ... 546s Unpacking python3-automaton (3.2.0-3) ... 546s Selecting previously unselected package python3-cachetools. 546s Preparing to unpack .../24-python3-cachetools_5.3.3-1_all.deb ... 546s Unpacking python3-cachetools (5.3.3-1) ... 546s Selecting previously unselected package python3-dnspython. 546s Preparing to unpack .../25-python3-dnspython_2.7.0-1ubuntu1_all.deb ... 546s Unpacking python3-dnspython (2.7.0-1ubuntu1) ... 546s Selecting previously unselected package python3-eventlet. 546s Preparing to unpack .../26-python3-eventlet_0.39.0-0ubuntu1_all.deb ... 546s Unpacking python3-eventlet (0.39.0-0ubuntu1) ... 546s Selecting previously unselected package python3-monotonic. 546s Preparing to unpack .../27-python3-monotonic_1.6-3_all.deb ... 546s Unpacking python3-monotonic (1.6-3) ... 546s Selecting previously unselected package python3-fasteners. 546s Preparing to unpack .../28-python3-fasteners_0.18-2_all.deb ... 546s Unpacking python3-fasteners (0.18-2) ... 546s Selecting previously unselected package python3-futurist. 546s Preparing to unpack .../29-python3-futurist_3.0.0-3_all.deb ... 546s Unpacking python3-futurist (3.0.0-3) ... 546s Selecting previously unselected package python3-vine. 546s Preparing to unpack .../30-python3-vine_5.1.0+dfsg-1_all.deb ... 546s Unpacking python3-vine (5.1.0+dfsg-1) ... 546s Selecting previously unselected package python3-amqp. 546s Preparing to unpack .../31-python3-amqp_5.3.1-2_all.deb ... 546s Unpacking python3-amqp (5.3.1-2) ... 546s Selecting previously unselected package python3-kombu. 546s Preparing to unpack .../32-python3-kombu_5.4.2-3_all.deb ... 546s Unpacking python3-kombu (5.4.2-3) ... 546s Selecting previously unselected package python3-msgpack. 546s Preparing to unpack .../33-python3-msgpack_1.0.3-3build3_s390x.deb ... 546s Unpacking python3-msgpack (1.0.3-3build3) ... 546s Selecting previously unselected package python3-networkx. 546s Preparing to unpack .../34-python3-networkx_3.2.1-4ubuntu1_all.deb ... 546s Unpacking python3-networkx (3.2.1-4ubuntu1) ... 547s Selecting previously unselected package python3-oslo.i18n. 547s Preparing to unpack .../35-python3-oslo.i18n_6.5.0-0ubuntu1_all.deb ... 547s Unpacking python3-oslo.i18n (6.5.0-0ubuntu1) ... 547s Selecting previously unselected package python3-iso8601. 547s Preparing to unpack .../36-python3-iso8601_2.1.0-2_all.deb ... 547s Unpacking python3-iso8601 (2.1.0-2) ... 547s Selecting previously unselected package python3-psutil. 547s Preparing to unpack .../37-python3-psutil_5.9.8-2build3_s390x.deb ... 547s Unpacking python3-psutil (5.9.8-2build3) ... 547s Selecting previously unselected package python3-packaging. 547s Preparing to unpack .../38-python3-packaging_24.2-1_all.deb ... 547s Unpacking python3-packaging (24.2-1) ... 547s Selecting previously unselected package python3-oslo.utils. 547s Preparing to unpack .../39-python3-oslo.utils_8.1.0-0ubuntu1_all.deb ... 547s Unpacking python3-oslo.utils (8.1.0-0ubuntu1) ... 547s Selecting previously unselected package python3-oslo.serialization. 547s Preparing to unpack .../40-python3-oslo.serialization_5.6.0-0ubuntu1_all.deb ... 547s Unpacking python3-oslo.serialization (5.6.0-0ubuntu1) ... 547s Selecting previously unselected package python3-psycopg2. 547s Preparing to unpack .../41-python3-psycopg2_2.9.10-1_s390x.deb ... 547s Unpacking python3-psycopg2 (2.9.10-1) ... 547s Selecting previously unselected package python3-pyasyncore. 547s Preparing to unpack .../42-python3-pyasyncore_1.0.2-3_all.deb ... 547s Unpacking python3-pyasyncore (1.0.2-3) ... 547s Selecting previously unselected package python3-pymysql. 547s Preparing to unpack .../43-python3-pymysql_1.1.1-2ubuntu1_all.deb ... 547s Unpacking python3-pymysql (1.1.1-2ubuntu1) ... 547s Selecting previously unselected package python3-six. 547s Preparing to unpack .../44-python3-six_1.17.0-1_all.deb ... 547s Unpacking python3-six (1.17.0-1) ... 547s Selecting previously unselected package python3-sqlalchemy-utils. 547s Preparing to unpack .../45-python3-sqlalchemy-utils_0.41.1-0ubuntu1_all.deb ... 547s Unpacking python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 547s Selecting previously unselected package python3-stevedore. 547s Preparing to unpack .../46-python3-stevedore_1%3a5.4.0-0ubuntu1_all.deb ... 547s Unpacking python3-stevedore (1:5.4.0-0ubuntu1) ... 547s Selecting previously unselected package python3-tenacity. 547s Preparing to unpack .../47-python3-tenacity_9.0.0-0ubuntu1_all.deb ... 547s Unpacking python3-tenacity (9.0.0-0ubuntu1) ... 547s Selecting previously unselected package python3-taskflow. 547s Preparing to unpack .../48-python3-taskflow_5.10.0-0ubuntu1_all.deb ... 547s Unpacking python3-taskflow (5.10.0-0ubuntu1) ... 547s Setting up python3-importlib-metadata (8.6.1-1) ... 547s Setting up python3-cachetools (5.3.3-1) ... 547s Setting up python3-pbr (6.1.1-0ubuntu1) ... 547s Setting up python3-tenacity (9.0.0-0ubuntu1) ... 548s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 548s Setting up libpq5:s390x (17.3-3) ... 548s Setting up python3-networkx (3.2.1-4ubuntu1) ... 550s Setting up python3-psutil (5.9.8-2build3) ... 551s Setting up python3-vine (5.1.0+dfsg-1) ... 551s Setting up python3-monotonic (1.6-3) ... 551s Setting up python3-six (1.17.0-1) ... 551s Setting up python3-packaging (24.2-1) ... 551s Setting up python3-iso8601 (2.1.0-2) ... 551s Setting up python3-wcwidth (0.2.13+dfsg1-1) ... 552s Setting up python3-greenlet (3.1.0-1) ... 552s Setting up python3-wrapt (1.15.0-4) ... 552s Setting up python3-psycopg2 (2.9.10-1) ... 552s Setting up python3-pymysql (1.1.1-2ubuntu1) ... 552s Setting up python3-fasteners (0.18-2) ... 552s Setting up python3-dnspython (2.7.0-1ubuntu1) ... 553s Setting up libnsl2:s390x (1.3.0-3build3) ... 553s Setting up python3-amqp (5.3.1-2) ... 553s Setting up python3-stevedore (1:5.4.0-0ubuntu1) ... 553s Setting up python3-dateutil (2.9.0-3) ... 554s Setting up python3-msgpack (1.0.3-3build3) ... 554s Setting up python3-pyasyncore (1.0.2-3) ... 554s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 554s Setting up python3-prettytable (3.12.0-1) ... 554s Setting up python3-oslo.i18n (6.5.0-0ubuntu1) ... 554s Setting up python3-mako (1.3.8-2) ... 554s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 554s Setting up python3.12-minimal (3.12.9-1) ... 555s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 555s Setting up python3-arrow (1.3.0-1.1ubuntu1) ... 556s Setting up python3.12 (3.12.9-1) ... 557s Setting up python3-all (3.13.1-1~exp2) ... 557s Setting up python3-futurist (3.0.0-3) ... 557s Setting up python3-debtcollector (3.0.0-3) ... 557s Setting up python3-kombu (5.4.2-3) ... 558s Setting up python3-sqlalchemy (2.0.38+ds1-0ubuntu1) ... 561s Setting up python3-eventlet (0.39.0-0ubuntu1) ... 561s Setting up python3-automaton (3.2.0-3) ... 561s Setting up libjs-sphinxdoc (8.1.3-5) ... 561s Setting up python3-alembic (1.13.2-4) ... 562s Setting up alembic (1.13.2-4) ... 562s Setting up python3-sqlalchemy-utils (0.41.1-0ubuntu1) ... 562s Setting up python3-oslo.utils (8.1.0-0ubuntu1) ... 562s Setting up python3-oslo.serialization (5.6.0-0ubuntu1) ... 563s Setting up python3-taskflow (5.10.0-0ubuntu1) ... 563s Processing triggers for systemd (257.2-3ubuntu1) ... 563s Processing triggers for man-db (2.13.0-1) ... 564s Processing triggers for libc-bin (2.40-4ubuntu1) ... 564s autopkgtest: DBG: testbed command exited with code 0 564s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-taskflow'], kind short, sout pipe, serr pipe, env [] 564s autopkgtest: DBG: testbed command exited with code 0 564s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.Pt9kGK/autodep8-python3-packages.all"], kind short, sout raw, serr pipe, env [] 564s autopkgtest: DBG: testbed command exited with code 0 564s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/autodep8-python3-packages.all /tmp/autopkgtest-work.pr6y_vod/out/autodep8-python3-packages.all 565s autopkgtest: DBG: got reply from testbed: ok 565s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.Pt9kGK/build.RSd/src'], kind short, sout raw, serr raw, env [] 565s autopkgtest: DBG: testbed command exited with code 1 565s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.Pt9kGK/build.RSd'], kind short, sout raw, serr pipe, env [] 565s autopkgtest: DBG: testbed command exited with code 0 565s autopkgtest: DBG: sending command to testbed: copydown /tmp/autopkgtest-work.pr6y_vod/out/tests-tree/ /tmp/autopkgtest.Pt9kGK/build.RSd/src/ 566s autopkgtest: DBG: got reply from testbed: ok 566s autopkgtest: DBG: testbed command ['chown', '-R', 'ubuntu', '--', '/tmp/autopkgtest.Pt9kGK/build.RSd/src'], kind short, sout raw, serr pipe, env [] 567s autopkgtest: DBG: testbed command exited with code 0 567s autopkgtest [13:04:04]: test autodep8-python3: set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import taskflow; print(taskflow)" ; done 567s autopkgtest [13:04:04]: test autodep8-python3: [----------------------- 567s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.Pt9kGK/wrapper.sh --debug --artifacts=/tmp/autopkgtest.Pt9kGK/autodep8-python3-artifacts --chdir=/tmp/autopkgtest.Pt9kGK/build.RSd/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.Pt9kGK/autodep8-python3-stderr --stdout=/tmp/autopkgtest.Pt9kGK/autodep8-python3-stdout --tmp=/tmp/autopkgtest.Pt9kGK/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec \'set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import taskflow; print(taskflow)" ; done\''], kind test, sout raw, serr raw, env [] 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.Pt9kGK/autodep8-python3-artifacts 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: changing to directory: /tmp/autopkgtest.Pt9kGK/build.RSd/src 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: LANG=C.UTF-8 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LANGUAGE 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_ADDRESS 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_ALL 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_COLLATE 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_CTYPE 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_IDENTIFICATION 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_MEASUREMENT 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_MESSAGES 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_MONETARY 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_NAME 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_NUMERIC 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_PAPER 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_TELEPHONE 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: unsetting environment: LC_TIME 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: pretending to be a login shell 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: will write standard error to /tmp/autopkgtest.Pt9kGK/autodep8-python3-stderr 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: will write stdout to /tmp/autopkgtest.Pt9kGK/autodep8-python3-stdout 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.Pt9kGK/autopkgtest_tmp 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: command to run: bash -ec set -e ; for py in $(py3versions -r 2>/dev/null) ; do cd "$AUTOPKGTEST_TMP" ; echo "Testing with $py:" ; $py -c "import taskflow; print(taskflow)" ; done 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: copying /tmp/tmp.xx2qt41JHW/out to stdout and file: /tmp/autopkgtest.Pt9kGK/autodep8-python3-stdout 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: copying /tmp/tmp.xx2qt41JHW/err to standard error and file: /tmp/autopkgtest.Pt9kGK/autodep8-python3-stdout 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: writing script pid 2029 to /tmp/autopkgtest_script_pid 567s Testing with python3.12: 567s 567s Testing with python3.13: 567s 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: checking for leaked background processes... 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: waiting for tee/cat subprocesses... 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: cleaning up... 567s /tmp/autopkgtest.Pt9kGK/wrapper.sh: Exit status: 0 567s autopkgtest: DBG: testbed command exited with code 0 567s autopkgtest [13:04:04]: test autodep8-python3: -----------------------] 567s autopkgtest: DBG: testbed executing test finished with exit status 0 567s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/autodep8-python3-stdout /tmp/autopkgtest-work.pr6y_vod/out/autodep8-python3-stdout 567s autopkgtest: DBG: got reply from testbed: ok 567s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/autodep8-python3-stderr /tmp/autopkgtest-work.pr6y_vod/out/autodep8-python3-stderr 567s autopkgtest: DBG: got reply from testbed: ok 568s autodep8-python3 PASS (superficial) 568s autopkgtest [13:04:05]: test autodep8-python3: - - - - - - - - - - results - - - - - - - - - - 568s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.Pt9kGK/autodep8-python3-artifacts/ /tmp/autopkgtest-work.pr6y_vod/out/artifacts/ 568s autopkgtest: DBG: got reply from testbed: ok 568s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.Pt9kGK/autodep8-python3-artifacts', '/tmp/autopkgtest.Pt9kGK/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 568s autopkgtest: DBG: testbed command exited with code 0 568s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 568s autopkgtest [13:04:05]: @@@@@@@@@@@@@@@@@@@@ summary 568s python-stestr PASS 568s autodep8-python3 PASS (superficial) 568s autopkgtest: DBG: testbed stop 568s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.Pt9kGK 568s autopkgtest: DBG: sending command to testbed: close 585s autopkgtest: DBG: got reply from testbed: ok 585s autopkgtest: DBG: sending command to testbed: quit 585s nova [W] Using flock in prodstack6-s390x 585s flock: timeout while waiting to get lock 585s Creating nova instance adt-plucky-s390x-python-taskflow-20250219-125436-juju-7f2275-prod-proposed-migration-environment-15-3b5a30a3-8180-4323-a038-67079c0422ce from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 585s nova [W] Timed out waiting for 9e4f53ad-6a0e-4111-9d30-10deda42cbb8 to get deleted. 585s nova [W] Using flock in prodstack6-s390x 585s Creating nova instance adt-plucky-s390x-python-taskflow-20250219-125436-juju-7f2275-prod-proposed-migration-environment-15-3b5a30a3-8180-4323-a038-67079c0422ce from image adt/ubuntu-plucky-s390x-server-20250219.img (UUID 7af5aa59-4155-4177-a560-02c7dd963d23)... 585s nova [W] Timed out waiting for ec7a2ca5-77e2-4726-9858-8a241fe212e3 to get deleted.