0s autopkgtest: DBG: testbed init 0s autopkgtest [12:37:03]: starting date and time: 2025-02-19 12:37:03+0000 0s autopkgtest [12:37:03]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [12:37:03]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.eb53_3ne/out --timeout-copy=6000 --setup-commands /home/ubuntu/autopkgtest-cloud/worker-config-production/setup-canonical.sh --apt-pocket=proposed=src:sphinx --apt-upgrade python-django --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-14.secgroup --name adt-plucky-s390x-python-django-20250219-123703-juju-7f2275-prod-proposed-migration-environment-15-f39c7b89-0e99-49cc-a7af-aa3d7dc9dccd --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 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.mbTieI 108s autopkgtest: DBG: sending command to testbed: print-execute-command 108s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.qkod1paj/runcmd 108s autopkgtest: DBG: sending command to testbed: capabilities 108s autopkgtest: DBG: got reply from testbed: ok isolation-machine suggested-normal-user=ubuntu revert-full-system reboot revert root-on-testbed 108s autopkgtest: DBG: testbed capabilities: ['isolation-machine', 'suggested-normal-user=ubuntu', 'revert-full-system', 'reboot', 'revert', 'root-on-testbed', 'has_internet'] 108s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.mbTieI'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.mbTieI/wrapper.sh 108s autopkgtest: DBG: got reply from testbed: ok 108s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.mbTieI/wrapper.sh'], kind short, sout raw, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 108s autopkgtest: DBG: testbed command exited with code 0 108s autopkgtest [12:38:51]: testbed dpkg architecture: s390x 108s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:38:52]: testbed apt version: 2.9.30 109s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest: DBG: testbed has eatmydata 109s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:38:52]: @@@@@@@@@@@@@@@@@@@@ test bed setup 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s autopkgtest [12:38:52]: testbed release detected to be: None 109s 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 [] 109s autopkgtest: DBG: testbed command exited with code 0 109s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT source: Types: deb deb-src 110s URIs: http://ftpmaster.internal/ubuntu/ 110s Suites: plucky-proposed 110s Components: main restricted universe multiverse 110s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 110s Package: * 110s Pin: release plucky-proposed 110s Pin-Priority: 500 110s 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 [] 110s autopkgtest: DBG: testbed command exited with code 0 110s autopkgtest [12:38:53]: updating testbed package index (apt update) 110s 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'] 110s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 110s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 111s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 111s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 111s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [750 kB] 111s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [76.1 kB] 111s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [13.9 kB] 111s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/restricted Sources [3120 B] 111s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [95.1 kB] 111s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/restricted s390x Packages [760 B] 111s Get:11 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [646 kB] 111s Get:12 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [4900 B] 111s Fetched 1700 kB in 1s (1763 kB/s) 112s Reading package lists... 112s autopkgtest: DBG: testbed command exited with code 0 112s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 112s Package: * 112s Pin: release plucky-proposed 112s Pin-Priority: 100 112s 112s Package: src:sphinx:any 112s Pin: release plucky-proposed 112s Pin-Priority: 995 112s 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 [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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.mbTieI/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 112s autopkgtest: DBG: testbed command exited with code 0 112s 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'] 112s + lsb_release --codename --short 112s + RELEASE=plucky 112s + cat 112s + [ plucky != trusty ] 112s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 112s Reading package lists... 112s Building dependency tree... 112s Reading state information... 112s Calculating upgrade... 113s The following packages were automatically installed and are no longer required: 113s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 113s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 113s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 113s linux-tools-6.11.0-8-generic 113s Use 'sudo apt autoremove' to remove them. 113s The following packages will be upgraded: 113s iproute2 liblsof0 libp11-kit0 lsof 113s 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 113s Need to get 1791 kB of archives. 113s After this operation, 17.4 kB of additional disk space will be used. 113s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x iproute2 s390x 6.13.0-1ubuntu1 [1174 kB] 113s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit0 s390x 0.25.5-2ubuntu3 [316 kB] 113s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x lsof s390x 4.99.4+dfsg-1 [243 kB] 113s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x liblsof0 s390x 4.99.4+dfsg-1 [58.5 kB] 114s Preconfiguring packages ... 114s Fetched 1791 kB in 1s (2939 kB/s) 114s (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.) 114s Preparing to unpack .../iproute2_6.13.0-1ubuntu1_s390x.deb ... 114s Unpacking iproute2 (6.13.0-1ubuntu1) over (6.10.0-2ubuntu1) ... 114s Preparing to unpack .../libp11-kit0_0.25.5-2ubuntu3_s390x.deb ... 114s Unpacking libp11-kit0:s390x (0.25.5-2ubuntu3) over (0.25.5-2ubuntu2) ... 114s Preparing to unpack .../lsof_4.99.4+dfsg-1_s390x.deb ... 114s Unpacking lsof (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 114s Preparing to unpack .../liblsof0_4.99.4+dfsg-1_s390x.deb ... 114s Unpacking liblsof0 (4.99.4+dfsg-1) over (4.99.3+dfsg-2) ... 114s Setting up liblsof0 (4.99.4+dfsg-1) ... 114s Setting up iproute2 (6.13.0-1ubuntu1) ... 114s Setting up libp11-kit0:s390x (0.25.5-2ubuntu3) ... 114s Setting up lsof (4.99.4+dfsg-1) ... 114s Processing triggers for man-db (2.13.0-1) ... 115s Processing triggers for libc-bin (2.40-4ubuntu1) ... 115s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 115s + /usr/lib/apt/apt-helper analyze-pattern ?true 115s + uname -r 115s + sed s/\./\\./g 115s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 115s + apt list ?obsolete 115s + tail -n+2+ cut 115s -d/ -f1 115s + grep -v ^linux-.*6\.12\.0-15-generic.* 115s + true 115s + obsolete_pkgs= 115s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 115s Reading package lists... 115s Building dependency tree... 115s Reading state information... 115s The following packages will be REMOVED: 115s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 115s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 115s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 115s linux-tools-6.11.0-8-generic* 115s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 115s After this operation, 167 MB disk space will be freed. 115s (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.) 115s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 115s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 115s Removing libpython3.12t64:s390x (3.12.9-1) ... 115s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 116s Removing libnsl2:s390x (1.3.0-3build3) ... 116s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 116s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 116s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 117s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 117s Processing triggers for libc-bin (2.40-4ubuntu1) ... 117s (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 55931 files and directories currently installed.) 117s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 117s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 117s + grep -q trusty /etc/lsb-release 117s + [ ! -d /usr/share/doc/unattended-upgrades ] 117s + [ ! -d /usr/share/doc/lxd ] 117s + [ ! -d /usr/share/doc/lxd-client ] 117s + [ ! -d /usr/share/doc/snapd ] 117s + type iptables 117s + cat 117s + chmod 755 /etc/rc.local 117s + . /etc/rc.local 117s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 117s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 117s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 117s + uname -m 117s + [ s390x = ppc64le ] 117s + [ -d /run/systemd/system ] 117s + systemd-detect-virt --quiet --vm 117s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 117s + cat 117s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 117s + echo COMPRESS=lz4 117s autopkgtest: DBG: testbed command exited with code 0 117s autopkgtest [12:39:00]: upgrading testbed (apt dist-upgrade and autopurge) 117s 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'] 117s Reading package lists... 117s Building dependency tree... 117s Reading state information... 117s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 118s Starting 2 pkgProblemResolver with broken count: 0 118s Done 118s Entering ResolveByKeep 118s 118s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 118s autopkgtest: DBG: testbed command exited with code 0 118s autopkgtest: DBG: testbed command ['/bin/sh', '-ec', '"$@" 3>&2 2>&1', 'run_apt_command', '/usr/bin/eatmydata', 'apt-get', '--quiet', '--assume-yes', '-o=APT::Status-Fd=3', '-o=APT::Install-Recommends=false', '-o=Dpkg::Options::=--force-confnew', '-o=Debug::pkgProblemResolver=true', '--purge', 'autoremove'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 118s Reading package lists... 118s Building dependency tree... 118s Reading state information... 119s Starting pkgProblemResolver with broken count: 0 119s Starting 2 pkgProblemResolver with broken count: 0 119s Done 119s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 119s autopkgtest: DBG: testbed command exited with code 0 119s autopkgtest: DBG: testbed command ['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.mbTieI/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 119s autopkgtest: DBG: testbed command exited with code 1 119s autopkgtest [12:39:02]: rebooting testbed after setup commands that affected boot 119s autopkgtest: DBG: sending command to testbed: reboot 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.mbTieI'], 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.sh /tmp/autopkgtest.mbTieI/autopkgtest-reboot 139s autopkgtest: DBG: got reply from testbed: ok 139s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.mbTieI/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.mbTieI/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.mbTieI/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.mbTieI'], kind short, sout raw, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.mbTieI/autopkgtest-reboot-prepare 140s autopkgtest: DBG: got reply from testbed: ok 140s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.mbTieI/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.mbTieI/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 [12:39:23]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 140s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 140s autopkgtest: DBG: testbed command exited with code 0 140s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.mbTieI/testbed-packages"], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/testbed-packages /tmp/autopkgtest-work.eb53_3ne/out/testbed-packages 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 141s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.mbTieI'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.mbTieI/autopkgtest-reboot 141s autopkgtest: DBG: got reply from testbed: ok 141s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.mbTieI/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 141s autopkgtest: DBG: testbed command exited with code 0 141s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.mbTieI/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.mbTieI/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.mbTieI'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.mbTieI/autopkgtest-reboot-prepare 142s autopkgtest: DBG: got reply from testbed: ok 142s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.mbTieI/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.mbTieI/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 142s autopkgtest: DBG: testbed command exited with code 0 142s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: Binaries: initialising 143s autopkgtest [12:39:26]: @@@@@@@@@@@@@@@@@@@@ apt-source python-django 143s autopkgtest: DBG: blame += python-django 143s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 143s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'python-django'], kind short, sout pipe, serr pipe, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python3-django$'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python3-django=3:4.2.18-1'], kind short, sout pipe, serr raw, env [] 143s autopkgtest: DBG: testbed command exited with code 0 143s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^python-django-doc$'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'python-django-doc=3:4.2.18-1'], kind short, sout pipe, serr raw, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: install_deps: deps_new=[] 144s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 144s autopkgtest: DBG: testbed command exited with code 0 144s autopkgtest: DBG: testbed command ['sh', '-ec', 'su --shell=/bin/sh ubuntu -c \'set -e; exec 3>&1 >&2; set -x; cd /; builddir=$(mktemp -d /tmp/autopkgtest.mbTieI/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source python-django=3:4.2.18-1 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x python-django_*.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'] 144s + cd / 144s + mktemp -d /tmp/autopkgtest.mbTieI/build.XXX 144s + builddir=/tmp/autopkgtest.mbTieI/build.3wQ 144s + cd /tmp/autopkgtest.mbTieI/build.3wQ 144s + apt-get source -d -q --only-source python-django=3:4.2.18-1 146s + OUT=Reading package lists... 146s NOTICE: 'python-django' packaging is maintained in the 'Git' version control system at: 146s https://salsa.debian.org/python-team/packages/python-django.git 146s Please use: 146s git clone https://salsa.debian.org/python-team/packages/python-django.git 146s to retrieve the latest (possibly unreleased) updates to the package. 146s Need to get 10.5 MB of source archives. 146s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (dsc) [2764 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (tar) [10.4 MB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (diff) [33.3 kB] 146s Fetched 10.5 MB in 1s (7387 kB/s) 146s Download complete and in download only mode 146s + [ -n ] 146s + echo Reading package lists... 146s NOTICE: 'python-django' packaging is maintained in the 'Git' version control system at: 146s https://salsa.debian.org/python-team/packages/python-django.git 146s Please use: 146s git clone https://salsa.debian.org/python-team/packages/python-django.git 146s to retrieve the latest (possibly unreleased) updates to the package. 146s Need to get 10.5 MB of source archives. 146s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (dsc) [2764 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (tar) [10.4 MB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (diff) [33.3 kB] 146s Fetched 10.5 MB in 1s (7387 kB/s) 146s Download complete and in download only mode 146s + grep ^Get: 146s Get:1 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (dsc) [2764 B] 146s Get:2 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (tar) [10.4 MB] 146s Get:3 http://ftpmaster.internal/ubuntu plucky/main python-django 3:4.2.18-1 (diff) [33.3 kB] 146s + dpkg-source -x python-django_4.2.18-1.dsc src 146s gpgv: Signature made Wed Jan 15 17:46:48 2025 UTC 146s gpgv: using RSA key C2FE4BD271C139B86C533E461E953E27D4311E58 146s gpgv: Can't check signature: No public key 146s dpkg-source: warning: cannot verify inline signature for ./python-django_4.2.18-1.dsc: no acceptable signature found 146s + chmod -R a+rX . 146s + cd src/. 146s + pwd 146s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 146s autopkgtest: DBG: testbed command exited with code 0 146s autopkgtest [12:39:29]: testing package python-django version 3:4.2.18-1 146s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/build.3wQ/src/debian/ /tmp/autopkgtest-work.eb53_3ne/out/pkg/debian/ 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: processing dependency python3-django 147s autopkgtest: DBG: marked alternatives ['python3-django'] as a synthesised dependency 147s autopkgtest: DBG: Test defined: name command1 path None command "debian/tests/django-admin" restrictions [] features [] depends ['python3-django'] 147s autopkgtest: DBG: processing dependency @ 147s autopkgtest: DBG: synthesised dependency python3-django 147s autopkgtest: DBG: synthesised dependency python-django-doc 147s autopkgtest: DBG: processing dependency @builddeps@ 147s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 147s autopkgtest: DBG: synthesised dependency dh-python 147s autopkgtest: DBG: synthesised dependency dpkg-dev (>= 1.17.14) 147s autopkgtest: DBG: synthesised dependency libgdal-dev 147s autopkgtest: DBG: synthesised dependency libsqlite3-mod-spatialite 147s autopkgtest: DBG: synthesised dependency python-django-formtools-doc 147s autopkgtest: DBG: synthesised dependency python-psycopg2-doc 147s autopkgtest: DBG: synthesised dependency python3-all 147s autopkgtest: DBG: synthesised dependency python3-asgiref 147s autopkgtest: DBG: synthesised dependency python3-bcrypt 147s autopkgtest: DBG: synthesised dependency python3-doc 147s autopkgtest: DBG: synthesised dependency python3-docutils 147s autopkgtest: DBG: synthesised dependency python3-jinja2 147s autopkgtest: DBG: synthesised dependency python3-numpy 147s autopkgtest: DBG: synthesised dependency python3-pil 147s autopkgtest: DBG: synthesised dependency python3-selenium 147s autopkgtest: DBG: synthesised dependency python3-setuptools 147s autopkgtest: DBG: synthesised dependency python3-sphinx 147s autopkgtest: DBG: synthesised dependency python3-sqlparse 147s autopkgtest: DBG: synthesised dependency python3-tblib 147s autopkgtest: DBG: synthesised dependency python3-tz 147s autopkgtest: DBG: synthesised dependency python3-yaml 147s autopkgtest: DBG: synthesised dependency libjs-jquery 147s autopkgtest: DBG: synthesised dependency build-essential 147s autopkgtest: DBG: Test defined: name command2 path None command "debian/tests/test-suite" restrictions ['allow-stderr'] features [] depends ['python3-django', 'python-django-doc', 'debhelper-compat (= 13)', 'dh-python', 'dpkg-dev (>= 1.17.14)', 'libgdal-dev ', 'libsqlite3-mod-spatialite ', 'python-django-formtools-doc ', 'python-psycopg2-doc ', 'python3-all', 'python3-asgiref ', 'python3-bcrypt ', 'python3-doc ', 'python3-docutils ', 'python3-jinja2 ', 'python3-numpy ', 'python3-pil ', 'python3-selenium ', 'python3-setuptools', 'python3-sphinx', 'python3-sqlparse ', 'python3-tblib ', 'python3-tz ', 'python3-yaml ', 'libjs-jquery', 'build-essential'] 147s autopkgtest [12:39:30]: build not needed 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/build.3wQ/src/ /tmp/autopkgtest-work.eb53_3ne/out/tests-tree/ 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: processing dependency python3-django 149s autopkgtest: DBG: marked alternatives ['python3-django'] as a synthesised dependency 149s autopkgtest: DBG: Test defined: name command1 path None command "debian/tests/django-admin" restrictions [] features [] depends ['python3-django'] 149s autopkgtest: DBG: processing dependency @ 149s autopkgtest: DBG: synthesised dependency python3-django 149s autopkgtest: DBG: synthesised dependency python-django-doc 149s autopkgtest: DBG: processing dependency @builddeps@ 149s autopkgtest: DBG: synthesised dependency debhelper-compat (= 13) 149s autopkgtest: DBG: synthesised dependency dh-python 149s autopkgtest: DBG: synthesised dependency dpkg-dev (>= 1.17.14) 149s autopkgtest: DBG: synthesised dependency libgdal-dev 149s autopkgtest: DBG: synthesised dependency libsqlite3-mod-spatialite 149s autopkgtest: DBG: synthesised dependency python-django-formtools-doc 149s autopkgtest: DBG: synthesised dependency python-psycopg2-doc 149s autopkgtest: DBG: synthesised dependency python3-all 149s autopkgtest: DBG: synthesised dependency python3-asgiref 149s autopkgtest: DBG: synthesised dependency python3-bcrypt 149s autopkgtest: DBG: synthesised dependency python3-doc 149s autopkgtest: DBG: synthesised dependency python3-docutils 149s autopkgtest: DBG: synthesised dependency python3-jinja2 149s autopkgtest: DBG: synthesised dependency python3-numpy 149s autopkgtest: DBG: synthesised dependency python3-pil 149s autopkgtest: DBG: synthesised dependency python3-selenium 149s autopkgtest: DBG: synthesised dependency python3-setuptools 149s autopkgtest: DBG: synthesised dependency python3-sphinx 149s autopkgtest: DBG: synthesised dependency python3-sqlparse 149s autopkgtest: DBG: synthesised dependency python3-tblib 149s autopkgtest: DBG: synthesised dependency python3-tz 149s autopkgtest: DBG: synthesised dependency python3-yaml 149s autopkgtest: DBG: synthesised dependency libjs-jquery 149s autopkgtest: DBG: synthesised dependency build-essential 149s autopkgtest: DBG: Test defined: name command2 path None command "debian/tests/test-suite" restrictions ['allow-stderr'] features [] depends ['python3-django', 'python-django-doc', 'debhelper-compat (= 13)', 'dh-python', 'dpkg-dev (>= 1.17.14)', 'libgdal-dev ', 'libsqlite3-mod-spatialite ', 'python-django-formtools-doc ', 'python-psycopg2-doc ', 'python3-all', 'python3-asgiref ', 'python3-bcrypt ', 'python3-doc ', 'python3-docutils ', 'python3-jinja2 ', 'python3-numpy ', 'python3-pil ', 'python3-selenium ', 'python3-setuptools', 'python3-sphinx', 'python3-sqlparse ', 'python3-tblib ', 'python3-tz ', 'python3-yaml ', 'libjs-jquery', 'build-essential'] 149s autopkgtest [12:39:32]: test command1: preparing testbed 149s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['python3-django'] 149s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 149s autopkgtest: DBG: install_deps: deps_new=['python3-django'] 149s autopkgtest: DBG: install-deps: satisfying python3-django 149s autopkgtest: DBG: can use apt-get on testbed: True 149s 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-django'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 149s Reading package lists... 150s Building dependency tree... 150s Reading state information... 150s Starting pkgProblemResolver with broken count: 0 150s Starting 2 pkgProblemResolver with broken count: 0 150s Done 150s The following NEW packages will be installed: 150s python3-asgiref python3-django python3-sqlparse 150s 0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded. 150s Need to get 2976 kB of archives. 150s After this operation, 26.0 MB of additional disk space will be used. 150s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x python3-asgiref all 3.8.1-1 [24.8 kB] 150s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sqlparse all 0.5.3-1 [32.9 kB] 150s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x python3-django all 3:4.2.18-1 [2918 kB] 151s Fetched 2976 kB in 1s (3702 kB/s) 151s Selecting previously unselected package python3-asgiref. 151s (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.) 151s Preparing to unpack .../python3-asgiref_3.8.1-1_all.deb ... 151s Unpacking python3-asgiref (3.8.1-1) ... 151s Selecting previously unselected package python3-sqlparse. 151s Preparing to unpack .../python3-sqlparse_0.5.3-1_all.deb ... 151s Unpacking python3-sqlparse (0.5.3-1) ... 151s Selecting previously unselected package python3-django. 151s Preparing to unpack .../python3-django_3%3a4.2.18-1_all.deb ... 151s Unpacking python3-django (3:4.2.18-1) ... 152s Setting up python3-sqlparse (0.5.3-1) ... 152s Setting up python3-asgiref (3.8.1-1) ... 152s Setting up python3-django (3:4.2.18-1) ... 153s Processing triggers for man-db (2.13.0-1) ... 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-django'], kind short, sout pipe, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.mbTieI/command1-packages.all"], kind short, sout raw, serr pipe, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/command1-packages.all /tmp/autopkgtest-work.eb53_3ne/out/command1-packages.all 154s autopkgtest: DBG: got reply from testbed: ok 154s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.mbTieI/build.3wQ/src'], kind short, sout raw, serr raw, env [] 154s autopkgtest: DBG: testbed command exited with code 0 154s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.mbTieI/build.3wQ/src already exists 154s autopkgtest [12:39:37]: test command1: debian/tests/django-admin 154s autopkgtest [12:39:37]: test command1: [----------------------- 154s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.mbTieI/wrapper.sh --debug --artifacts=/tmp/autopkgtest.mbTieI/command1-artifacts --chdir=/tmp/autopkgtest.mbTieI/build.3wQ/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.mbTieI/command1-stderr --stdout=/tmp/autopkgtest.mbTieI/command1-stdout --tmp=/tmp/autopkgtest.mbTieI/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec debian/tests/django-admin'], kind test, sout raw, serr raw, env [] 154s /tmp/autopkgtest.mbTieI/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.mbTieI/command1-artifacts 154s /tmp/autopkgtest.mbTieI/wrapper.sh: changing to directory: /tmp/autopkgtest.mbTieI/build.3wQ/src 154s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 154s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 154s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 154s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 154s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: LANG=C.UTF-8 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LANGUAGE 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_ADDRESS 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_ALL 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_COLLATE 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_CTYPE 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_IDENTIFICATION 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_MEASUREMENT 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_MESSAGES 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_MONETARY 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_NAME 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_NUMERIC 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_PAPER 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_TELEPHONE 154s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_TIME 154s /tmp/autopkgtest.mbTieI/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 154s /tmp/autopkgtest.mbTieI/wrapper.sh: pretending to be a login shell 154s /tmp/autopkgtest.mbTieI/wrapper.sh: will write standard error to /tmp/autopkgtest.mbTieI/command1-stderr 154s /tmp/autopkgtest.mbTieI/wrapper.sh: will write stdout to /tmp/autopkgtest.mbTieI/command1-stdout 154s /tmp/autopkgtest.mbTieI/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.mbTieI/autopkgtest_tmp 154s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 154s /tmp/autopkgtest.mbTieI/wrapper.sh: command to run: bash -ec debian/tests/django-admin 154s /tmp/autopkgtest.mbTieI/wrapper.sh: copying /tmp/tmp.thEBM6gyBr/out to stdout and file: /tmp/autopkgtest.mbTieI/command1-stdout 154s /tmp/autopkgtest.mbTieI/wrapper.sh: copying /tmp/tmp.thEBM6gyBr/err to standard error and file: /tmp/autopkgtest.mbTieI/command1-stdout 154s /tmp/autopkgtest.mbTieI/wrapper.sh: writing script pid 1360 to /tmp/autopkgtest_script_pid 154s Running “django-admin startproject testproject” 155s OK: testproject/manage.py is there 155s OK: testproject/testproject/settings.py is there 155s Running “django-admin startapp testapp” 155s OK: testapp/models.py is there 155s OK: testapp/tests.py is there 155s OK: testapp/views.py is there 155s System check identified no issues (0 silenced). 155s /tmp/autopkgtest.mbTieI/wrapper.sh: checking for leaked background processes... 155s /tmp/autopkgtest.mbTieI/wrapper.sh: waiting for tee/cat subprocesses... 155s /tmp/autopkgtest.mbTieI/wrapper.sh: cleaning up... 155s /tmp/autopkgtest.mbTieI/wrapper.sh: Exit status: 0 155s autopkgtest: DBG: testbed command exited with code 0 155s autopkgtest [12:39:38]: test command1: -----------------------] 155s autopkgtest: DBG: testbed executing test finished with exit status 0 155s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/command1-stdout /tmp/autopkgtest-work.eb53_3ne/out/command1-stdout 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/command1-stderr /tmp/autopkgtest-work.eb53_3ne/out/command1-stderr 156s autopkgtest: DBG: got reply from testbed: ok 156s command1 PASS 156s autopkgtest [12:39:39]: test command1: - - - - - - - - - - results - - - - - - - - - - 156s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/command1-artifacts/ /tmp/autopkgtest-work.eb53_3ne/out/artifacts/ 156s autopkgtest: DBG: got reply from testbed: ok 156s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.mbTieI/command1-artifacts', '/tmp/autopkgtest.mbTieI/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 156s autopkgtest: DBG: testbed command exited with code 0 156s autopkgtest [12:39:39]: test command2: preparing testbed 156s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['python3-django'], deps_new=['python3-django', 'python-django-doc', 'debhelper-compat (= 13)', 'dh-python', 'dpkg-dev (>= 1.17.14)', 'libgdal-dev ', 'libsqlite3-mod-spatialite ', 'python-django-formtools-doc ', 'python-psycopg2-doc ', 'python3-all', 'python3-asgiref ', 'python3-bcrypt ', 'python3-doc ', 'python3-docutils ', 'python3-jinja2 ', 'python3-numpy ', 'python3-pil ', 'python3-selenium ', 'python3-setuptools', 'python3-sphinx', 'python3-sqlparse ', 'python3-tblib ', 'python3-tz ', 'python3-yaml ', 'libjs-jquery', 'build-essential'] 156s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 156s autopkgtest: DBG: install_deps: deps_new=['python3-django', 'python-django-doc', 'debhelper-compat (= 13)', 'dh-python', 'dpkg-dev (>= 1.17.14)', 'libgdal-dev ', 'libsqlite3-mod-spatialite ', 'python-django-formtools-doc ', 'python-psycopg2-doc ', 'python3-all', 'python3-asgiref ', 'python3-bcrypt ', 'python3-doc ', 'python3-docutils ', 'python3-jinja2 ', 'python3-numpy ', 'python3-pil ', 'python3-selenium ', 'python3-setuptools', 'python3-sphinx', 'python3-sqlparse ', 'python3-tblib ', 'python3-tz ', 'python3-yaml ', 'libjs-jquery', 'build-essential'] 156s autopkgtest: DBG: install-deps: satisfying python3-django, python-django-doc, debhelper-compat (= 13), dh-python, dpkg-dev (>= 1.17.14), libgdal-dev , libsqlite3-mod-spatialite , python-django-formtools-doc , python-psycopg2-doc , python3-all, python3-asgiref , python3-bcrypt , python3-doc , python3-docutils , python3-jinja2 , python3-numpy , python3-pil , python3-selenium , python3-setuptools, python3-sphinx, python3-sqlparse , python3-tblib , python3-tz , python3-yaml , libjs-jquery, build-essential 156s autopkgtest: DBG: can use apt-get on testbed: True 156s 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-django, python-django-doc, debhelper-compat (= 13), dh-python, dpkg-dev (>= 1.17.14), libgdal-dev , libsqlite3-mod-spatialite , python-django-formtools-doc , python-psycopg2-doc , python3-all, python3-asgiref , python3-bcrypt , python3-doc , python3-docutils , python3-jinja2 , python3-numpy , python3-pil , python3-selenium , python3-setuptools, python3-sphinx, python3-sqlparse , python3-tblib , python3-tz , python3-yaml , libjs-jquery, build-essential'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 156s Reading package lists... 156s Building dependency tree... 156s Reading state information... 157s Starting pkgProblemResolver with broken count: 0 157s Starting 2 pkgProblemResolver with broken count: 0 157s Done 157s The following NEW packages will be installed: 157s autoconf automake autopoint autotools-dev build-essential cfortran 157s comerr-dev cpp cpp-14 cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper 157s debugedit default-libmysqlclient-dev dh-autoreconf dh-python 157s dh-strip-nondeterminism docutils-common dwz fontconfig-config 157s fonts-dejavu-core fonts-dejavu-mono g++ g++-14 g++-14-s390x-linux-gnu 157s g++-s390x-linux-gnu gcc gcc-14 gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu 157s gdal-data gdal-plugins gettext hdf5-helpers icu-devtools intltool-debian 157s krb5-multidev libaec-dev libaec0 libaom-dev libaom3 libarchive-zip-perl 157s libarmadillo-dev libarmadillo14 libarpack2-dev libarpack2t64 libasan8 157s libavif-dev libavif16 libblas-dev libblas3 libblosc-dev libblosc1 157s libboost-dev libboost1.83-dev libbrotli-dev libcc1-0 libcfitsio-dev 157s libcfitsio10t64 libcurl4-openssl-dev libdav1d-dev libdav1d7 libde265-0 157s libdebhelper-perl libdeflate-dev libdeflate0 libevent-2.1-7t64 libexpat1-dev 157s libfile-stripnondeterminism-perl libfontconfig1 libfreetype6 libfreexl-dev 157s libfreexl1 libfyba-dev libfyba0t64 libgcc-14-dev libgdal-dev libgdal36 157s libgeos-c1t64 libgeos-dev libgeos3.13.0 libgeotiff-dev libgeotiff5 157s libgfortran5 libgif-dev libgif7 libgmp-dev libgmpxx4ldbl libgnutls-dane0t64 157s libgnutls-openssl27t64 libgnutls28-dev libgomp1 libgpgmepp6t64 157s libgraphite2-3 libgssrpc4t64 libharfbuzz0b libhdf4-0-alt libhdf4-alt-dev 157s libhdf5-310 libhdf5-cpp-310 libhdf5-dev libhdf5-fortran-310 libhdf5-hl-310 157s libhdf5-hl-cpp-310 libhdf5-hl-fortran-310 libheif-dev libheif-plugin-aomdec 157s libheif-plugin-libde265 libheif1 libicu-dev libidn2-dev libimagequant0 157s libisl23 libitm1 libjbig-dev libjbig0 libjpeg-dev libjpeg-turbo8 157s libjpeg-turbo8-dev libjpeg8 libjpeg8-dev libjs-jquery libjs-sphinxdoc 157s libjs-underscore libjson-c-dev libjson-perl libkadm5clnt-mit12 157s libkadm5srv-mit12 libkdb5-10t64 libkml-dev libkmlbase1t64 157s libkmlconvenience1t64 libkmldom1t64 libkmlengine1t64 libkmlregionator1t64 157s libkmlxsd1t64 libkrb5-dev liblapack-dev liblapack3 liblcms2-2 libldap-dev 157s libltdl-dev libltdl7 liblz4-dev liblzma-dev libminizip-dev libminizip1t64 157s libmpc3 libmysqlclient-dev libmysqlclient24 libnetcdf-dev libnetcdf22 157s libnghttp2-dev libnsl2 libodbc2 libodbccr2 libodbcinst2 libogdi-dev 157s libogdi4.1 libopenjp2-7 libopenjp2-7-dev libp11-kit-dev libpcre2-16-0 157s libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpkgconf3 libpng-dev 157s libpoppler-dev libpoppler-private-dev libpoppler145 libpq-dev libpq5 157s libproj-dev libproj25 libpsl-dev libpython3.12-minimal libpython3.12-stdlib 157s libqhull-dev libqhull-r8.0 libqhull8.0 libqhullcpp8.0 libraqm0 librav1e-dev 157s librav1e0.7 librtmp-dev librttopo-dev librttopo1 libsharpyuv-dev 157s libsharpyuv0 libsnappy1v5 libspatialite-dev libspatialite8t64 libsqlite3-dev 157s libsqlite3-mod-spatialite libssh2-1-dev libssl-dev libstdc++-14-dev 157s libsuperlu-dev libsuperlu7 libsvtav1enc-dev libsvtav1enc2 libsz2 157s libtasn1-6-dev libtiff-dev libtiff6 libtiffxx6 libtirpc-dev libtool 157s libubsan1 libunbound8 liburiparser-dev liburiparser1 libwebp-dev libwebp7 157s libwebpdecoder3 libwebpdemux2 libwebpmux3 libxerces-c-dev libxerces-c3.2t64 157s libxml2-dev libxxhash-dev libyuv-dev libyuv0 libzstd-dev m4 mysql-common 157s nettle-dev pkgconf pkgconf-bin po-debconf proj-data python-django-doc 157s python-django-formtools-doc python-psycopg2-doc python3-alabaster 157s python3-all python3-defusedxml python3-doc python3-docutils python3-h11 157s python3-imagesize python3-numpy python3-outcome python3-packaging 157s python3-pil python3-pytz python3-roman python3-selenium python3-sniffio 157s python3-snowballstemmer python3-sortedcontainers python3-sphinx 157s python3-tblib python3-trio python3-trio-websocket python3-tz 157s python3-websocket python3-wsproto python3.12 python3.12-minimal 157s python3.13-doc sgml-base sphinx-common unixodbc-common unixodbc-dev xml-core 157s zlib1g-dev 157s 0 upgraded, 268 newly installed, 0 to remove and 0 not upgraded. 157s Need to get 193 MB of archives. 157s After this operation, 906 MB of additional disk space will be used. 157s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-minimal s390x 3.12.9-1 [836 kB] 158s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12-minimal s390x 3.12.9-1 [2403 kB] 159s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x sgml-base all 1.31 [11.4 kB] 159s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x libnsl2 s390x 1.3.0-3build3 [44.1 kB] 159s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x libpython3.12-stdlib s390x 3.12.9-1 [2071 kB] 159s Get:6 http://ftpmaster.internal/ubuntu plucky/main s390x python3.12 s390x 3.12.9-1 [671 kB] 159s Get:7 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 159s Get:8 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 159s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 159s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 159s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 159s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 160s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 160s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [9571 kB] 161s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-17ubuntu1 [1030 B] 161s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [5556 B] 161s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.2.0-1ubuntu1 [22.4 kB] 161s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 15-20250213-1ubuntu1 [49.2 kB] 161s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 15-20250213-1ubuntu1 [151 kB] 161s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 15-20250213-1ubuntu1 [31.2 kB] 161s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 15-20250213-1ubuntu1 [2970 kB] 161s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 15-20250213-1ubuntu1 [1213 kB] 161s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-17ubuntu1 [1037 kB] 161s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [18.7 MB] 162s Get:25 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-17ubuntu1 [526 kB] 162s Get:26 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [1204 B] 162s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.2.0-1ubuntu1 [5004 B] 162s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libstdc++-14-dev s390x 14.2.0-17ubuntu1 [2611 kB] 162s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14-s390x-linux-gnu s390x 14.2.0-17ubuntu1 [11.0 MB] 163s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x g++-14 s390x 14.2.0-17ubuntu1 [21.8 kB] 163s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x g++-s390x-linux-gnu s390x 4:14.2.0-1ubuntu1 [956 B] 163s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x g++ s390x 4:14.2.0-1ubuntu1 [1080 B] 163s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x build-essential s390x 12.10ubuntu1 [4930 B] 163s Get:34 http://ftpmaster.internal/ubuntu plucky/universe s390x cfortran all 20210827-1 [69.6 kB] 163s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.24.1ubuntu2 [95.4 kB] 163s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 163s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 163s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 163s Get:39 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 163s Get:40 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 163s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 163s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 163s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 163s Get:44 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 163s Get:45 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 163s Get:46 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.24.1ubuntu2 [895 kB] 163s Get:47 http://ftpmaster.internal/ubuntu plucky/main s390x mysql-common all 5.8+1.1.1 [6800 B] 163s Get:48 http://ftpmaster.internal/ubuntu plucky/main s390x libmysqlclient24 s390x 8.4.4-0ubuntu1 [1295 kB] 163s Get:49 http://ftpmaster.internal/ubuntu plucky/main s390x libssl-dev s390x 3.4.0-1ubuntu2 [2427 kB] 163s Get:50 http://ftpmaster.internal/ubuntu plucky/main s390x libzstd-dev s390x 1.5.6+dfsg-2 [408 kB] 163s Get:51 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 163s Get:52 http://ftpmaster.internal/ubuntu plucky/main s390x libmysqlclient-dev s390x 8.4.4-0ubuntu1 [1689 kB] 163s Get:53 http://ftpmaster.internal/ubuntu plucky/main s390x default-libmysqlclient-dev s390x 1.1.1 [3182 B] 163s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x dh-python all 6.20250108 [117 kB] 163s Get:55 http://ftpmaster.internal/ubuntu plucky/main s390x xml-core all 0.19 [20.3 kB] 163s Get:56 http://ftpmaster.internal/ubuntu plucky/main s390x docutils-common all 0.21.2+dfsg-2 [131 kB] 163s Get:57 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-mono all 2.37-8 [502 kB] 163s Get:58 http://ftpmaster.internal/ubuntu plucky/main s390x fonts-dejavu-core all 2.37-8 [835 kB] 163s Get:59 http://ftpmaster.internal/ubuntu plucky/main s390x fontconfig-config s390x 2.15.0-2ubuntu1 [37.5 kB] 163s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-data all 3.10.2+dfsg-1build1 [269 kB] 163s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x gdal-plugins s390x 3.10.2+dfsg-1build1 [25.6 kB] 163s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x hdf5-helpers s390x 1.14.5+repack-3 [17.0 kB] 163s Get:63 http://ftpmaster.internal/ubuntu plucky/main s390x icu-devtools s390x 76.1-1ubuntu2 [225 kB] 163s Get:64 http://ftpmaster.internal/ubuntu plucky/main s390x comerr-dev s390x 2.1-1.47.2-1ubuntu1 [44.7 kB] 163s Get:65 http://ftpmaster.internal/ubuntu plucky/main s390x libgssrpc4t64 s390x 1.21.3-4ubuntu1 [59.1 kB] 163s Get:66 http://ftpmaster.internal/ubuntu plucky/main s390x libkadm5clnt-mit12 s390x 1.21.3-4ubuntu1 [40.5 kB] 163s Get:67 http://ftpmaster.internal/ubuntu plucky/main s390x libkdb5-10t64 s390x 1.21.3-4ubuntu1 [41.9 kB] 163s Get:68 http://ftpmaster.internal/ubuntu plucky/main s390x libkadm5srv-mit12 s390x 1.21.3-4ubuntu1 [55.6 kB] 163s Get:69 http://ftpmaster.internal/ubuntu plucky/main s390x krb5-multidev s390x 1.21.3-4ubuntu1 [125 kB] 163s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec0 s390x 1.1.3-1 [25.7 kB] 163s Get:71 http://ftpmaster.internal/ubuntu plucky/main s390x libaom3 s390x 3.12.0-1 [1492 kB] 164s Get:72 http://ftpmaster.internal/ubuntu plucky/main s390x libaom-dev s390x 3.12.0-1 [1657 kB] 164s Get:73 http://ftpmaster.internal/ubuntu plucky/main s390x libblas3 s390x 3.12.1-2 [252 kB] 164s Get:74 http://ftpmaster.internal/ubuntu plucky/main s390x libgfortran5 s390x 15-20250213-1ubuntu1 [620 kB] 164s Get:75 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack3 s390x 3.12.1-2 [2971 kB] 164s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x libarpack2t64 s390x 3.9.1-4 [110 kB] 164s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x libarmadillo14 s390x 1:14.2.3+dfsg-1 [110 kB] 164s Get:78 http://ftpmaster.internal/ubuntu plucky/main s390x libblas-dev s390x 3.12.1-2 [254 kB] 164s Get:79 http://ftpmaster.internal/ubuntu plucky/main s390x liblapack-dev s390x 3.12.1-2 [5967 kB] 164s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x libarpack2-dev s390x 3.9.1-4 [127 kB] 164s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x libsz2 s390x 1.1.3-1 [5442 B] 164s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-310 s390x 1.14.5+repack-3 [1477 kB] 164s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-fortran-310 s390x 1.14.5+repack-3 [115 kB] 164s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-310 s390x 1.14.5+repack-3 [61.0 kB] 164s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-fortran-310 s390x 1.14.5+repack-3 [32.5 kB] 164s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-cpp-310 s390x 1.14.5+repack-3 [117 kB] 164s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-hl-cpp-310 s390x 1.14.5+repack-3 [11.7 kB] 164s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8 s390x 2.1.5-3ubuntu2 [147 kB] 164s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-turbo8-dev s390x 2.1.5-3ubuntu2 [281 kB] 164s Get:90 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8 s390x 8c-2ubuntu11 [2146 B] 164s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg8-dev s390x 8c-2ubuntu11 [1484 B] 164s Get:92 http://ftpmaster.internal/ubuntu plucky/main s390x libjpeg-dev s390x 8c-2ubuntu11 [1484 B] 164s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x libaec-dev s390x 1.1.3-1 [23.3 kB] 164s Get:94 http://ftpmaster.internal/ubuntu plucky/main s390x libbrotli-dev s390x 1.1.0-2build3 [395 kB] 164s Get:95 http://ftpmaster.internal/ubuntu plucky/main s390x libidn2-dev s390x 2.3.7-2build2 [122 kB] 164s Get:96 http://ftpmaster.internal/ubuntu plucky/main s390x libkrb5-dev s390x 1.21.3-4ubuntu1 [11.9 kB] 164s Get:97 http://ftpmaster.internal/ubuntu plucky/main s390x libldap-dev s390x 2.6.9+dfsg-1~exp2ubuntu1 [316 kB] 164s Get:98 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 164s Get:99 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 165s Get:100 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 165s Get:101 http://ftpmaster.internal/ubuntu plucky/main s390x libnghttp2-dev s390x 1.64.0-1 [121 kB] 165s Get:102 http://ftpmaster.internal/ubuntu plucky/main s390x libpsl-dev s390x 0.21.2-1.1build1 [77.3 kB] 165s Get:103 http://ftpmaster.internal/ubuntu plucky/main s390x libgmpxx4ldbl s390x 2:6.3.0+dfsg-2ubuntu7 [10.1 kB] 165s Get:104 http://ftpmaster.internal/ubuntu plucky/main s390x libgmp-dev s390x 2:6.3.0+dfsg-2ubuntu7 [424 kB] 165s Get:105 http://ftpmaster.internal/ubuntu plucky/main s390x libevent-2.1-7t64 s390x 2.1.12-stable-10 [145 kB] 165s Get:106 http://ftpmaster.internal/ubuntu plucky/main s390x libunbound8 s390x 1.22.0-1ubuntu1 [462 kB] 165s Get:107 http://ftpmaster.internal/ubuntu plucky/main s390x libgnutls-dane0t64 s390x 3.8.9-2ubuntu1 [24.5 kB] 165s Get:108 http://ftpmaster.internal/ubuntu plucky/main s390x libgnutls-openssl27t64 s390x 3.8.9-2ubuntu1 [24.5 kB] 165s Get:109 http://ftpmaster.internal/ubuntu plucky/main s390x libp11-kit-dev s390x 0.25.5-2ubuntu3 [23.5 kB] 165s Get:110 http://ftpmaster.internal/ubuntu plucky/main s390x libtasn1-6-dev s390x 4.20.0-2 [94.8 kB] 165s Get:111 http://ftpmaster.internal/ubuntu plucky/main s390x nettle-dev s390x 3.10.1-1 [1198 kB] 165s Get:112 http://ftpmaster.internal/ubuntu plucky/main s390x libgnutls28-dev s390x 3.8.9-2ubuntu1 [1016 kB] 165s Get:113 http://ftpmaster.internal/ubuntu plucky/main s390x librtmp-dev s390x 2.4+20151223.gitfa8646d.1-2build7 [69.2 kB] 165s Get:114 http://ftpmaster.internal/ubuntu plucky/main s390x libssh2-1-dev s390x 1.11.1-1 [287 kB] 165s Get:115 http://ftpmaster.internal/ubuntu plucky/main s390x libcurl4-openssl-dev s390x 8.12.0+git20250209.89ed161+ds-1ubuntu1 [513 kB] 165s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf5-dev s390x 1.14.5+repack-3 [3385 kB] 166s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x libsuperlu7 s390x 7.0.0+dfsg1-2 [233 kB] 166s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x libsuperlu-dev s390x 7.0.0+dfsg1-2 [20.8 kB] 166s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x libarmadillo-dev s390x 1:14.2.3+dfsg-1 [413 kB] 166s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d7 s390x 1.5.1-1 [312 kB] 166s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x libdav1d-dev s390x 1.5.1-1 [25.5 kB] 166s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e0.7 s390x 0.7.1-9 [845 kB] 166s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librav1e-dev s390x 0.7.1-9 [12.4 kB] 166s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc2 s390x 2.3.0+dfsg-1 [2294 kB] 166s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x libsvtav1enc-dev s390x 2.3.0+dfsg-1 [23.9 kB] 166s Get:126 http://ftpmaster.internal/ubuntu plucky/main s390x libyuv0 s390x 0.0.1904.20250204-1 [127 kB] 166s Get:127 http://ftpmaster.internal/ubuntu plucky/main s390x libyuv-dev s390x 0.0.1904.20250204-1 [182 kB] 166s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x libavif16 s390x 1.1.1-1ubuntu1 [103 kB] 166s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x libavif-dev s390x 1.1.1-1ubuntu1 [31.7 kB] 166s Get:130 http://ftpmaster.internal/ubuntu plucky/main s390x libsnappy1v5 s390x 1.2.1-1 [33.0 kB] 166s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x libblosc1 s390x 1.21.5+ds-1build1 [27.7 kB] 166s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x libblosc-dev s390x 1.21.5+ds-1build1 [34.2 kB] 166s Get:133 http://ftpmaster.internal/ubuntu plucky/main s390x libboost1.83-dev s390x 1.83.0-4.1ubuntu1 [10.7 MB] 167s Get:134 http://ftpmaster.internal/ubuntu plucky/main s390x libboost-dev s390x 1.83.0.2ubuntu1 [4470 B] 167s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x libcfitsio10t64 s390x 4.5.0-5 [607 kB] 167s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x libcfitsio-dev s390x 4.5.0-5 [699 kB] 167s Get:137 http://ftpmaster.internal/ubuntu plucky/main s390x libde265-0 s390x 1.0.15-1build4 [175 kB] 167s Get:138 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate0 s390x 1.23-1 [46.1 kB] 167s Get:139 http://ftpmaster.internal/ubuntu plucky/main s390x libdeflate-dev s390x 1.23-1 [52.2 kB] 167s Get:140 http://ftpmaster.internal/ubuntu plucky/main s390x libexpat1-dev s390x 2.6.4-1 [146 kB] 167s Get:141 http://ftpmaster.internal/ubuntu plucky/main s390x libfreetype6 s390x 2.13.3+dfsg-1 [431 kB] 167s Get:142 http://ftpmaster.internal/ubuntu plucky/main s390x libfontconfig1 s390x 2.15.0-2ubuntu1 [150 kB] 167s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x libfyba0t64 s390x 4.1.1-11build1 [125 kB] 167s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x libfyba-dev s390x 4.1.1-11build1 [184 kB] 167s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x libminizip1t64 s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [24.6 kB] 167s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x libfreexl1 s390x 2.0.0-1build2 [46.5 kB] 167s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos3.13.0 s390x 3.13.0-1 [966 kB] 167s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos-c1t64 s390x 3.13.0-1 [93.3 kB] 167s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x proj-data all 9.5.1-1 [7924 kB] 167s Get:150 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig0 s390x 2.1-6.1ubuntu2 [33.1 kB] 167s Get:151 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv0 s390x 1.5.0-0.1 [16.7 kB] 167s Get:152 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp7 s390x 1.5.0-0.1 [210 kB] 167s Get:153 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff6 s390x 4.5.1+git230720-4ubuntu4 [217 kB] 167s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x libproj25 s390x 9.5.1-1 [1452 kB] 168s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeotiff5 s390x 1.7.3-1 [66.4 kB] 168s Get:156 http://ftpmaster.internal/ubuntu plucky/main s390x libgif7 s390x 5.2.2-1ubuntu1 [38.0 kB] 168s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf4-0-alt s390x 4.3.0-1 [300 kB] 168s Get:158 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-aomdec s390x 1.19.5-1build1 [11.6 kB] 168s Get:159 http://ftpmaster.internal/ubuntu plucky/main s390x libheif-plugin-libde265 s390x 1.19.5-1build1 [9066 B] 168s Get:160 http://ftpmaster.internal/ubuntu plucky/main s390x libheif1 s390x 1.19.5-1build1 [410 kB] 168s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x liburiparser1 s390x 0.9.8+dfsg-2 [42.4 kB] 168s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlbase1t64 s390x 1.3.0-12build1 [50.5 kB] 168s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmldom1t64 s390x 1.3.0-12build1 [151 kB] 168s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlengine1t64 s390x 1.3.0-12build1 [68.9 kB] 168s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetcdf22 s390x 1:4.9.3-1 [533 kB] 168s Get:166 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl7 s390x 2.5.4-3build1 [43.9 kB] 168s Get:167 http://ftpmaster.internal/ubuntu plucky/main s390x libodbc2 s390x 2.3.12-2ubuntu1 [163 kB] 168s Get:168 http://ftpmaster.internal/ubuntu plucky/main s390x unixodbc-common all 2.3.12-2ubuntu1 [9044 B] 168s Get:169 http://ftpmaster.internal/ubuntu plucky/main s390x libodbcinst2 s390x 2.3.12-2ubuntu1 [32.2 kB] 168s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x libogdi4.1 s390x 4.1.1+ds-5 [219 kB] 168s Get:171 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7 s390x 2.5.0-2ubuntu3 [208 kB] 168s Get:172 http://ftpmaster.internal/ubuntu plucky/main s390x libgpgmepp6t64 s390x 1.24.1-4ubuntu1 [125 kB] 168s Get:173 http://ftpmaster.internal/ubuntu plucky/main s390x liblcms2-2 s390x 2.16-2 [175 kB] 168s Get:174 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler145 s390x 25.01.0-4 [1233 kB] 168s Get:175 http://ftpmaster.internal/ubuntu plucky/main s390x libpq5 s390x 17.3-3 [147 kB] 168s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-r8.0 s390x 2020.2-6build1 [199 kB] 168s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librttopo1 s390x 1.1.0-3build2 [200 kB] 168s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x libspatialite8t64 s390x 5.1.0-3build1 [2050 kB] 168s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x libxerces-c3.2t64 s390x 3.2.4+debian-1.3build1 [938 kB] 168s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdal36 s390x 3.10.2+dfsg-1build1 [9640 kB] 169s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeos-dev s390x 3.13.0-1 [56.3 kB] 169s Get:182 http://ftpmaster.internal/ubuntu plucky/main s390x libgif-dev s390x 5.2.2-1ubuntu1 [25.7 kB] 169s Get:183 http://ftpmaster.internal/ubuntu plucky/main s390x libgraphite2-3 s390x 1.3.14-2ubuntu1 [79.8 kB] 169s Get:184 http://ftpmaster.internal/ubuntu plucky/main s390x libharfbuzz0b s390x 10.2.0-1 [538 kB] 169s Get:185 http://ftpmaster.internal/ubuntu plucky/main s390x libsharpyuv-dev s390x 1.5.0-0.1 [17.3 kB] 169s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x libheif-dev s390x 1.19.5-1build1 [48.4 kB] 169s Get:187 http://ftpmaster.internal/ubuntu plucky/main s390x libicu-dev s390x 76.1-1ubuntu2 [12.2 MB] 170s Get:188 http://ftpmaster.internal/ubuntu plucky/main s390x libimagequant0 s390x 2.18.0-1build1 [43.3 kB] 170s Get:189 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB] 170s Get:190 http://ftpmaster.internal/ubuntu plucky/main s390x libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [118 kB] 170s Get:191 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libjs-sphinxdoc all 8.1.3-5 [31.0 kB] 170s Get:192 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-perl all 4.10000-1 [81.9 kB] 170s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlconvenience1t64 s390x 1.3.0-12build1 [48.9 kB] 170s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlregionator1t64 s390x 1.3.0-12build1 [21.1 kB] 170s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x libkmlxsd1t64 s390x 1.3.0-12build1 [29.9 kB] 170s Get:196 http://ftpmaster.internal/ubuntu plucky/main s390x libltdl-dev s390x 2.5.4-3build1 [173 kB] 170s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x libminizip-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [32.6 kB] 170s Get:198 http://ftpmaster.internal/ubuntu plucky/main s390x libxml2-dev s390x 2.12.7+dfsg+really2.9.14-0.2ubuntu3 [823 kB] 170s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x libnetcdf-dev s390x 1:4.9.3-1 [62.9 kB] 170s Get:200 http://ftpmaster.internal/ubuntu plucky/main s390x libodbccr2 s390x 2.3.12-2ubuntu1 [20.1 kB] 170s Get:201 http://ftpmaster.internal/ubuntu plucky/main s390x libtirpc-dev s390x 1.3.4+ds-1.3 [196 kB] 170s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x libogdi-dev s390x 4.1.1+ds-5 [23.0 kB] 170s Get:203 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-16-0 s390x 10.42-4ubuntu3 [236 kB] 170s Get:204 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-32-0 s390x 10.42-4ubuntu3 [221 kB] 170s Get:205 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-posix3 s390x 10.42-4ubuntu3 [6820 B] 170s Get:206 http://ftpmaster.internal/ubuntu plucky/main s390x libpcre2-dev s390x 10.42-4ubuntu3 [815 kB] 170s Get:207 http://ftpmaster.internal/ubuntu plucky/main s390x libpng-dev s390x 1.6.46-4 [283 kB] 170s Get:208 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler-dev s390x 25.01.0-4 [5186 B] 170s Get:209 http://ftpmaster.internal/ubuntu plucky/main s390x libpoppler-private-dev s390x 25.01.0-4 [187 kB] 170s Get:210 http://ftpmaster.internal/ubuntu plucky/main s390x libpq-dev s390x 17.3-3 [160 kB] 170s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull8.0 s390x 2020.2-6build1 [199 kB] 170s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhullcpp8.0 s390x 2020.2-6build1 [55.3 kB] 170s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x libqhull-dev s390x 2020.2-6build1 [505 kB] 171s Get:214 http://ftpmaster.internal/ubuntu plucky/main s390x libraqm0 s390x 0.10.2-1 [15.8 kB] 171s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x librttopo-dev s390x 1.1.0-3build2 [250 kB] 171s Get:216 http://ftpmaster.internal/ubuntu plucky/main s390x libsqlite3-dev s390x 3.46.1-1 [975 kB] 171s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x libsqlite3-mod-spatialite s390x 5.1.0-3build1 [2056 kB] 171s Get:218 http://ftpmaster.internal/ubuntu plucky/main s390x libjbig-dev s390x 2.1-6.1ubuntu2 [30.6 kB] 171s Get:219 http://ftpmaster.internal/ubuntu plucky/main s390x liblzma-dev s390x 5.6.3-1 [183 kB] 171s Get:220 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdemux2 s390x 1.5.0-0.1 [12.6 kB] 171s Get:221 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpmux3 s390x 1.5.0-0.1 [25.8 kB] 171s Get:222 http://ftpmaster.internal/ubuntu plucky/main s390x libwebpdecoder3 s390x 1.5.0-0.1 [90.2 kB] 171s Get:223 http://ftpmaster.internal/ubuntu plucky/main s390x libwebp-dev s390x 1.5.0-0.1 [341 kB] 171s Get:224 http://ftpmaster.internal/ubuntu plucky/main s390x libtiffxx6 s390x 4.5.1+git230720-4ubuntu4 [5894 B] 171s Get:225 http://ftpmaster.internal/ubuntu plucky/main s390x libtiff-dev s390x 4.5.1+git230720-4ubuntu4 [357 kB] 171s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x liburiparser-dev s390x 0.9.8+dfsg-2 [15.8 kB] 171s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x libxerces-c-dev s390x 3.2.4+debian-1.3build1 [1803 kB] 171s Get:228 http://ftpmaster.internal/ubuntu plucky/main s390x libxxhash-dev s390x 0.8.3-2 [83.6 kB] 171s Get:229 http://ftpmaster.internal/ubuntu plucky/main s390x python-django-doc all 3:4.2.18-1 [3462 kB] 171s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x python-django-formtools-doc all 2.4.1-3 [46.6 kB] 171s Get:231 http://ftpmaster.internal/ubuntu plucky/main s390x python-psycopg2-doc all 2.9.10-1 [310 kB] 171s Get:232 http://ftpmaster.internal/ubuntu plucky/main s390x python3-all s390x 3.13.1-1~exp2 [898 B] 171s Get:233 http://ftpmaster.internal/ubuntu plucky/main s390x python3-defusedxml all 0.7.1-3 [42.2 kB] 171s Get:234 http://ftpmaster.internal/ubuntu plucky/main s390x python3.13-doc all 3.13.2-1 [14.2 MB] 172s Get:235 http://ftpmaster.internal/ubuntu plucky/main s390x python3-doc all 3.13.1-1~exp2 [10.4 kB] 172s Get:236 http://ftpmaster.internal/ubuntu plucky/main s390x python3-roman all 5.0-1 [10.3 kB] 172s Get:237 http://ftpmaster.internal/ubuntu plucky/main s390x python3-docutils all 0.21.2+dfsg-2 [409 kB] 172s Get:238 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-h11 all 0.14.0-1 [51.1 kB] 172s Get:239 http://ftpmaster.internal/ubuntu plucky/main s390x python3-imagesize all 1.4.1-1 [6844 B] 172s Get:240 http://ftpmaster.internal/ubuntu plucky/main s390x python3-numpy s390x 1:1.26.4+ds-13 [4601 kB] 172s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-outcome all 1.2.0-1.1 [5968 B] 172s Get:242 http://ftpmaster.internal/ubuntu plucky/main s390x python3-packaging all 24.2-1 [51.5 kB] 172s Get:243 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pil s390x 11.1.0-5 [527 kB] 172s Get:244 http://ftpmaster.internal/ubuntu plucky/main s390x python3-pytz all 2025.1-3 [162 kB] 172s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-sniffio all 1.3.1-1 [7262 B] 172s Get:246 http://ftpmaster.internal/ubuntu plucky/main s390x python3-sortedcontainers all 2.4.0-2 [27.6 kB] 172s Get:247 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-trio all 0.27.0-1 [322 kB] 172s Get:248 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-wsproto all 1.2.0-1 [23.6 kB] 172s Get:249 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-trio-websocket all 0.11.1-1 [20.6 kB] 172s Get:250 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-websocket all 1.8.0-2 [38.5 kB] 172s Get:251 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-selenium all 4.24.4+dfsg-1 [104 kB] 172s Get:252 http://ftpmaster.internal/ubuntu plucky/main s390x python3-snowballstemmer all 2.2.0-4build1 [59.8 kB] 172s Get:253 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x sphinx-common all 8.1.3-5 [663 kB] 172s Get:254 http://ftpmaster.internal/ubuntu plucky/main s390x python3-alabaster all 0.7.16-0.1 [18.5 kB] 172s Get:255 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x python3-sphinx all 8.1.3-5 [474 kB] 172s Get:256 http://ftpmaster.internal/ubuntu plucky/universe s390x python3-tblib all 3.0.0-6 [13.0 kB] 172s Get:257 http://ftpmaster.internal/ubuntu plucky/main s390x python3-tz all 2025.1-3 [1866 B] 172s Get:258 http://ftpmaster.internal/ubuntu plucky/universe s390x libfreexl-dev s390x 2.0.0-1build2 [49.1 kB] 172s Get:259 http://ftpmaster.internal/ubuntu plucky/universe s390x libproj-dev s390x 9.5.1-1 [76.5 kB] 172s Get:260 http://ftpmaster.internal/ubuntu plucky/universe s390x libgeotiff-dev s390x 1.7.3-1 [92.8 kB] 172s Get:261 http://ftpmaster.internal/ubuntu plucky/universe s390x libhdf4-alt-dev s390x 4.3.0-1 [359 kB] 172s Get:262 http://ftpmaster.internal/ubuntu plucky/main s390x libjson-c-dev s390x 0.18+ds-1 [65.5 kB] 172s Get:263 http://ftpmaster.internal/ubuntu plucky/universe s390x libkml-dev s390x 1.3.0-12build1 [659 kB] 172s Get:264 http://ftpmaster.internal/ubuntu plucky/main s390x liblz4-dev s390x 1.10.0-3 [110 kB] 172s Get:265 http://ftpmaster.internal/ubuntu plucky/main s390x libopenjp2-7-dev s390x 2.5.0-2ubuntu3 [296 kB] 172s Get:266 http://ftpmaster.internal/ubuntu plucky/universe s390x libspatialite-dev s390x 5.1.0-3build1 [2140 kB] 173s Get:267 http://ftpmaster.internal/ubuntu plucky/main s390x unixodbc-dev s390x 2.3.12-2ubuntu1 [260 kB] 173s Get:268 http://ftpmaster.internal/ubuntu plucky/universe s390x libgdal-dev s390x 3.10.2+dfsg-1build1 [221 kB] 173s Fetched 193 MB in 16s (12.5 MB/s) 173s Selecting previously unselected package libpython3.12-minimal:s390x. 173s (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 ... 62028 files and directories currently installed.) 173s Preparing to unpack .../000-libpython3.12-minimal_3.12.9-1_s390x.deb ... 173s Unpacking libpython3.12-minimal:s390x (3.12.9-1) ... 173s Selecting previously unselected package python3.12-minimal. 173s Preparing to unpack .../001-python3.12-minimal_3.12.9-1_s390x.deb ... 173s Unpacking python3.12-minimal (3.12.9-1) ... 173s Selecting previously unselected package sgml-base. 173s Preparing to unpack .../002-sgml-base_1.31_all.deb ... 173s Unpacking sgml-base (1.31) ... 173s Selecting previously unselected package libnsl2:s390x. 173s Preparing to unpack .../003-libnsl2_1.3.0-3build3_s390x.deb ... 173s Unpacking libnsl2:s390x (1.3.0-3build3) ... 173s Selecting previously unselected package libpython3.12-stdlib:s390x. 173s Preparing to unpack .../004-libpython3.12-stdlib_3.12.9-1_s390x.deb ... 173s Unpacking libpython3.12-stdlib:s390x (3.12.9-1) ... 173s Selecting previously unselected package python3.12. 173s Preparing to unpack .../005-python3.12_3.12.9-1_s390x.deb ... 173s Unpacking python3.12 (3.12.9-1) ... 173s Selecting previously unselected package m4. 173s Preparing to unpack .../006-m4_1.4.19-5_s390x.deb ... 173s Unpacking m4 (1.4.19-5) ... 174s Selecting previously unselected package autoconf. 174s Preparing to unpack .../007-autoconf_2.72-3_all.deb ... 174s Unpacking autoconf (2.72-3) ... 174s Selecting previously unselected package autotools-dev. 174s Preparing to unpack .../008-autotools-dev_20220109.1_all.deb ... 174s Unpacking autotools-dev (20220109.1) ... 174s Selecting previously unselected package automake. 174s Preparing to unpack .../009-automake_1%3a1.17-3_all.deb ... 174s Unpacking automake (1:1.17-3) ... 174s Selecting previously unselected package autopoint. 174s Preparing to unpack .../010-autopoint_0.23.1-1_all.deb ... 174s Unpacking autopoint (0.23.1-1) ... 174s Selecting previously unselected package libisl23:s390x. 174s Preparing to unpack .../011-libisl23_0.27-1_s390x.deb ... 174s Unpacking libisl23:s390x (0.27-1) ... 174s Selecting previously unselected package libmpc3:s390x. 174s Preparing to unpack .../012-libmpc3_1.3.1-1build2_s390x.deb ... 174s Unpacking libmpc3:s390x (1.3.1-1build2) ... 174s Selecting previously unselected package cpp-14-s390x-linux-gnu. 174s Preparing to unpack .../013-cpp-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package cpp-14. 174s Preparing to unpack .../014-cpp-14_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking cpp-14 (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package cpp-s390x-linux-gnu. 174s Preparing to unpack .../015-cpp-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 174s Unpacking cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 174s Selecting previously unselected package cpp. 174s Preparing to unpack .../016-cpp_4%3a14.2.0-1ubuntu1_s390x.deb ... 174s Unpacking cpp (4:14.2.0-1ubuntu1) ... 174s Selecting previously unselected package libcc1-0:s390x. 174s Preparing to unpack .../017-libcc1-0_15-20250213-1ubuntu1_s390x.deb ... 174s Unpacking libcc1-0:s390x (15-20250213-1ubuntu1) ... 174s Selecting previously unselected package libgomp1:s390x. 174s Preparing to unpack .../018-libgomp1_15-20250213-1ubuntu1_s390x.deb ... 174s Unpacking libgomp1:s390x (15-20250213-1ubuntu1) ... 174s Selecting previously unselected package libitm1:s390x. 174s Preparing to unpack .../019-libitm1_15-20250213-1ubuntu1_s390x.deb ... 174s Unpacking libitm1:s390x (15-20250213-1ubuntu1) ... 174s Selecting previously unselected package libasan8:s390x. 174s Preparing to unpack .../020-libasan8_15-20250213-1ubuntu1_s390x.deb ... 174s Unpacking libasan8:s390x (15-20250213-1ubuntu1) ... 174s Selecting previously unselected package libubsan1:s390x. 174s Preparing to unpack .../021-libubsan1_15-20250213-1ubuntu1_s390x.deb ... 174s Unpacking libubsan1:s390x (15-20250213-1ubuntu1) ... 174s Selecting previously unselected package libgcc-14-dev:s390x. 174s Preparing to unpack .../022-libgcc-14-dev_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package gcc-14-s390x-linux-gnu. 174s Preparing to unpack .../023-gcc-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package gcc-14. 174s Preparing to unpack .../024-gcc-14_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking gcc-14 (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package gcc-s390x-linux-gnu. 174s Preparing to unpack .../025-gcc-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 174s Unpacking gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 174s Selecting previously unselected package gcc. 174s Preparing to unpack .../026-gcc_4%3a14.2.0-1ubuntu1_s390x.deb ... 174s Unpacking gcc (4:14.2.0-1ubuntu1) ... 174s Selecting previously unselected package libstdc++-14-dev:s390x. 174s Preparing to unpack .../027-libstdc++-14-dev_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 174s Selecting previously unselected package g++-14-s390x-linux-gnu. 174s Preparing to unpack .../028-g++-14-s390x-linux-gnu_14.2.0-17ubuntu1_s390x.deb ... 174s Unpacking g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 175s Selecting previously unselected package g++-14. 175s Preparing to unpack .../029-g++-14_14.2.0-17ubuntu1_s390x.deb ... 175s Unpacking g++-14 (14.2.0-17ubuntu1) ... 175s Selecting previously unselected package g++-s390x-linux-gnu. 175s Preparing to unpack .../030-g++-s390x-linux-gnu_4%3a14.2.0-1ubuntu1_s390x.deb ... 175s Unpacking g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 175s Selecting previously unselected package g++. 175s Preparing to unpack .../031-g++_4%3a14.2.0-1ubuntu1_s390x.deb ... 175s Unpacking g++ (4:14.2.0-1ubuntu1) ... 175s Selecting previously unselected package build-essential. 175s Preparing to unpack .../032-build-essential_12.10ubuntu1_s390x.deb ... 175s Unpacking build-essential (12.10ubuntu1) ... 175s Selecting previously unselected package cfortran. 175s Preparing to unpack .../033-cfortran_20210827-1_all.deb ... 175s Unpacking cfortran (20210827-1) ... 175s Selecting previously unselected package libdebhelper-perl. 175s Preparing to unpack .../034-libdebhelper-perl_13.24.1ubuntu2_all.deb ... 175s Unpacking libdebhelper-perl (13.24.1ubuntu2) ... 175s Selecting previously unselected package libtool. 175s Preparing to unpack .../035-libtool_2.5.4-3build1_all.deb ... 175s Unpacking libtool (2.5.4-3build1) ... 175s Selecting previously unselected package dh-autoreconf. 175s Preparing to unpack .../036-dh-autoreconf_20_all.deb ... 175s Unpacking dh-autoreconf (20) ... 175s Selecting previously unselected package libarchive-zip-perl. 175s Preparing to unpack .../037-libarchive-zip-perl_1.68-1_all.deb ... 175s Unpacking libarchive-zip-perl (1.68-1) ... 175s Selecting previously unselected package libfile-stripnondeterminism-perl. 175s Preparing to unpack .../038-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 175s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 175s Selecting previously unselected package dh-strip-nondeterminism. 175s Preparing to unpack .../039-dh-strip-nondeterminism_1.14.1-2_all.deb ... 175s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 175s Selecting previously unselected package debugedit. 175s Preparing to unpack .../040-debugedit_1%3a5.1-2_s390x.deb ... 175s Unpacking debugedit (1:5.1-2) ... 175s Selecting previously unselected package dwz. 175s Preparing to unpack .../041-dwz_0.15-1build6_s390x.deb ... 175s Unpacking dwz (0.15-1build6) ... 175s Selecting previously unselected package gettext. 175s Preparing to unpack .../042-gettext_0.23.1-1_s390x.deb ... 175s Unpacking gettext (0.23.1-1) ... 175s Selecting previously unselected package intltool-debian. 175s Preparing to unpack .../043-intltool-debian_0.35.0+20060710.6_all.deb ... 175s Unpacking intltool-debian (0.35.0+20060710.6) ... 175s Selecting previously unselected package po-debconf. 175s Preparing to unpack .../044-po-debconf_1.0.21+nmu1_all.deb ... 175s Unpacking po-debconf (1.0.21+nmu1) ... 175s Selecting previously unselected package debhelper. 175s Preparing to unpack .../045-debhelper_13.24.1ubuntu2_all.deb ... 175s Unpacking debhelper (13.24.1ubuntu2) ... 175s Selecting previously unselected package mysql-common. 175s Preparing to unpack .../046-mysql-common_5.8+1.1.1_all.deb ... 175s Unpacking mysql-common (5.8+1.1.1) ... 175s Selecting previously unselected package libmysqlclient24:s390x. 175s Preparing to unpack .../047-libmysqlclient24_8.4.4-0ubuntu1_s390x.deb ... 175s Unpacking libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 175s Selecting previously unselected package libssl-dev:s390x. 175s Preparing to unpack .../048-libssl-dev_3.4.0-1ubuntu2_s390x.deb ... 175s Unpacking libssl-dev:s390x (3.4.0-1ubuntu2) ... 175s Selecting previously unselected package libzstd-dev:s390x. 175s Preparing to unpack .../049-libzstd-dev_1.5.6+dfsg-2_s390x.deb ... 175s Unpacking libzstd-dev:s390x (1.5.6+dfsg-2) ... 175s Selecting previously unselected package zlib1g-dev:s390x. 175s Preparing to unpack .../050-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 175s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 175s Selecting previously unselected package libmysqlclient-dev. 175s Preparing to unpack .../051-libmysqlclient-dev_8.4.4-0ubuntu1_s390x.deb ... 175s Unpacking libmysqlclient-dev (8.4.4-0ubuntu1) ... 175s Selecting previously unselected package default-libmysqlclient-dev:s390x. 175s Preparing to unpack .../052-default-libmysqlclient-dev_1.1.1_s390x.deb ... 175s Unpacking default-libmysqlclient-dev:s390x (1.1.1) ... 175s Selecting previously unselected package dh-python. 175s Preparing to unpack .../053-dh-python_6.20250108_all.deb ... 175s Unpacking dh-python (6.20250108) ... 175s Selecting previously unselected package xml-core. 175s Preparing to unpack .../054-xml-core_0.19_all.deb ... 175s Unpacking xml-core (0.19) ... 175s Selecting previously unselected package docutils-common. 175s Preparing to unpack .../055-docutils-common_0.21.2+dfsg-2_all.deb ... 175s Unpacking docutils-common (0.21.2+dfsg-2) ... 175s Selecting previously unselected package fonts-dejavu-mono. 175s Preparing to unpack .../056-fonts-dejavu-mono_2.37-8_all.deb ... 175s Unpacking fonts-dejavu-mono (2.37-8) ... 175s Selecting previously unselected package fonts-dejavu-core. 175s Preparing to unpack .../057-fonts-dejavu-core_2.37-8_all.deb ... 175s Unpacking fonts-dejavu-core (2.37-8) ... 175s Selecting previously unselected package fontconfig-config. 175s Preparing to unpack .../058-fontconfig-config_2.15.0-2ubuntu1_s390x.deb ... 175s Unpacking fontconfig-config (2.15.0-2ubuntu1) ... 175s Selecting previously unselected package gdal-data. 175s Preparing to unpack .../059-gdal-data_3.10.2+dfsg-1build1_all.deb ... 175s Unpacking gdal-data (3.10.2+dfsg-1build1) ... 175s Selecting previously unselected package gdal-plugins:s390x. 175s Preparing to unpack .../060-gdal-plugins_3.10.2+dfsg-1build1_s390x.deb ... 175s Unpacking gdal-plugins:s390x (3.10.2+dfsg-1build1) ... 175s Selecting previously unselected package hdf5-helpers. 175s Preparing to unpack .../061-hdf5-helpers_1.14.5+repack-3_s390x.deb ... 175s Unpacking hdf5-helpers (1.14.5+repack-3) ... 175s Selecting previously unselected package icu-devtools. 175s Preparing to unpack .../062-icu-devtools_76.1-1ubuntu2_s390x.deb ... 175s Unpacking icu-devtools (76.1-1ubuntu2) ... 176s Selecting previously unselected package comerr-dev:s390x. 176s Preparing to unpack .../063-comerr-dev_2.1-1.47.2-1ubuntu1_s390x.deb ... 176s Unpacking comerr-dev:s390x (2.1-1.47.2-1ubuntu1) ... 176s Selecting previously unselected package libgssrpc4t64:s390x. 176s Preparing to unpack .../064-libgssrpc4t64_1.21.3-4ubuntu1_s390x.deb ... 176s Unpacking libgssrpc4t64:s390x (1.21.3-4ubuntu1) ... 176s Selecting previously unselected package libkadm5clnt-mit12:s390x. 176s Preparing to unpack .../065-libkadm5clnt-mit12_1.21.3-4ubuntu1_s390x.deb ... 176s Unpacking libkadm5clnt-mit12:s390x (1.21.3-4ubuntu1) ... 176s Selecting previously unselected package libkdb5-10t64:s390x. 176s Preparing to unpack .../066-libkdb5-10t64_1.21.3-4ubuntu1_s390x.deb ... 176s Unpacking libkdb5-10t64:s390x (1.21.3-4ubuntu1) ... 176s Selecting previously unselected package libkadm5srv-mit12:s390x. 176s Preparing to unpack .../067-libkadm5srv-mit12_1.21.3-4ubuntu1_s390x.deb ... 176s Unpacking libkadm5srv-mit12:s390x (1.21.3-4ubuntu1) ... 176s Selecting previously unselected package krb5-multidev:s390x. 176s Preparing to unpack .../068-krb5-multidev_1.21.3-4ubuntu1_s390x.deb ... 176s Unpacking krb5-multidev:s390x (1.21.3-4ubuntu1) ... 176s Selecting previously unselected package libaec0:s390x. 176s Preparing to unpack .../069-libaec0_1.1.3-1_s390x.deb ... 176s Unpacking libaec0:s390x (1.1.3-1) ... 176s Selecting previously unselected package libaom3:s390x. 176s Preparing to unpack .../070-libaom3_3.12.0-1_s390x.deb ... 176s Unpacking libaom3:s390x (3.12.0-1) ... 176s Selecting previously unselected package libaom-dev:s390x. 176s Preparing to unpack .../071-libaom-dev_3.12.0-1_s390x.deb ... 176s Unpacking libaom-dev:s390x (3.12.0-1) ... 176s Selecting previously unselected package libblas3:s390x. 176s Preparing to unpack .../072-libblas3_3.12.1-2_s390x.deb ... 176s Unpacking libblas3:s390x (3.12.1-2) ... 176s Selecting previously unselected package libgfortran5:s390x. 176s Preparing to unpack .../073-libgfortran5_15-20250213-1ubuntu1_s390x.deb ... 176s Unpacking libgfortran5:s390x (15-20250213-1ubuntu1) ... 176s Selecting previously unselected package liblapack3:s390x. 176s Preparing to unpack .../074-liblapack3_3.12.1-2_s390x.deb ... 176s Unpacking liblapack3:s390x (3.12.1-2) ... 176s Selecting previously unselected package libarpack2t64:s390x. 176s Preparing to unpack .../075-libarpack2t64_3.9.1-4_s390x.deb ... 176s Unpacking libarpack2t64:s390x (3.9.1-4) ... 176s Selecting previously unselected package libarmadillo14. 176s Preparing to unpack .../076-libarmadillo14_1%3a14.2.3+dfsg-1_s390x.deb ... 176s Unpacking libarmadillo14 (1:14.2.3+dfsg-1) ... 176s Selecting previously unselected package libblas-dev:s390x. 176s Preparing to unpack .../077-libblas-dev_3.12.1-2_s390x.deb ... 176s Unpacking libblas-dev:s390x (3.12.1-2) ... 176s Selecting previously unselected package liblapack-dev:s390x. 176s Preparing to unpack .../078-liblapack-dev_3.12.1-2_s390x.deb ... 176s Unpacking liblapack-dev:s390x (3.12.1-2) ... 176s Selecting previously unselected package libarpack2-dev:s390x. 176s Preparing to unpack .../079-libarpack2-dev_3.9.1-4_s390x.deb ... 176s Unpacking libarpack2-dev:s390x (3.9.1-4) ... 176s Selecting previously unselected package libsz2:s390x. 176s Preparing to unpack .../080-libsz2_1.1.3-1_s390x.deb ... 176s Unpacking libsz2:s390x (1.1.3-1) ... 176s Selecting previously unselected package libhdf5-310:s390x. 176s Preparing to unpack .../081-libhdf5-310_1.14.5+repack-3_s390x.deb ... 176s Unpacking libhdf5-310:s390x (1.14.5+repack-3) ... 176s Selecting previously unselected package libhdf5-fortran-310:s390x. 176s Preparing to unpack .../082-libhdf5-fortran-310_1.14.5+repack-3_s390x.deb ... 176s Unpacking libhdf5-fortran-310:s390x (1.14.5+repack-3) ... 176s Selecting previously unselected package libhdf5-hl-310:s390x. 176s Preparing to unpack .../083-libhdf5-hl-310_1.14.5+repack-3_s390x.deb ... 176s Unpacking libhdf5-hl-310:s390x (1.14.5+repack-3) ... 176s Selecting previously unselected package libhdf5-hl-fortran-310:s390x. 176s Preparing to unpack .../084-libhdf5-hl-fortran-310_1.14.5+repack-3_s390x.deb ... 176s Unpacking libhdf5-hl-fortran-310:s390x (1.14.5+repack-3) ... 176s Selecting previously unselected package libhdf5-cpp-310:s390x. 176s Preparing to unpack .../085-libhdf5-cpp-310_1.14.5+repack-3_s390x.deb ... 176s Unpacking libhdf5-cpp-310:s390x (1.14.5+repack-3) ... 176s Selecting previously unselected package libhdf5-hl-cpp-310:s390x. 176s Preparing to unpack .../086-libhdf5-hl-cpp-310_1.14.5+repack-3_s390x.deb ... 176s Unpacking libhdf5-hl-cpp-310:s390x (1.14.5+repack-3) ... 176s Selecting previously unselected package libjpeg-turbo8:s390x. 176s Preparing to unpack .../087-libjpeg-turbo8_2.1.5-3ubuntu2_s390x.deb ... 176s Unpacking libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 176s Selecting previously unselected package libjpeg-turbo8-dev:s390x. 176s Preparing to unpack .../088-libjpeg-turbo8-dev_2.1.5-3ubuntu2_s390x.deb ... 176s Unpacking libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 176s Selecting previously unselected package libjpeg8:s390x. 176s Preparing to unpack .../089-libjpeg8_8c-2ubuntu11_s390x.deb ... 176s Unpacking libjpeg8:s390x (8c-2ubuntu11) ... 176s Selecting previously unselected package libjpeg8-dev:s390x. 176s Preparing to unpack .../090-libjpeg8-dev_8c-2ubuntu11_s390x.deb ... 176s Unpacking libjpeg8-dev:s390x (8c-2ubuntu11) ... 176s Selecting previously unselected package libjpeg-dev:s390x. 176s Preparing to unpack .../091-libjpeg-dev_8c-2ubuntu11_s390x.deb ... 176s Unpacking libjpeg-dev:s390x (8c-2ubuntu11) ... 176s Selecting previously unselected package libaec-dev:s390x. 176s Preparing to unpack .../092-libaec-dev_1.1.3-1_s390x.deb ... 176s Unpacking libaec-dev:s390x (1.1.3-1) ... 176s Selecting previously unselected package libbrotli-dev:s390x. 176s Preparing to unpack .../093-libbrotli-dev_1.1.0-2build3_s390x.deb ... 176s Unpacking libbrotli-dev:s390x (1.1.0-2build3) ... 176s Selecting previously unselected package libidn2-dev:s390x. 176s Preparing to unpack .../094-libidn2-dev_2.3.7-2build2_s390x.deb ... 176s Unpacking libidn2-dev:s390x (2.3.7-2build2) ... 176s Selecting previously unselected package libkrb5-dev:s390x. 176s Preparing to unpack .../095-libkrb5-dev_1.21.3-4ubuntu1_s390x.deb ... 176s Unpacking libkrb5-dev:s390x (1.21.3-4ubuntu1) ... 176s Selecting previously unselected package libldap-dev:s390x. 176s Preparing to unpack .../096-libldap-dev_2.6.9+dfsg-1~exp2ubuntu1_s390x.deb ... 176s Unpacking libldap-dev:s390x (2.6.9+dfsg-1~exp2ubuntu1) ... 176s Selecting previously unselected package libpkgconf3:s390x. 176s Preparing to unpack .../097-libpkgconf3_1.8.1-4_s390x.deb ... 176s Unpacking libpkgconf3:s390x (1.8.1-4) ... 176s Selecting previously unselected package pkgconf-bin. 176s Preparing to unpack .../098-pkgconf-bin_1.8.1-4_s390x.deb ... 176s Unpacking pkgconf-bin (1.8.1-4) ... 176s Selecting previously unselected package pkgconf:s390x. 176s Preparing to unpack .../099-pkgconf_1.8.1-4_s390x.deb ... 176s Unpacking pkgconf:s390x (1.8.1-4) ... 176s Selecting previously unselected package libnghttp2-dev:s390x. 176s Preparing to unpack .../100-libnghttp2-dev_1.64.0-1_s390x.deb ... 176s Unpacking libnghttp2-dev:s390x (1.64.0-1) ... 176s Selecting previously unselected package libpsl-dev:s390x. 176s Preparing to unpack .../101-libpsl-dev_0.21.2-1.1build1_s390x.deb ... 176s Unpacking libpsl-dev:s390x (0.21.2-1.1build1) ... 176s Selecting previously unselected package libgmpxx4ldbl:s390x. 176s Preparing to unpack .../102-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb ... 176s Unpacking libgmpxx4ldbl:s390x (2:6.3.0+dfsg-2ubuntu7) ... 176s Selecting previously unselected package libgmp-dev:s390x. 176s Preparing to unpack .../103-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu7_s390x.deb ... 176s Unpacking libgmp-dev:s390x (2:6.3.0+dfsg-2ubuntu7) ... 176s Selecting previously unselected package libevent-2.1-7t64:s390x. 176s Preparing to unpack .../104-libevent-2.1-7t64_2.1.12-stable-10_s390x.deb ... 176s Unpacking libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 176s Selecting previously unselected package libunbound8:s390x. 176s Preparing to unpack .../105-libunbound8_1.22.0-1ubuntu1_s390x.deb ... 176s Unpacking libunbound8:s390x (1.22.0-1ubuntu1) ... 176s Selecting previously unselected package libgnutls-dane0t64:s390x. 176s Preparing to unpack .../106-libgnutls-dane0t64_3.8.9-2ubuntu1_s390x.deb ... 176s Unpacking libgnutls-dane0t64:s390x (3.8.9-2ubuntu1) ... 176s Selecting previously unselected package libgnutls-openssl27t64:s390x. 176s Preparing to unpack .../107-libgnutls-openssl27t64_3.8.9-2ubuntu1_s390x.deb ... 176s Unpacking libgnutls-openssl27t64:s390x (3.8.9-2ubuntu1) ... 176s Selecting previously unselected package libp11-kit-dev:s390x. 176s Preparing to unpack .../108-libp11-kit-dev_0.25.5-2ubuntu3_s390x.deb ... 176s Unpacking libp11-kit-dev:s390x (0.25.5-2ubuntu3) ... 176s Selecting previously unselected package libtasn1-6-dev:s390x. 176s Preparing to unpack .../109-libtasn1-6-dev_4.20.0-2_s390x.deb ... 176s Unpacking libtasn1-6-dev:s390x (4.20.0-2) ... 176s Selecting previously unselected package nettle-dev:s390x. 176s Preparing to unpack .../110-nettle-dev_3.10.1-1_s390x.deb ... 176s Unpacking nettle-dev:s390x (3.10.1-1) ... 176s Selecting previously unselected package libgnutls28-dev:s390x. 176s Preparing to unpack .../111-libgnutls28-dev_3.8.9-2ubuntu1_s390x.deb ... 176s Unpacking libgnutls28-dev:s390x (3.8.9-2ubuntu1) ... 176s Selecting previously unselected package librtmp-dev:s390x. 176s Preparing to unpack .../112-librtmp-dev_2.4+20151223.gitfa8646d.1-2build7_s390x.deb ... 176s Unpacking librtmp-dev:s390x (2.4+20151223.gitfa8646d.1-2build7) ... 176s Selecting previously unselected package libssh2-1-dev:s390x. 176s Preparing to unpack .../113-libssh2-1-dev_1.11.1-1_s390x.deb ... 176s Unpacking libssh2-1-dev:s390x (1.11.1-1) ... 176s Selecting previously unselected package libcurl4-openssl-dev:s390x. 177s Preparing to unpack .../114-libcurl4-openssl-dev_8.12.0+git20250209.89ed161+ds-1ubuntu1_s390x.deb ... 177s Unpacking libcurl4-openssl-dev:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 177s Selecting previously unselected package libhdf5-dev. 177s Preparing to unpack .../115-libhdf5-dev_1.14.5+repack-3_s390x.deb ... 177s Unpacking libhdf5-dev (1.14.5+repack-3) ... 177s Selecting previously unselected package libsuperlu7:s390x. 177s Preparing to unpack .../116-libsuperlu7_7.0.0+dfsg1-2_s390x.deb ... 177s Unpacking libsuperlu7:s390x (7.0.0+dfsg1-2) ... 177s Selecting previously unselected package libsuperlu-dev:s390x. 177s Preparing to unpack .../117-libsuperlu-dev_7.0.0+dfsg1-2_s390x.deb ... 177s Unpacking libsuperlu-dev:s390x (7.0.0+dfsg1-2) ... 177s Selecting previously unselected package libarmadillo-dev. 177s Preparing to unpack .../118-libarmadillo-dev_1%3a14.2.3+dfsg-1_s390x.deb ... 177s Unpacking libarmadillo-dev (1:14.2.3+dfsg-1) ... 177s Selecting previously unselected package libdav1d7:s390x. 177s Preparing to unpack .../119-libdav1d7_1.5.1-1_s390x.deb ... 177s Unpacking libdav1d7:s390x (1.5.1-1) ... 177s Selecting previously unselected package libdav1d-dev:s390x. 177s Preparing to unpack .../120-libdav1d-dev_1.5.1-1_s390x.deb ... 177s Unpacking libdav1d-dev:s390x (1.5.1-1) ... 177s Selecting previously unselected package librav1e0.7:s390x. 177s Preparing to unpack .../121-librav1e0.7_0.7.1-9_s390x.deb ... 177s Unpacking librav1e0.7:s390x (0.7.1-9) ... 177s Selecting previously unselected package librav1e-dev:s390x. 177s Preparing to unpack .../122-librav1e-dev_0.7.1-9_s390x.deb ... 177s Unpacking librav1e-dev:s390x (0.7.1-9) ... 177s Selecting previously unselected package libsvtav1enc2:s390x. 177s Preparing to unpack .../123-libsvtav1enc2_2.3.0+dfsg-1_s390x.deb ... 177s Unpacking libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 177s Selecting previously unselected package libsvtav1enc-dev:s390x. 177s Preparing to unpack .../124-libsvtav1enc-dev_2.3.0+dfsg-1_s390x.deb ... 177s Unpacking libsvtav1enc-dev:s390x (2.3.0+dfsg-1) ... 177s Selecting previously unselected package libyuv0:s390x. 177s Preparing to unpack .../125-libyuv0_0.0.1904.20250204-1_s390x.deb ... 177s Unpacking libyuv0:s390x (0.0.1904.20250204-1) ... 177s Selecting previously unselected package libyuv-dev:s390x. 177s Preparing to unpack .../126-libyuv-dev_0.0.1904.20250204-1_s390x.deb ... 177s Unpacking libyuv-dev:s390x (0.0.1904.20250204-1) ... 177s Selecting previously unselected package libavif16:s390x. 177s Preparing to unpack .../127-libavif16_1.1.1-1ubuntu1_s390x.deb ... 177s Unpacking libavif16:s390x (1.1.1-1ubuntu1) ... 177s Selecting previously unselected package libavif-dev:s390x. 177s Preparing to unpack .../128-libavif-dev_1.1.1-1ubuntu1_s390x.deb ... 177s Unpacking libavif-dev:s390x (1.1.1-1ubuntu1) ... 177s Selecting previously unselected package libsnappy1v5:s390x. 177s Preparing to unpack .../129-libsnappy1v5_1.2.1-1_s390x.deb ... 177s Unpacking libsnappy1v5:s390x (1.2.1-1) ... 177s Selecting previously unselected package libblosc1:s390x. 177s Preparing to unpack .../130-libblosc1_1.21.5+ds-1build1_s390x.deb ... 177s Unpacking libblosc1:s390x (1.21.5+ds-1build1) ... 177s Selecting previously unselected package libblosc-dev:s390x. 177s Preparing to unpack .../131-libblosc-dev_1.21.5+ds-1build1_s390x.deb ... 177s Unpacking libblosc-dev:s390x (1.21.5+ds-1build1) ... 177s Selecting previously unselected package libboost1.83-dev:s390x. 177s Preparing to unpack .../132-libboost1.83-dev_1.83.0-4.1ubuntu1_s390x.deb ... 177s Unpacking libboost1.83-dev:s390x (1.83.0-4.1ubuntu1) ... 178s Selecting previously unselected package libboost-dev:s390x. 178s Preparing to unpack .../133-libboost-dev_1.83.0.2ubuntu1_s390x.deb ... 178s Unpacking libboost-dev:s390x (1.83.0.2ubuntu1) ... 178s Selecting previously unselected package libcfitsio10t64:s390x. 178s Preparing to unpack .../134-libcfitsio10t64_4.5.0-5_s390x.deb ... 178s Unpacking libcfitsio10t64:s390x (4.5.0-5) ... 178s Selecting previously unselected package libcfitsio-dev:s390x. 178s Preparing to unpack .../135-libcfitsio-dev_4.5.0-5_s390x.deb ... 178s Unpacking libcfitsio-dev:s390x (4.5.0-5) ... 178s Selecting previously unselected package libde265-0:s390x. 178s Preparing to unpack .../136-libde265-0_1.0.15-1build4_s390x.deb ... 178s Unpacking libde265-0:s390x (1.0.15-1build4) ... 178s Selecting previously unselected package libdeflate0:s390x. 178s Preparing to unpack .../137-libdeflate0_1.23-1_s390x.deb ... 178s Unpacking libdeflate0:s390x (1.23-1) ... 178s Selecting previously unselected package libdeflate-dev:s390x. 178s Preparing to unpack .../138-libdeflate-dev_1.23-1_s390x.deb ... 178s Unpacking libdeflate-dev:s390x (1.23-1) ... 178s Selecting previously unselected package libexpat1-dev:s390x. 178s Preparing to unpack .../139-libexpat1-dev_2.6.4-1_s390x.deb ... 178s Unpacking libexpat1-dev:s390x (2.6.4-1) ... 178s Selecting previously unselected package libfreetype6:s390x. 178s Preparing to unpack .../140-libfreetype6_2.13.3+dfsg-1_s390x.deb ... 178s Unpacking libfreetype6:s390x (2.13.3+dfsg-1) ... 178s Selecting previously unselected package libfontconfig1:s390x. 178s Preparing to unpack .../141-libfontconfig1_2.15.0-2ubuntu1_s390x.deb ... 178s Unpacking libfontconfig1:s390x (2.15.0-2ubuntu1) ... 178s Selecting previously unselected package libfyba0t64:s390x. 178s Preparing to unpack .../142-libfyba0t64_4.1.1-11build1_s390x.deb ... 178s Unpacking libfyba0t64:s390x (4.1.1-11build1) ... 178s Selecting previously unselected package libfyba-dev:s390x. 178s Preparing to unpack .../143-libfyba-dev_4.1.1-11build1_s390x.deb ... 178s Unpacking libfyba-dev:s390x (4.1.1-11build1) ... 178s Selecting previously unselected package libminizip1t64:s390x. 178s Preparing to unpack .../144-libminizip1t64_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 178s Unpacking libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 178s Selecting previously unselected package libfreexl1:s390x. 178s Preparing to unpack .../145-libfreexl1_2.0.0-1build2_s390x.deb ... 178s Unpacking libfreexl1:s390x (2.0.0-1build2) ... 178s Selecting previously unselected package libgeos3.13.0:s390x. 178s Preparing to unpack .../146-libgeos3.13.0_3.13.0-1_s390x.deb ... 178s Unpacking libgeos3.13.0:s390x (3.13.0-1) ... 178s Selecting previously unselected package libgeos-c1t64:s390x. 178s Preparing to unpack .../147-libgeos-c1t64_3.13.0-1_s390x.deb ... 178s Unpacking libgeos-c1t64:s390x (3.13.0-1) ... 178s Selecting previously unselected package proj-data. 178s Preparing to unpack .../148-proj-data_9.5.1-1_all.deb ... 178s Unpacking proj-data (9.5.1-1) ... 179s Selecting previously unselected package libjbig0:s390x. 179s Preparing to unpack .../149-libjbig0_2.1-6.1ubuntu2_s390x.deb ... 179s Unpacking libjbig0:s390x (2.1-6.1ubuntu2) ... 179s Selecting previously unselected package libsharpyuv0:s390x. 179s Preparing to unpack .../150-libsharpyuv0_1.5.0-0.1_s390x.deb ... 179s Unpacking libsharpyuv0:s390x (1.5.0-0.1) ... 179s Selecting previously unselected package libwebp7:s390x. 179s Preparing to unpack .../151-libwebp7_1.5.0-0.1_s390x.deb ... 179s Unpacking libwebp7:s390x (1.5.0-0.1) ... 179s Selecting previously unselected package libtiff6:s390x. 179s Preparing to unpack .../152-libtiff6_4.5.1+git230720-4ubuntu4_s390x.deb ... 179s Unpacking libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 179s Selecting previously unselected package libproj25:s390x. 179s Preparing to unpack .../153-libproj25_9.5.1-1_s390x.deb ... 179s Unpacking libproj25:s390x (9.5.1-1) ... 179s Selecting previously unselected package libgeotiff5:s390x. 179s Preparing to unpack .../154-libgeotiff5_1.7.3-1_s390x.deb ... 179s Unpacking libgeotiff5:s390x (1.7.3-1) ... 179s Selecting previously unselected package libgif7:s390x. 179s Preparing to unpack .../155-libgif7_5.2.2-1ubuntu1_s390x.deb ... 179s Unpacking libgif7:s390x (5.2.2-1ubuntu1) ... 179s Selecting previously unselected package libhdf4-0-alt:s390x. 179s Preparing to unpack .../156-libhdf4-0-alt_4.3.0-1_s390x.deb ... 179s Unpacking libhdf4-0-alt:s390x (4.3.0-1) ... 179s Selecting previously unselected package libheif-plugin-aomdec:s390x. 179s Preparing to unpack .../157-libheif-plugin-aomdec_1.19.5-1build1_s390x.deb ... 179s Unpacking libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 179s Selecting previously unselected package libheif-plugin-libde265:s390x. 179s Preparing to unpack .../158-libheif-plugin-libde265_1.19.5-1build1_s390x.deb ... 179s Unpacking libheif-plugin-libde265:s390x (1.19.5-1build1) ... 179s Selecting previously unselected package libheif1:s390x. 179s Preparing to unpack .../159-libheif1_1.19.5-1build1_s390x.deb ... 179s Unpacking libheif1:s390x (1.19.5-1build1) ... 179s Selecting previously unselected package liburiparser1:s390x. 179s Preparing to unpack .../160-liburiparser1_0.9.8+dfsg-2_s390x.deb ... 179s Unpacking liburiparser1:s390x (0.9.8+dfsg-2) ... 179s Selecting previously unselected package libkmlbase1t64:s390x. 179s Preparing to unpack .../161-libkmlbase1t64_1.3.0-12build1_s390x.deb ... 179s Unpacking libkmlbase1t64:s390x (1.3.0-12build1) ... 179s Selecting previously unselected package libkmldom1t64:s390x. 179s Preparing to unpack .../162-libkmldom1t64_1.3.0-12build1_s390x.deb ... 179s Unpacking libkmldom1t64:s390x (1.3.0-12build1) ... 179s Selecting previously unselected package libkmlengine1t64:s390x. 179s Preparing to unpack .../163-libkmlengine1t64_1.3.0-12build1_s390x.deb ... 179s Unpacking libkmlengine1t64:s390x (1.3.0-12build1) ... 179s Selecting previously unselected package libnetcdf22:s390x. 179s Preparing to unpack .../164-libnetcdf22_1%3a4.9.3-1_s390x.deb ... 179s Unpacking libnetcdf22:s390x (1:4.9.3-1) ... 179s Selecting previously unselected package libltdl7:s390x. 179s Preparing to unpack .../165-libltdl7_2.5.4-3build1_s390x.deb ... 179s Unpacking libltdl7:s390x (2.5.4-3build1) ... 179s Selecting previously unselected package libodbc2:s390x. 179s Preparing to unpack .../166-libodbc2_2.3.12-2ubuntu1_s390x.deb ... 179s Unpacking libodbc2:s390x (2.3.12-2ubuntu1) ... 179s Selecting previously unselected package unixodbc-common. 179s Preparing to unpack .../167-unixodbc-common_2.3.12-2ubuntu1_all.deb ... 179s Unpacking unixodbc-common (2.3.12-2ubuntu1) ... 179s Selecting previously unselected package libodbcinst2:s390x. 179s Preparing to unpack .../168-libodbcinst2_2.3.12-2ubuntu1_s390x.deb ... 179s Unpacking libodbcinst2:s390x (2.3.12-2ubuntu1) ... 179s Selecting previously unselected package libogdi4.1:s390x. 179s Preparing to unpack .../169-libogdi4.1_4.1.1+ds-5_s390x.deb ... 179s Unpacking libogdi4.1:s390x (4.1.1+ds-5) ... 179s Selecting previously unselected package libopenjp2-7:s390x. 179s Preparing to unpack .../170-libopenjp2-7_2.5.0-2ubuntu3_s390x.deb ... 179s Unpacking libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 179s Selecting previously unselected package libgpgmepp6t64:s390x. 179s Preparing to unpack .../171-libgpgmepp6t64_1.24.1-4ubuntu1_s390x.deb ... 179s Unpacking libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 179s Selecting previously unselected package liblcms2-2:s390x. 179s Preparing to unpack .../172-liblcms2-2_2.16-2_s390x.deb ... 179s Unpacking liblcms2-2:s390x (2.16-2) ... 179s Selecting previously unselected package libpoppler145:s390x. 179s Preparing to unpack .../173-libpoppler145_25.01.0-4_s390x.deb ... 179s Unpacking libpoppler145:s390x (25.01.0-4) ... 179s Selecting previously unselected package libpq5:s390x. 179s Preparing to unpack .../174-libpq5_17.3-3_s390x.deb ... 179s Unpacking libpq5:s390x (17.3-3) ... 179s Selecting previously unselected package libqhull-r8.0:s390x. 179s Preparing to unpack .../175-libqhull-r8.0_2020.2-6build1_s390x.deb ... 179s Unpacking libqhull-r8.0:s390x (2020.2-6build1) ... 179s Selecting previously unselected package librttopo1:s390x. 179s Preparing to unpack .../176-librttopo1_1.1.0-3build2_s390x.deb ... 179s Unpacking librttopo1:s390x (1.1.0-3build2) ... 179s Selecting previously unselected package libspatialite8t64:s390x. 179s Preparing to unpack .../177-libspatialite8t64_5.1.0-3build1_s390x.deb ... 179s Unpacking libspatialite8t64:s390x (5.1.0-3build1) ... 179s Selecting previously unselected package libxerces-c3.2t64:s390x. 179s Preparing to unpack .../178-libxerces-c3.2t64_3.2.4+debian-1.3build1_s390x.deb ... 179s Unpacking libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 179s Selecting previously unselected package libgdal36:s390x. 179s Preparing to unpack .../179-libgdal36_3.10.2+dfsg-1build1_s390x.deb ... 179s Unpacking libgdal36:s390x (3.10.2+dfsg-1build1) ... 179s Selecting previously unselected package libgeos-dev. 179s Preparing to unpack .../180-libgeos-dev_3.13.0-1_s390x.deb ... 179s Unpacking libgeos-dev (3.13.0-1) ... 179s Selecting previously unselected package libgif-dev:s390x. 179s Preparing to unpack .../181-libgif-dev_5.2.2-1ubuntu1_s390x.deb ... 179s Unpacking libgif-dev:s390x (5.2.2-1ubuntu1) ... 179s Selecting previously unselected package libgraphite2-3:s390x. 179s Preparing to unpack .../182-libgraphite2-3_1.3.14-2ubuntu1_s390x.deb ... 179s Unpacking libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 179s Selecting previously unselected package libharfbuzz0b:s390x. 179s Preparing to unpack .../183-libharfbuzz0b_10.2.0-1_s390x.deb ... 179s Unpacking libharfbuzz0b:s390x (10.2.0-1) ... 179s Selecting previously unselected package libsharpyuv-dev:s390x. 179s Preparing to unpack .../184-libsharpyuv-dev_1.5.0-0.1_s390x.deb ... 179s Unpacking libsharpyuv-dev:s390x (1.5.0-0.1) ... 179s Selecting previously unselected package libheif-dev:s390x. 179s Preparing to unpack .../185-libheif-dev_1.19.5-1build1_s390x.deb ... 179s Unpacking libheif-dev:s390x (1.19.5-1build1) ... 179s Selecting previously unselected package libicu-dev:s390x. 179s Preparing to unpack .../186-libicu-dev_76.1-1ubuntu2_s390x.deb ... 179s Unpacking libicu-dev:s390x (76.1-1ubuntu2) ... 180s Selecting previously unselected package libimagequant0:s390x. 180s Preparing to unpack .../187-libimagequant0_2.18.0-1build1_s390x.deb ... 180s Unpacking libimagequant0:s390x (2.18.0-1build1) ... 180s Selecting previously unselected package libjs-jquery. 180s Preparing to unpack .../188-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ... 180s Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 180s Selecting previously unselected package libjs-underscore. 180s Preparing to unpack .../189-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ... 180s Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 180s Selecting previously unselected package libjs-sphinxdoc. 180s Preparing to unpack .../190-libjs-sphinxdoc_8.1.3-5_all.deb ... 180s Unpacking libjs-sphinxdoc (8.1.3-5) ... 180s Selecting previously unselected package libjson-perl. 180s Preparing to unpack .../191-libjson-perl_4.10000-1_all.deb ... 180s Unpacking libjson-perl (4.10000-1) ... 180s Selecting previously unselected package libkmlconvenience1t64:s390x. 180s Preparing to unpack .../192-libkmlconvenience1t64_1.3.0-12build1_s390x.deb ... 180s Unpacking libkmlconvenience1t64:s390x (1.3.0-12build1) ... 180s Selecting previously unselected package libkmlregionator1t64:s390x. 180s Preparing to unpack .../193-libkmlregionator1t64_1.3.0-12build1_s390x.deb ... 180s Unpacking libkmlregionator1t64:s390x (1.3.0-12build1) ... 180s Selecting previously unselected package libkmlxsd1t64:s390x. 180s Preparing to unpack .../194-libkmlxsd1t64_1.3.0-12build1_s390x.deb ... 180s Unpacking libkmlxsd1t64:s390x (1.3.0-12build1) ... 180s Selecting previously unselected package libltdl-dev:s390x. 180s Preparing to unpack .../195-libltdl-dev_2.5.4-3build1_s390x.deb ... 180s Unpacking libltdl-dev:s390x (2.5.4-3build1) ... 180s Selecting previously unselected package libminizip-dev:s390x. 180s Preparing to unpack .../196-libminizip-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 180s Unpacking libminizip-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 180s Selecting previously unselected package libxml2-dev:s390x. 180s Preparing to unpack .../197-libxml2-dev_2.12.7+dfsg+really2.9.14-0.2ubuntu3_s390x.deb ... 180s Unpacking libxml2-dev:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 180s Selecting previously unselected package libnetcdf-dev. 180s Preparing to unpack .../198-libnetcdf-dev_1%3a4.9.3-1_s390x.deb ... 180s Unpacking libnetcdf-dev (1:4.9.3-1) ... 180s Selecting previously unselected package libodbccr2:s390x. 180s Preparing to unpack .../199-libodbccr2_2.3.12-2ubuntu1_s390x.deb ... 180s Unpacking libodbccr2:s390x (2.3.12-2ubuntu1) ... 180s Selecting previously unselected package libtirpc-dev:s390x. 180s Preparing to unpack .../200-libtirpc-dev_1.3.4+ds-1.3_s390x.deb ... 180s Unpacking libtirpc-dev:s390x (1.3.4+ds-1.3) ... 180s Selecting previously unselected package libogdi-dev. 180s Preparing to unpack .../201-libogdi-dev_4.1.1+ds-5_s390x.deb ... 180s Unpacking libogdi-dev (4.1.1+ds-5) ... 180s Selecting previously unselected package libpcre2-16-0:s390x. 180s Preparing to unpack .../202-libpcre2-16-0_10.42-4ubuntu3_s390x.deb ... 180s Unpacking libpcre2-16-0:s390x (10.42-4ubuntu3) ... 180s Selecting previously unselected package libpcre2-32-0:s390x. 180s Preparing to unpack .../203-libpcre2-32-0_10.42-4ubuntu3_s390x.deb ... 180s Unpacking libpcre2-32-0:s390x (10.42-4ubuntu3) ... 180s Selecting previously unselected package libpcre2-posix3:s390x. 180s Preparing to unpack .../204-libpcre2-posix3_10.42-4ubuntu3_s390x.deb ... 180s Unpacking libpcre2-posix3:s390x (10.42-4ubuntu3) ... 180s Selecting previously unselected package libpcre2-dev:s390x. 180s Preparing to unpack .../205-libpcre2-dev_10.42-4ubuntu3_s390x.deb ... 180s Unpacking libpcre2-dev:s390x (10.42-4ubuntu3) ... 180s Selecting previously unselected package libpng-dev:s390x. 180s Preparing to unpack .../206-libpng-dev_1.6.46-4_s390x.deb ... 180s Unpacking libpng-dev:s390x (1.6.46-4) ... 180s Selecting previously unselected package libpoppler-dev:s390x. 180s Preparing to unpack .../207-libpoppler-dev_25.01.0-4_s390x.deb ... 180s Unpacking libpoppler-dev:s390x (25.01.0-4) ... 180s Selecting previously unselected package libpoppler-private-dev:s390x. 180s Preparing to unpack .../208-libpoppler-private-dev_25.01.0-4_s390x.deb ... 180s Unpacking libpoppler-private-dev:s390x (25.01.0-4) ... 180s Selecting previously unselected package libpq-dev. 180s Preparing to unpack .../209-libpq-dev_17.3-3_s390x.deb ... 180s Unpacking libpq-dev (17.3-3) ... 180s Selecting previously unselected package libqhull8.0:s390x. 180s Preparing to unpack .../210-libqhull8.0_2020.2-6build1_s390x.deb ... 180s Unpacking libqhull8.0:s390x (2020.2-6build1) ... 180s Selecting previously unselected package libqhullcpp8.0:s390x. 180s Preparing to unpack .../211-libqhullcpp8.0_2020.2-6build1_s390x.deb ... 180s Unpacking libqhullcpp8.0:s390x (2020.2-6build1) ... 180s Selecting previously unselected package libqhull-dev:s390x. 180s Preparing to unpack .../212-libqhull-dev_2020.2-6build1_s390x.deb ... 180s Unpacking libqhull-dev:s390x (2020.2-6build1) ... 180s Selecting previously unselected package libraqm0:s390x. 180s Preparing to unpack .../213-libraqm0_0.10.2-1_s390x.deb ... 180s Unpacking libraqm0:s390x (0.10.2-1) ... 180s Selecting previously unselected package librttopo-dev:s390x. 180s Preparing to unpack .../214-librttopo-dev_1.1.0-3build2_s390x.deb ... 180s Unpacking librttopo-dev:s390x (1.1.0-3build2) ... 180s Selecting previously unselected package libsqlite3-dev:s390x. 180s Preparing to unpack .../215-libsqlite3-dev_3.46.1-1_s390x.deb ... 180s Unpacking libsqlite3-dev:s390x (3.46.1-1) ... 180s Selecting previously unselected package libsqlite3-mod-spatialite:s390x. 180s Preparing to unpack .../216-libsqlite3-mod-spatialite_5.1.0-3build1_s390x.deb ... 180s Unpacking libsqlite3-mod-spatialite:s390x (5.1.0-3build1) ... 180s Selecting previously unselected package libjbig-dev:s390x. 180s Preparing to unpack .../217-libjbig-dev_2.1-6.1ubuntu2_s390x.deb ... 180s Unpacking libjbig-dev:s390x (2.1-6.1ubuntu2) ... 180s Selecting previously unselected package liblzma-dev:s390x. 180s Preparing to unpack .../218-liblzma-dev_5.6.3-1_s390x.deb ... 180s Unpacking liblzma-dev:s390x (5.6.3-1) ... 180s Selecting previously unselected package libwebpdemux2:s390x. 180s Preparing to unpack .../219-libwebpdemux2_1.5.0-0.1_s390x.deb ... 180s Unpacking libwebpdemux2:s390x (1.5.0-0.1) ... 180s Selecting previously unselected package libwebpmux3:s390x. 180s Preparing to unpack .../220-libwebpmux3_1.5.0-0.1_s390x.deb ... 180s Unpacking libwebpmux3:s390x (1.5.0-0.1) ... 180s Selecting previously unselected package libwebpdecoder3:s390x. 180s Preparing to unpack .../221-libwebpdecoder3_1.5.0-0.1_s390x.deb ... 180s Unpacking libwebpdecoder3:s390x (1.5.0-0.1) ... 180s Selecting previously unselected package libwebp-dev:s390x. 180s Preparing to unpack .../222-libwebp-dev_1.5.0-0.1_s390x.deb ... 180s Unpacking libwebp-dev:s390x (1.5.0-0.1) ... 180s Selecting previously unselected package libtiffxx6:s390x. 180s Preparing to unpack .../223-libtiffxx6_4.5.1+git230720-4ubuntu4_s390x.deb ... 180s Unpacking libtiffxx6:s390x (4.5.1+git230720-4ubuntu4) ... 180s Selecting previously unselected package libtiff-dev:s390x. 180s Preparing to unpack .../224-libtiff-dev_4.5.1+git230720-4ubuntu4_s390x.deb ... 180s Unpacking libtiff-dev:s390x (4.5.1+git230720-4ubuntu4) ... 181s Selecting previously unselected package liburiparser-dev. 181s Preparing to unpack .../225-liburiparser-dev_0.9.8+dfsg-2_s390x.deb ... 181s Unpacking liburiparser-dev (0.9.8+dfsg-2) ... 181s Selecting previously unselected package libxerces-c-dev:s390x. 181s Preparing to unpack .../226-libxerces-c-dev_3.2.4+debian-1.3build1_s390x.deb ... 181s Unpacking libxerces-c-dev:s390x (3.2.4+debian-1.3build1) ... 181s Selecting previously unselected package libxxhash-dev:s390x. 181s Preparing to unpack .../227-libxxhash-dev_0.8.3-2_s390x.deb ... 181s Unpacking libxxhash-dev:s390x (0.8.3-2) ... 181s Selecting previously unselected package python-django-doc. 181s Preparing to unpack .../228-python-django-doc_3%3a4.2.18-1_all.deb ... 181s Unpacking python-django-doc (3:4.2.18-1) ... 181s Selecting previously unselected package python-django-formtools-doc. 181s Preparing to unpack .../229-python-django-formtools-doc_2.4.1-3_all.deb ... 181s Unpacking python-django-formtools-doc (2.4.1-3) ... 181s Selecting previously unselected package python-psycopg2-doc. 181s Preparing to unpack .../230-python-psycopg2-doc_2.9.10-1_all.deb ... 181s Unpacking python-psycopg2-doc (2.9.10-1) ... 181s Selecting previously unselected package python3-all. 181s Preparing to unpack .../231-python3-all_3.13.1-1~exp2_s390x.deb ... 181s Unpacking python3-all (3.13.1-1~exp2) ... 181s Selecting previously unselected package python3-defusedxml. 181s Preparing to unpack .../232-python3-defusedxml_0.7.1-3_all.deb ... 181s Unpacking python3-defusedxml (0.7.1-3) ... 181s Selecting previously unselected package python3.13-doc. 181s Preparing to unpack .../233-python3.13-doc_3.13.2-1_all.deb ... 181s Unpacking python3.13-doc (3.13.2-1) ... 181s Selecting previously unselected package python3-doc. 181s Preparing to unpack .../234-python3-doc_3.13.1-1~exp2_all.deb ... 181s Unpacking python3-doc (3.13.1-1~exp2) ... 181s Selecting previously unselected package python3-roman. 181s Preparing to unpack .../235-python3-roman_5.0-1_all.deb ... 181s Unpacking python3-roman (5.0-1) ... 181s Selecting previously unselected package python3-docutils. 181s Preparing to unpack .../236-python3-docutils_0.21.2+dfsg-2_all.deb ... 181s Unpacking python3-docutils (0.21.2+dfsg-2) ... 181s Selecting previously unselected package python3-h11. 181s Preparing to unpack .../237-python3-h11_0.14.0-1_all.deb ... 181s Unpacking python3-h11 (0.14.0-1) ... 181s Selecting previously unselected package python3-imagesize. 181s Preparing to unpack .../238-python3-imagesize_1.4.1-1_all.deb ... 181s Unpacking python3-imagesize (1.4.1-1) ... 181s Selecting previously unselected package python3-numpy. 181s Preparing to unpack .../239-python3-numpy_1%3a1.26.4+ds-13_s390x.deb ... 181s Unpacking python3-numpy (1:1.26.4+ds-13) ... 181s Selecting previously unselected package python3-outcome. 181s Preparing to unpack .../240-python3-outcome_1.2.0-1.1_all.deb ... 181s Unpacking python3-outcome (1.2.0-1.1) ... 181s Selecting previously unselected package python3-packaging. 182s Preparing to unpack .../241-python3-packaging_24.2-1_all.deb ... 182s Unpacking python3-packaging (24.2-1) ... 182s Selecting previously unselected package python3-pil:s390x. 182s Preparing to unpack .../242-python3-pil_11.1.0-5_s390x.deb ... 182s Unpacking python3-pil:s390x (11.1.0-5) ... 182s Selecting previously unselected package python3-pytz. 182s Preparing to unpack .../243-python3-pytz_2025.1-3_all.deb ... 182s Unpacking python3-pytz (2025.1-3) ... 182s Selecting previously unselected package python3-sniffio. 182s Preparing to unpack .../244-python3-sniffio_1.3.1-1_all.deb ... 182s Unpacking python3-sniffio (1.3.1-1) ... 182s Selecting previously unselected package python3-sortedcontainers. 182s Preparing to unpack .../245-python3-sortedcontainers_2.4.0-2_all.deb ... 182s Unpacking python3-sortedcontainers (2.4.0-2) ... 182s Selecting previously unselected package python3-trio. 182s Preparing to unpack .../246-python3-trio_0.27.0-1_all.deb ... 182s Unpacking python3-trio (0.27.0-1) ... 182s Selecting previously unselected package python3-wsproto. 182s Preparing to unpack .../247-python3-wsproto_1.2.0-1_all.deb ... 182s Unpacking python3-wsproto (1.2.0-1) ... 182s Selecting previously unselected package python3-trio-websocket. 182s Preparing to unpack .../248-python3-trio-websocket_0.11.1-1_all.deb ... 182s Unpacking python3-trio-websocket (0.11.1-1) ... 182s Selecting previously unselected package python3-websocket. 182s Preparing to unpack .../249-python3-websocket_1.8.0-2_all.deb ... 182s Unpacking python3-websocket (1.8.0-2) ... 182s Selecting previously unselected package python3-selenium. 182s Preparing to unpack .../250-python3-selenium_4.24.4+dfsg-1_all.deb ... 182s Unpacking python3-selenium (4.24.4+dfsg-1) ... 182s Selecting previously unselected package python3-snowballstemmer. 182s Preparing to unpack .../251-python3-snowballstemmer_2.2.0-4build1_all.deb ... 182s Unpacking python3-snowballstemmer (2.2.0-4build1) ... 182s Selecting previously unselected package sphinx-common. 182s Preparing to unpack .../252-sphinx-common_8.1.3-5_all.deb ... 182s Unpacking sphinx-common (8.1.3-5) ... 182s Selecting previously unselected package python3-alabaster. 182s Preparing to unpack .../253-python3-alabaster_0.7.16-0.1_all.deb ... 182s Unpacking python3-alabaster (0.7.16-0.1) ... 182s Selecting previously unselected package python3-sphinx. 182s Preparing to unpack .../254-python3-sphinx_8.1.3-5_all.deb ... 182s Unpacking python3-sphinx (8.1.3-5) ... 182s Selecting previously unselected package python3-tblib. 182s Preparing to unpack .../255-python3-tblib_3.0.0-6_all.deb ... 182s Unpacking python3-tblib (3.0.0-6) ... 182s Selecting previously unselected package python3-tz. 182s Preparing to unpack .../256-python3-tz_2025.1-3_all.deb ... 182s Unpacking python3-tz (2025.1-3) ... 182s Selecting previously unselected package libfreexl-dev:s390x. 182s Preparing to unpack .../257-libfreexl-dev_2.0.0-1build2_s390x.deb ... 182s Unpacking libfreexl-dev:s390x (2.0.0-1build2) ... 182s Selecting previously unselected package libproj-dev:s390x. 182s Preparing to unpack .../258-libproj-dev_9.5.1-1_s390x.deb ... 182s Unpacking libproj-dev:s390x (9.5.1-1) ... 182s Selecting previously unselected package libgeotiff-dev:s390x. 182s Preparing to unpack .../259-libgeotiff-dev_1.7.3-1_s390x.deb ... 182s Unpacking libgeotiff-dev:s390x (1.7.3-1) ... 182s Selecting previously unselected package libhdf4-alt-dev. 182s Preparing to unpack .../260-libhdf4-alt-dev_4.3.0-1_s390x.deb ... 182s Unpacking libhdf4-alt-dev (4.3.0-1) ... 182s Selecting previously unselected package libjson-c-dev:s390x. 182s Preparing to unpack .../261-libjson-c-dev_0.18+ds-1_s390x.deb ... 182s Unpacking libjson-c-dev:s390x (0.18+ds-1) ... 182s Selecting previously unselected package libkml-dev:s390x. 182s Preparing to unpack .../262-libkml-dev_1.3.0-12build1_s390x.deb ... 182s Unpacking libkml-dev:s390x (1.3.0-12build1) ... 182s Selecting previously unselected package liblz4-dev:s390x. 182s Preparing to unpack .../263-liblz4-dev_1.10.0-3_s390x.deb ... 182s Unpacking liblz4-dev:s390x (1.10.0-3) ... 182s Selecting previously unselected package libopenjp2-7-dev:s390x. 182s Preparing to unpack .../264-libopenjp2-7-dev_2.5.0-2ubuntu3_s390x.deb ... 182s Unpacking libopenjp2-7-dev:s390x (2.5.0-2ubuntu3) ... 182s Selecting previously unselected package libspatialite-dev:s390x. 182s Preparing to unpack .../265-libspatialite-dev_5.1.0-3build1_s390x.deb ... 182s Unpacking libspatialite-dev:s390x (5.1.0-3build1) ... 182s Selecting previously unselected package unixodbc-dev:s390x. 182s Preparing to unpack .../266-unixodbc-dev_2.3.12-2ubuntu1_s390x.deb ... 182s Unpacking unixodbc-dev:s390x (2.3.12-2ubuntu1) ... 182s Selecting previously unselected package libgdal-dev. 182s Preparing to unpack .../267-libgdal-dev_3.10.2+dfsg-1build1_s390x.deb ... 182s Unpacking libgdal-dev (3.10.2+dfsg-1build1) ... 182s Setting up dh-python (6.20250108) ... 182s Setting up libgraphite2-3:s390x (1.3.14-2ubuntu1) ... 182s Setting up libgnutls-openssl27t64:s390x (3.8.9-2ubuntu1) ... 182s Setting up liblcms2-2:s390x (2.16-2) ... 182s Setting up python3-sniffio (1.3.1-1) ... 183s Setting up python3-outcome (1.2.0-1.1) ... 183s Setting up libsharpyuv0:s390x (1.5.0-0.1) ... 183s Setting up libgpgmepp6t64:s390x (1.24.1-4ubuntu1) ... 183s Setting up libaom3:s390x (3.12.0-1) ... 183s Setting up mysql-common (5.8+1.1.1) ... 183s update-alternatives: using /etc/mysql/my.cnf.fallback to provide /etc/mysql/my.cnf (my.cnf) in auto mode 183s Setting up libzstd-dev:s390x (1.5.6+dfsg-2) ... 183s Setting up proj-data (9.5.1-1) ... 183s Setting up hdf5-helpers (1.14.5+repack-3) ... 183s Setting up python3-tblib (3.0.0-6) ... 183s Setting up libogdi4.1:s390x (4.1.1+ds-5) ... 183s Setting up libqhull8.0:s390x (2020.2-6build1) ... 183s Setting up python3-defusedxml (0.7.1-3) ... 183s Setting up libarchive-zip-perl (1.68-1) ... 183s Setting up libjson-c-dev:s390x (0.18+ds-1) ... 183s Setting up python3-alabaster (0.7.16-0.1) ... 183s Setting up libgeos3.13.0:s390x (3.13.0-1) ... 183s Setting up libdebhelper-perl (13.24.1ubuntu2) ... 183s Setting up libpython3.12-minimal:s390x (3.12.9-1) ... 183s Setting up libpq5:s390x (17.3-3) ... 183s Setting up libdeflate0:s390x (1.23-1) ... 183s Setting up libwebpdecoder3:s390x (1.5.0-0.1) ... 183s Setting up m4 (1.4.19-5) ... 183s Setting up libevent-2.1-7t64:s390x (2.1.12-stable-10) ... 183s Setting up libqhull-r8.0:s390x (2020.2-6build1) ... 183s Setting up python3-pytz (2025.1-3) ... 183s Setting up python3-sortedcontainers (2.4.0-2) ... 183s Setting up libxerces-c3.2t64:s390x (3.2.4+debian-1.3build1) ... 183s Setting up libgomp1:s390x (15-20250213-1ubuntu1) ... 183s Setting up libmysqlclient24:s390x (8.4.4-0ubuntu1) ... 183s Setting up libjbig0:s390x (2.1-6.1ubuntu2) ... 183s Setting up libpcre2-16-0:s390x (10.42-4ubuntu3) ... 183s Setting up libaec0:s390x (1.1.3-1) ... 183s Setting up gdal-data (3.10.2+dfsg-1build1) ... 183s Setting up python3-tz (2025.1-3) ... 183s Setting up libpsl-dev:s390x (0.21.2-1.1build1) ... 183s Setting up libsnappy1v5:s390x (1.2.1-1) ... 183s Setting up libaom-dev:s390x (3.12.0-1) ... 183s Setting up python3-roman (5.0-1) ... 183s Setting up autotools-dev (20220109.1) ... 183s Setting up libxml2-dev:s390x (2.12.7+dfsg+really2.9.14-0.2ubuntu3) ... 183s Setting up libpcre2-32-0:s390x (10.42-4ubuntu3) ... 183s Setting up libblas3:s390x (3.12.1-2) ... 183s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so.3 to provide /usr/lib/s390x-linux-gnu/libblas.so.3 (libblas.so.3-s390x-linux-gnu) in auto mode 183s Setting up python3-packaging (24.2-1) ... 184s Setting up libunbound8:s390x (1.22.0-1ubuntu1) ... 184s Setting up libtirpc-dev:s390x (1.3.4+ds-1.3) ... 184s Setting up libpkgconf3:s390x (1.8.1-4) ... 184s Setting up libgmpxx4ldbl:s390x (2:6.3.0+dfsg-2ubuntu7) ... 184s Setting up libcfitsio10t64:s390x (4.5.0-5) ... 184s Setting up libexpat1-dev:s390x (2.6.4-1) ... 184s Setting up libgnutls-dane0t64:s390x (3.8.9-2ubuntu1) ... 184s Setting up python3-trio (0.27.0-1) ... 184s Setting up libsqlite3-dev:s390x (3.46.1-1) ... 184s Setting up libfreetype6:s390x (2.13.3+dfsg-1) ... 184s Setting up libsvtav1enc2:s390x (2.3.0+dfsg-1) ... 184s Setting up python3-snowballstemmer (2.2.0-4build1) ... 185s Setting up libgssrpc4t64:s390x (1.21.3-4ubuntu1) ... 185s Setting up libldap-dev:s390x (2.6.9+dfsg-1~exp2ubuntu1) ... 185s Setting up libimagequant0:s390x (2.18.0-1build1) ... 185s Setting up comerr-dev:s390x (2.1-1.47.2-1ubuntu1) ... 185s Setting up fonts-dejavu-mono (2.37-8) ... 185s Setting up libssl-dev:s390x (3.4.0-1ubuntu2) ... 185s Setting up libmpc3:s390x (1.3.1-1build2) ... 185s Setting up python3-h11 (0.14.0-1) ... 185s Setting up autopoint (0.23.1-1) ... 185s Setting up icu-devtools (76.1-1ubuntu2) ... 185s Setting up fonts-dejavu-core (2.37-8) ... 185s Setting up unixodbc-common (2.3.12-2ubuntu1) ... 185s Setting up libqhullcpp8.0:s390x (2020.2-6build1) ... 185s Setting up pkgconf-bin (1.8.1-4) ... 185s Setting up libjpeg-turbo8:s390x (2.1.5-3ubuntu2) ... 185s Setting up libltdl7:s390x (2.5.4-3build1) ... 185s Setting up libidn2-dev:s390x (2.3.7-2build2) ... 185s Setting up libqhull-dev:s390x (2020.2-6build1) ... 185s Setting up libgfortran5:s390x (15-20250213-1ubuntu1) ... 185s Setting up autoconf (2.72-3) ... 185s Setting up libxxhash-dev:s390x (0.8.3-2) ... 185s Setting up libwebp7:s390x (1.5.0-0.1) ... 185s Setting up liblzma-dev:s390x (5.6.3-1) ... 185s Setting up libubsan1:s390x (15-20250213-1ubuntu1) ... 185s Setting up libgif7:s390x (5.2.2-1ubuntu1) ... 185s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 185s Setting up libodbc2:s390x (2.3.12-2ubuntu1) ... 185s Setting up liburiparser1:s390x (0.9.8+dfsg-2) ... 185s Setting up libpcre2-posix3:s390x (10.42-4ubuntu3) ... 185s Setting up libfyba0t64:s390x (4.1.1-11build1) ... 185s Setting up dwz (0.15-1build6) ... 185s Setting up libdav1d7:s390x (1.5.1-1) ... 185s Setting up libminizip1t64:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 185s Setting up libgif-dev:s390x (5.2.2-1ubuntu1) ... 185s Setting up cfortran (20210827-1) ... 185s Setting up librav1e0.7:s390x (0.7.1-9) ... 185s Setting up libasan8:s390x (15-20250213-1ubuntu1) ... 185s Setting up libjson-perl (4.10000-1) ... 185s Setting up libnsl2:s390x (1.3.0-3build3) ... 185s Setting up libblosc1:s390x (1.21.5+ds-1build1) ... 185s Setting up debugedit (1:5.1-2) ... 185s Setting up libopenjp2-7:s390x (2.5.0-2ubuntu3) ... 185s Setting up libharfbuzz0b:s390x (10.2.0-1) ... 185s Setting up sgml-base (1.31) ... 185s Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ... 185s Setting up libisl23:s390x (0.27-1) ... 185s Setting up libde265-0:s390x (1.0.15-1build4) ... 185s Setting up libsharpyuv-dev:s390x (1.5.0-0.1) ... 185s Setting up libkmlbase1t64:s390x (1.3.0-12build1) ... 185s Setting up libtasn1-6-dev:s390x (4.20.0-2) ... 185s Setting up libwebpmux3:s390x (1.5.0-0.1) ... 185s Setting up libdeflate-dev:s390x (1.23-1) ... 185s Setting up libogdi-dev (4.1.1+ds-5) ... 185s Setting up libicu-dev:s390x (76.1-1ubuntu2) ... 185s Setting up python3-websocket (1.8.0-2) ... 185s Setting up libcc1-0:s390x (15-20250213-1ubuntu1) ... 185s Setting up libbrotli-dev:s390x (1.1.0-2build3) ... 185s Setting up libp11-kit-dev:s390x (0.25.5-2ubuntu3) ... 185s Setting up libblas-dev:s390x (3.12.1-2) ... 185s update-alternatives: using /usr/lib/s390x-linux-gnu/blas/libblas.so to provide /usr/lib/s390x-linux-gnu/libblas.so (libblas.so-s390x-linux-gnu) in auto mode 185s Setting up libsz2:s390x (1.1.3-1) ... 185s Setting up libitm1:s390x (15-20250213-1ubuntu1) ... 185s Setting up libmysqlclient-dev (8.4.4-0ubuntu1) ... 185s Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ... 185s Setting up libkadm5clnt-mit12:s390x (1.21.3-4ubuntu1) ... 185s Setting up libodbccr2:s390x (2.3.12-2ubuntu1) ... 185s Setting up python3-imagesize (1.4.1-1) ... 185s Setting up gdal-plugins:s390x (3.10.2+dfsg-1build1) ... 185s Setting up libjpeg8:s390x (8c-2ubuntu11) ... 185s Setting up automake (1:1.17-3) ... 185s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 185s Setting up default-libmysqlclient-dev:s390x (1.1.1) ... 185s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 185s Setting up python3.12-minimal (3.12.9-1) ... 186s Setting up libodbcinst2:s390x (2.3.12-2ubuntu1) ... 186s Setting up libjpeg-turbo8-dev:s390x (2.1.5-3ubuntu2) ... 186s Setting up liblapack3:s390x (3.12.1-2) ... 186s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/s390x-linux-gnu/liblapack.so.3 (liblapack.so.3-s390x-linux-gnu) in auto mode 186s Setting up libkmlxsd1t64:s390x (1.3.0-12build1) ... 186s Setting up gettext (0.23.1-1) ... 186s Setting up libarpack2t64:s390x (3.9.1-4) ... 186s Setting up libcfitsio-dev:s390x (4.5.0-5) ... 186s Setting up libgmp-dev:s390x (2:6.3.0+dfsg-2ubuntu7) ... 186s Setting up libpython3.12-stdlib:s390x (3.12.9-1) ... 186s Setting up python3-wsproto (1.2.0-1) ... 186s Setting up libpcre2-dev:s390x (10.42-4ubuntu3) ... 186s Setting up nettle-dev:s390x (3.10.1-1) ... 186s Setting up libkdb5-10t64:s390x (1.21.3-4ubuntu1) ... 186s Setting up libblosc-dev:s390x (1.21.5+ds-1build1) ... 186s Setting up fontconfig-config (2.15.0-2ubuntu1) ... 186s Setting up libgeos-c1t64:s390x (3.13.0-1) ... 186s Setting up libfyba-dev:s390x (4.1.1-11build1) ... 186s Setting up libwebpdemux2:s390x (1.5.0-0.1) ... 186s Setting up python3.12 (3.12.9-1) ... 188s Setting up python3-trio-websocket (0.11.1-1) ... 188s Setting up libpng-dev:s390x (1.6.46-4) ... 188s Setting up libaec-dev:s390x (1.1.3-1) ... 188s Setting up libjbig-dev:s390x (2.1-6.1ubuntu2) ... 188s Setting up python3-all (3.13.1-1~exp2) ... 188s Setting up libpq-dev (17.3-3) ... 188s Setting up libsvtav1enc-dev:s390x (2.3.0+dfsg-1) ... 188s Setting up libsuperlu7:s390x (7.0.0+dfsg1-2) ... 188s Setting up pkgconf:s390x (1.8.1-4) ... 188s Setting up intltool-debian (0.35.0+20060710.6) ... 188s Setting up liburiparser-dev (0.9.8+dfsg-2) ... 188s Setting up libkmldom1t64:s390x (1.3.0-12build1) ... 188s Setting up libminizip-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 188s Setting up python3.13-doc (3.13.2-1) ... 188s Setting up libltdl-dev:s390x (2.5.4-3build1) ... 188s Setting up libwebp-dev:s390x (1.5.0-0.1) ... 188s Setting up libopenjp2-7-dev:s390x (2.5.0-2ubuntu3) ... 188s Setting up libxerces-c-dev:s390x (3.2.4+debian-1.3build1) ... 188s Setting up libgeos-dev (3.13.0-1) ... 188s Setting up libraqm0:s390x (0.10.2-1) ... 188s Setting up libdav1d-dev:s390x (1.5.1-1) ... 188s Setting up liblapack-dev:s390x (3.12.1-2) ... 188s update-alternatives: using /usr/lib/s390x-linux-gnu/lapack/liblapack.so to provide /usr/lib/s390x-linux-gnu/liblapack.so (liblapack.so-s390x-linux-gnu) in auto mode 188s Setting up liblz4-dev:s390x (1.10.0-3) ... 188s Setting up libssh2-1-dev:s390x (1.11.1-1) ... 188s Setting up python3-numpy (1:1.26.4+ds-13) ... 192s Setting up libjs-sphinxdoc (8.1.3-5) ... 192s Setting up cpp-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 192s Setting up cpp-14 (14.2.0-17ubuntu1) ... 192s Setting up libhdf4-0-alt:s390x (4.3.0-1) ... 192s Setting up dh-strip-nondeterminism (1.14.1-2) ... 192s Setting up librttopo1:s390x (1.1.0-3build2) ... 192s Setting up librav1e-dev:s390x (0.7.1-9) ... 192s Setting up libhdf5-310:s390x (1.14.5+repack-3) ... 192s Setting up libfreexl1:s390x (2.0.0-1build2) ... 192s Setting up libtiff6:s390x (4.5.1+git230720-4ubuntu4) ... 192s Setting up xml-core (0.19) ... 192s Setting up libkadm5srv-mit12:s390x (1.21.3-4ubuntu1) ... 192s Setting up libarmadillo14 (1:14.2.3+dfsg-1) ... 192s Setting up libfontconfig1:s390x (2.15.0-2ubuntu1) ... 192s Setting up libgcc-14-dev:s390x (14.2.0-17ubuntu1) ... 192s Setting up libjpeg8-dev:s390x (8c-2ubuntu11) ... 192s Setting up libsuperlu-dev:s390x (7.0.0+dfsg1-2) ... 192s Setting up libhdf5-fortran-310:s390x (1.14.5+repack-3) ... 192s Setting up python-django-doc (3:4.2.18-1) ... 192s Setting up libtiffxx6:s390x (4.5.1+git230720-4ubuntu4) ... 192s Setting up libstdc++-14-dev:s390x (14.2.0-17ubuntu1) ... 192s Setting up libyuv0:s390x (0.0.1904.20250204-1) ... 192s Setting up unixodbc-dev:s390x (2.3.12-2ubuntu1) ... 192s Setting up python3-doc (3.13.1-1~exp2) ... 192s Setting up krb5-multidev:s390x (1.21.3-4ubuntu1) ... 192s Setting up libhdf5-cpp-310:s390x (1.14.5+repack-3) ... 192s Setting up libpoppler145:s390x (25.01.0-4) ... 192s Setting up libpoppler-dev:s390x (25.01.0-4) ... 192s Setting up libgnutls28-dev:s390x (3.8.9-2ubuntu1) ... 192s Setting up librttopo-dev:s390x (1.1.0-3build2) ... 192s Setting up libnghttp2-dev:s390x (1.64.0-1) ... 192s Setting up libhdf5-hl-310:s390x (1.14.5+repack-3) ... 192s Setting up libavif16:s390x (1.1.1-1ubuntu1) ... 192s Setting up libboost1.83-dev:s390x (1.83.0-4.1ubuntu1) ... 192s Setting up libarpack2-dev:s390x (3.9.1-4) ... 192s Setting up libproj25:s390x (9.5.1-1) ... 192s Setting up cpp-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 192s Setting up python3-selenium (4.24.4+dfsg-1) ... 192s Setting up libsqlite3-mod-spatialite:s390x (5.1.0-3build1) ... 192s Setting up libfreexl-dev:s390x (2.0.0-1build2) ... 192s Setting up po-debconf (1.0.21+nmu1) ... 192s Setting up libpoppler-private-dev:s390x (25.01.0-4) ... 192s Setting up libnetcdf22:s390x (1:4.9.3-1) ... 192s Setting up libjpeg-dev:s390x (8c-2ubuntu11) ... 192s Setting up libkmlengine1t64:s390x (1.3.0-12build1) ... 192s Setting up libgeotiff5:s390x (1.7.3-1) ... 192s Setting up libkrb5-dev:s390x (1.21.3-4ubuntu1) ... 192s Setting up python3-pil:s390x (11.1.0-5) ... 193s Setting up gcc-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 193s Setting up gcc-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 193s Setting up libtiff-dev:s390x (4.5.1+git230720-4ubuntu4) ... 193s Setting up sphinx-common (8.1.3-5) ... 193s Setting up librtmp-dev:s390x (2.4+20151223.gitfa8646d.1-2build7) ... 193s Setting up g++-14-s390x-linux-gnu (14.2.0-17ubuntu1) ... 193s Setting up python-psycopg2-doc (2.9.10-1) ... 193s Setting up python-django-formtools-doc (2.4.1-3) ... 193s Setting up libyuv-dev:s390x (0.0.1904.20250204-1) ... 193s Setting up cpp (4:14.2.0-1ubuntu1) ... 193s Setting up libboost-dev:s390x (1.83.0.2ubuntu1) ... 193s Setting up libkmlconvenience1t64:s390x (1.3.0-12build1) ... 193s Setting up libspatialite8t64:s390x (5.1.0-3build1) ... 193s Setting up libhdf5-hl-cpp-310:s390x (1.14.5+repack-3) ... 193s Setting up libhdf5-hl-fortran-310:s390x (1.14.5+repack-3) ... 193s Setting up libkmlregionator1t64:s390x (1.3.0-12build1) ... 193s Setting up g++-s390x-linux-gnu (4:14.2.0-1ubuntu1) ... 193s Setting up gcc-14 (14.2.0-17ubuntu1) ... 193s Setting up libcurl4-openssl-dev:s390x (8.12.0+git20250209.89ed161+ds-1ubuntu1) ... 193s Setting up libhdf5-dev (1.14.5+repack-3) ... 193s update-alternatives: using /usr/lib/s390x-linux-gnu/pkgconfig/hdf5-serial.pc to provide /usr/lib/s390x-linux-gnu/pkgconfig/hdf5.pc (hdf5.pc) in auto mode 193s Setting up libavif-dev:s390x (1.1.1-1ubuntu1) ... 193s Setting up libproj-dev:s390x (9.5.1-1) ... 193s Setting up libnetcdf-dev (1:4.9.3-1) ... 193s Setting up libspatialite-dev:s390x (5.1.0-3build1) ... 193s Setting up g++-14 (14.2.0-17ubuntu1) ... 193s Setting up libkml-dev:s390x (1.3.0-12build1) ... 193s Setting up libtool (2.5.4-3build1) ... 193s Setting up libgeotiff-dev:s390x (1.7.3-1) ... 193s Setting up gcc (4:14.2.0-1ubuntu1) ... 193s Setting up libarmadillo-dev (1:14.2.3+dfsg-1) ... 193s Setting up dh-autoreconf (20) ... 193s Setting up libhdf4-alt-dev (4.3.0-1) ... 193s Setting up g++ (4:14.2.0-1ubuntu1) ... 193s update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 193s Setting up build-essential (12.10ubuntu1) ... 193s Setting up debhelper (13.24.1ubuntu2) ... 193s Setting up libheif1:s390x (1.19.5-1build1) ... 193s Setting up libheif-dev:s390x (1.19.5-1build1) ... 193s Setting up libgdal36:s390x (3.10.2+dfsg-1build1) ... 193s Setting up libheif-plugin-aomdec:s390x (1.19.5-1build1) ... 193s Setting up libheif-plugin-libde265:s390x (1.19.5-1build1) ... 193s Setting up libgdal-dev (3.10.2+dfsg-1build1) ... 193s Processing triggers for install-info (7.1.1-1) ... 193s Processing triggers for libc-bin (2.40-4ubuntu1) ... 193s Processing triggers for systemd (257.2-3ubuntu1) ... 193s Processing triggers for man-db (2.13.0-1) ... 194s Processing triggers for sgml-base (1.31) ... 194s Setting up docutils-common (0.21.2+dfsg-2) ... 194s Processing triggers for sgml-base (1.31) ... 194s Setting up python3-docutils (0.21.2+dfsg-2) ... 195s Setting up python3-sphinx (8.1.3-5) ... 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python3-django'], kind short, sout pipe, serr pipe, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'python-django-doc'], kind short, sout pipe, serr pipe, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.mbTieI/command2-packages.all"], kind short, sout raw, serr pipe, env [] 197s autopkgtest: DBG: testbed command exited with code 0 197s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.mbTieI/command2-packages.all /tmp/autopkgtest-work.eb53_3ne/out/command2-packages.all 197s autopkgtest: DBG: got reply from testbed: ok 197s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.mbTieI/build.3wQ/src'], kind short, sout raw, serr raw, env [] 198s autopkgtest: DBG: testbed command exited with code 0 198s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.mbTieI/build.3wQ/src already exists 198s autopkgtest [12:40:21]: test command2: debian/tests/test-suite 198s autopkgtest [12:40:21]: test command2: [----------------------- 198s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', 'set -e; exec /tmp/autopkgtest.mbTieI/wrapper.sh --debug --artifacts=/tmp/autopkgtest.mbTieI/command2-artifacts --chdir=/tmp/autopkgtest.mbTieI/build.3wQ/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.mbTieI/command2-stderr --stdout=/tmp/autopkgtest.mbTieI/command2-stdout --tmp=/tmp/autopkgtest.mbTieI/autopkgtest_tmp --env=ADT_TEST_TRIGGERS=sphinx/8.1.3-5 -- bash -ec debian/tests/test-suite'], kind test, sout raw, serr raw, env [] 198s /tmp/autopkgtest.mbTieI/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.mbTieI/command2-artifacts 198s /tmp/autopkgtest.mbTieI/wrapper.sh: changing to directory: /tmp/autopkgtest.mbTieI/build.3wQ/src 198s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 198s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 198s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 198s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 198s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: LANG=C.UTF-8 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LANGUAGE 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_ADDRESS 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_ALL 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_COLLATE 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_CTYPE 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_IDENTIFICATION 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_MEASUREMENT 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_MESSAGES 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_MONETARY 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_NAME 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_NUMERIC 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_PAPER 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_TELEPHONE 198s /tmp/autopkgtest.mbTieI/wrapper.sh: unsetting environment: LC_TIME 198s /tmp/autopkgtest.mbTieI/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 198s /tmp/autopkgtest.mbTieI/wrapper.sh: pretending to be a login shell 198s /tmp/autopkgtest.mbTieI/wrapper.sh: will write standard error to /tmp/autopkgtest.mbTieI/command2-stderr 198s /tmp/autopkgtest.mbTieI/wrapper.sh: will write stdout to /tmp/autopkgtest.mbTieI/command2-stdout 198s /tmp/autopkgtest.mbTieI/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.mbTieI/autopkgtest_tmp 198s /tmp/autopkgtest.mbTieI/wrapper.sh: setting environment: ADT_TEST_TRIGGERS=sphinx/8.1.3-5 198s /tmp/autopkgtest.mbTieI/wrapper.sh: command to run: bash -ec debian/tests/test-suite 198s /tmp/autopkgtest.mbTieI/wrapper.sh: copying /tmp/tmp.WmA2cRvskC/out to stdout and file: /tmp/autopkgtest.mbTieI/command2-stdout 198s /tmp/autopkgtest.mbTieI/wrapper.sh: copying /tmp/tmp.WmA2cRvskC/err to standard error and file: /tmp/autopkgtest.mbTieI/command2-stdout 198s /tmp/autopkgtest.mbTieI/wrapper.sh: writing script pid 4728 to /tmp/autopkgtest_script_pid 201s Testing against Django installed in '/usr/lib/python3/dist-packages/django' with up to 2 processes 201s Importing application m2m_recursive 201s Importing application async 201s Importing application middleware 201s Importing application syndication_tests 201s Importing application inspectdb 201s Importing application indexes 201s Importing application utils_tests 201s Importing application migrations 201s Importing application db_utils 201s Importing application shell 201s Importing application model_indexes 201s Importing application decorators 201s Importing application test_client 201s Importing application proxy_models 201s Importing application admin_filters 201s Importing application sites_framework 201s Importing application template_backends 201s Importing application force_insert_update 201s Importing application model_meta 201s Importing application aggregation_regress 201s Importing application contenttypes_tests 201s Importing application logging_tests 201s Importing application admin_custom_urls 201s Importing application proxy_model_inheritance 201s Importing application admin_widgets 201s Importing application delete 201s Importing application wsgi 201s Importing application dbshell 201s Importing application managers_regress 201s Importing application humanize_tests 201s Importing application custom_pk 201s Importing application sessions_tests 201s Importing application xor_lookups 201s Importing application properties 201s Importing application postgres_tests 201s Importing application model_formsets_regress 201s Importing application signed_cookies_tests 201s Importing application resolve_url 201s Importing application timezones 201s Importing application admin_scripts 201s Importing application test_runner 201s Importing application test_utils 201s Importing application urlpatterns 201s Importing application empty 201s Importing application settings_tests 201s Importing application model_forms 201s Importing application expressions_case 201s Importing application admin_changelist 201s Importing application migrations2 201s Importing application many_to_one_null 201s Importing application dispatch 201s Importing application model_inheritance_regress 201s Importing application transactions 201s Importing application field_subclassing 201s Importing application admin_default_site 201s Importing application bulk_create 201s Importing application admin_inlines 201s Importing application admin_docs 201s Importing application model_fields 201s Importing application schema 201s Importing application generic_inline_admin 201s Importing application model_formsets 201s Importing application project_template 201s Importing application shortcuts 201s Importing application null_queries 201s Importing application select_related 201s Importing application migration_test_data_persistence 201s Importing application queries 201s Importing application generic_relations 201s Importing application m2m_multiple 201s Importing application model_inheritance 201s Importing application custom_migration_operations 201s Importing application basic 201s Importing application apps 201s Importing application template_loader 201s Importing application version 201s Importing application reverse_lookup 201s Importing application model_utils 201s Importing application file_uploads 201s Importing application app_loading 201s Importing application files 201s Importing application admin_checks 201s Importing application mutually_referential 201s Importing application model_package 201s Importing application unmanaged_models 201s Importing application custom_methods 201s Importing application get_or_create 201s Importing application select_related_regress 201s Importing application file_storage 201s Importing application servers 201s Importing application responses 201s Importing application sites_tests 201s Importing application serializers 201s Importing application backends 201s Importing application forms_tests 201s Importing application order_with_respect_to 201s Importing application db_functions 201s Importing application m2m_through 201s Importing application get_earliest_or_latest 201s Importing application swappable_models 201s Importing application custom_columns 201s Importing application generic_views 201s Importing application transaction_hooks 201s Importing application many_to_one 201s Importing application messages_tests 201s Importing application absolute_url_overrides 201s Importing application defer 201s Importing application custom_lookups 201s Importing application base 201s Importing application introspection 201s Importing application signals 201s Importing application one_to_one 201s Importing application empty_models 201s Importing application invalid_models_tests 201s Importing application no_models 201s Importing application django.contrib.flatpages 201s Importing application flatpages_tests 201s Importing application requests_tests 201s Importing application many_to_many 201s Importing application handlers 201s Importing application m2m_through_regress 201s Importing application foreign_object 201s Importing application select_for_update 201s Importing application null_fk_ordering 201s Importing application prefetch_related 201s Importing application expressions 201s Importing application pagination 201s Importing application reserved_names 201s Importing application mail 201s Importing application annotations 201s Importing application signing 201s Importing application ordering 201s Importing application httpwrappers 201s Importing application field_deconstruction 201s Importing application datetimes 201s Importing application m2m_regress 201s Importing application expressions_window 201s Importing application fixtures_regress 201s Importing application raw_query 201s Importing application fixtures_model_package 201s Importing application constraints 201s Importing application string_lookup 201s Importing application fixtures 201s Importing application custom_managers 201s Importing application urlpatterns_reverse 201s Importing application auth_tests 201s Importing application dates 201s Importing application staticfiles_tests 201s Importing application context_processors 201s Importing application multiple_database 201s Importing application sitemaps_tests 201s Importing application extra_regress 201s Importing application bash_completion 201s Importing application distinct_on_fields 201s Importing application get_object_or_404 201s Importing application django.contrib.redirects 201s Importing application redirects_tests 201s Importing application m2m_intermediary 201s Importing application model_enums 201s Importing application str 201s Importing application admin_autodiscover 201s Importing application filtered_relation 201s Importing application template_tests 201s Importing application or_lookups 201s Importing application defer_regress 201s Importing application save_delete_hooks 201s Importing application admin_ordering 201s Importing application i18n 201s Importing application update 201s Importing application select_related_onetoone 201s Importing application csrf_tests 201s Importing application nested_foreign_keys 201s Importing application from_db_value 201s Importing application cache 201s Importing application view_tests 201s Importing application inline_formsets 201s Importing application middleware_exceptions 201s Importing application known_related_objects 201s Importing application aggregation 201s Importing application asgi 201s Importing application admin_registration 201s Importing application modeladmin 201s Importing application lookup 201s Importing application model_options 201s Importing application queryset_pickle 201s Importing application conditional_processing 201s Importing application m2m_and_m2o 201s Importing application user_commands 201s Importing application admin_utils 201s Importing application validation 201s Importing application validators 201s Importing application check_framework 201s Importing application max_lengths 201s Importing application null_fk 201s Importing application deprecation 201s Importing application test_exceptions 201s Importing application model_regress 201s Importing application generic_relations_regress 201s Importing application update_only_fields 201s Importing application delete_regress 201s Importing application datatypes 201s Importing application test_client_regress 201s Importing application migrate_signals 201s Importing application m2m_signals 201s Importing application db_typecasts 201s Importing application field_defaults 201s Importing application admin_views 201s Importing application builtin_server 201s Importing application m2o_recursive 202s Creating test database for alias 'default' ('file:memorydb_default?mode=memory&cache=shared')... 203s Found 16347 test(s). 203s Operations to perform: 203s Synchronize unmigrated apps: absolute_url_overrides, admin_autodiscover, admin_changelist, admin_checks, admin_custom_urls, admin_default_site, admin_docs, admin_filters, admin_inlines, admin_ordering, admin_registration, admin_scripts, admin_utils, admin_views, admin_widgets, aggregation, aggregation_regress, annotations, app_loading, apps, asgi, async, auth, auth_tests, backends, base, bash_completion, basic, builtin_server, bulk_create, cache, check_framework, conditional_processing, constraints, contenttypes, contenttypes_tests, context_processors, csrf_tests, custom_columns, custom_lookups, custom_managers, custom_methods, custom_migration_operations, custom_pk, datatypes, dates, datetimes, db_typecasts, db_utils, dbshell, decorators, defer, defer_regress, delete, delete_regress, deprecation, dispatch, distinct_on_fields, empty, empty_models, expressions, expressions_case, expressions_window, extra_regress, field_deconstruction, field_defaults, field_subclassing, file_storage, file_uploads, files, filtered_relation, fixtures, fixtures_model_package, fixtures_regress, flatpages_tests, force_insert_update, foreign_object, forms_tests, from_db_value, generic_inline_admin, generic_relations, generic_relations_regress, generic_views, get_earliest_or_latest, get_object_or_404, get_or_create, handlers, httpwrappers, humanize_tests, i18n, indexes, inline_formsets, inspectdb, introspection, invalid_models_tests, known_related_objects, logging_tests, lookup, m2m_and_m2o, m2m_intermediary, m2m_multiple, m2m_recursive, m2m_regress, m2m_signals, m2m_through, m2m_through_regress, m2o_recursive, mail, managers_regress, many_to_many, many_to_one, many_to_one_null, max_lengths, messages, messages_tests, middleware, middleware_exceptions, migrate_signals, migrations, migrations2, model_enums, model_fields, model_forms, model_formsets, model_formsets_regress, model_indexes, model_inheritance, model_inheritance_regress, model_meta, model_options, model_package, model_regress, model_utils, modeladmin, multiple_database, mutually_referential, nested_foreign_keys, no_models, null_fk, null_fk_ordering, null_queries, one_to_one, or_lookups, order_with_respect_to, ordering, pagination, prefetch_related, project_template, properties, proxy_model_inheritance, proxy_models, queries, queryset_pickle, raw_query, redirects_tests, requests_tests, reserved_names, resolve_url, responses, reverse_lookup, save_delete_hooks, schema, select_for_update, select_related, select_related_onetoone, select_related_regress, serializers, servers, sessions, sessions_tests, settings_tests, shell, shortcuts, signals, signed_cookies_tests, signing, sitemaps_tests, sites_tests, staticfiles, staticfiles_tests, str, string_lookup, swappable_models, syndication_tests, template_backends, template_loader, template_tests, test_client, test_client_regress, test_exceptions, test_runner, test_utils, timezones, transaction_hooks, transactions, unmanaged_models, update, update_only_fields, urlpatterns, urlpatterns_reverse, user_commands, utils_tests, validation, validators, version, view_tests, wsgi, xor_lookups 203s Apply all migrations: admin, db_functions, flatpages, migration_test_data_persistence, postgres_tests, redirects, sites, sites_framework 203s Synchronizing apps without migrations: 203s Creating tables... 203s Creating table django_content_type 203s Creating table auth_permission 203s Creating table auth_group 203s Creating table auth_user 203s Creating table django_session 203s Creating table m2m_recursive_person 203s Creating table m2m_recursive_colleague 203s Creating table async_relatedmodel 203s Creating table async_simplemodel 203s Creating table async_manytomanymodel 203s Creating table syndication_tests_entry 203s Creating table syndication_tests_article 203s Creating table inspectdb_people 203s Creating table inspectdb_message 203s Creating table inspectdb_peopledata 203s Creating table inspectdb_peoplemoredata 203s Creating table inspectdb_foreignkeytofield 203s Creating table inspectdb_digitsincolumnname 203s Creating table inspectdb_special.table name 203s Creating table inspectdb_columntypes 203s Creating table inspectdb_jsonfieldcolumntype 203s Creating table inspectdb_charfielddbcollation 203s Creating table inspectdb_textfielddbcollation 203s Creating table inspectdb_uniquetogether 203s Creating table inspectdb_funcuniqueconstraint 203s Creating table indexes_articletranslation 203s Creating table indexes_article 203s Creating table indexes_indexedarticle 203s Creating table indexes_indexedarticle2 203s Creating table utils_tests_category 203s Creating table utils_tests_categoryinfo 203s Creating table migrations_modelwithcustombase 203s Creating table migrations_unmigratedmodel 203s Creating table model_indexes_book 203s Creating table model_indexes_childmodel1 203s Creating table model_indexes_childmodel2 203s Creating table proxy_models_person 203s Creating table proxy_models_statusperson 203s Creating table proxy_models_lowerstatusperson 203s Creating table proxy_models_user 203s Creating table proxy_models_country 203s Creating table proxy_models_state 203s Creating table proxy_models_baseuser 203s Creating table proxy_models_trackeruser 203s Creating table proxy_models_issue 203s Creating table proxy_models_bug 203s Creating table proxy_models_improvement 203s Creating table admin_filters_book 203s Creating table admin_filters_improvedbook 203s Creating table admin_filters_department 203s Creating table admin_filters_employee 203s Creating table admin_filters_taggeditem 203s Creating table admin_filters_bookmark 203s Creating table force_insert_update_counter 203s Creating table force_insert_update_inheritedcounter 203s Creating table force_insert_update_subcounter 203s Creating table force_insert_update_withcustompk 203s Creating table model_meta_relation 203s Creating table model_meta_baseperson 203s Creating table model_meta_person 203s Creating table model_meta_personthroughproxysubclass 203s Creating table model_meta_relating 203s Creating table model_meta_commonancestor 203s Creating table model_meta_firstparent 203s Creating table model_meta_secondparent 203s Creating table model_meta_child 203s Creating table aggregation_regress_author 203s Creating table aggregation_regress_publisher 203s Creating table aggregation_regress_itemtag 203s Creating table aggregation_regress_book 203s Creating table aggregation_regress_store 203s Creating table aggregation_regress_entries 203s Creating table aggregation_regress_clues 203s Creating table aggregation_regress_withmanualpk 203s Creating table aggregation_regress_hardbackbook 203s Creating table aggregation_regress_alfa 203s Creating table aggregation_regress_bravo 203s Creating table aggregation_regress_charlie 203s Creating table aggregation_regress_selfreffk 203s Creating table aggregation_regress_recipe 203s Creating table contenttypes_tests_site 203s Creating table contenttypes_tests_author 203s Creating table contenttypes_tests_article 203s Creating table contenttypes_tests_schemeincludedurl 203s Creating table contenttypes_tests_concretemodel 203s Creating table contenttypes_tests_foowithouturl 203s Creating table contenttypes_tests_foowithurl 203s Creating table contenttypes_tests_foowithbrokenabsoluteurl 203s Creating table contenttypes_tests_question 203s Creating table contenttypes_tests_answer 203s Creating table contenttypes_tests_post 203s Creating table contenttypes_tests_modelwithnullfktosite 203s Creating table contenttypes_tests_modelwithm2mtosite 203s Creating table admin_custom_urls_action 203s Creating table admin_custom_urls_person 203s Creating table admin_custom_urls_car 203s Creating table proxy_model_inheritance_concretemodel 203s Creating table proxy_model_inheritance_concretemodelsubclass 203s Creating table admin_widgets_member 203s Creating table admin_widgets_artist 203s Creating table admin_widgets_band 203s Creating table admin_widgets_unsafelimitchoicesto 203s Creating table admin_widgets_album 203s Creating table admin_widgets_releaseevent 203s Creating table admin_widgets_videostream 203s Creating table admin_widgets_inventory 203s Creating table admin_widgets_event 203s Creating table admin_widgets_car 203s Creating table admin_widgets_cartire 203s Creating table admin_widgets_honeycomb 203s Creating table admin_widgets_bee 203s Creating table admin_widgets_individual 203s Creating table admin_widgets_company 203s Creating table admin_widgets_advisor 203s Creating table admin_widgets_student 203s Creating table admin_widgets_school 203s Creating table admin_widgets_profile 203s Creating table delete_p 203s Creating table delete_r 203s Creating table delete_s 203s Creating table delete_t 203s Creating table delete_u 203s Creating table delete_rchild 203s Creating table delete_rchildchild 203s Creating table delete_a 203s Creating table delete_b 203s Creating table delete_m 203s Creating table delete_mr 203s Creating table delete_mrnull 203s Creating table delete_avatar 203s Creating table delete_user 203s Creating table delete_hiddenuser 203s Creating table delete_hiddenuserprofile 203s Creating table delete_m2mto 203s Creating table delete_m2mfrom 203s Creating table delete_parent 203s Creating table delete_child 203s Creating table delete_base 203s Creating table delete_reltobase 203s Creating table delete_origin 203s Creating table delete_referrer 203s Creating table delete_secondreferrer 203s Creating table delete_deletetop 203s Creating table delete_b1 203s Creating table delete_b2 203s Creating table delete_b3 203s Creating table delete_deletebottom 203s Creating table delete_genericb1 203s Creating table delete_genericb2 203s Creating table delete_genericdeletebottom 203s Creating table delete_genericdeletebottomparent 203s Creating table managers_regress_parent 203s Creating table managers_regress_child1 203s Creating table managers_regress_child2 203s Creating table managers_regress_child3 203s Creating table managers_regress_child4 203s Creating table managers_regress_child5 203s Creating table managers_regress_child6 203s Creating table managers_regress_child7 203s Creating table managers_regress_relatedmodel 203s Creating table managers_regress_relationmodel 203s Creating table custom_pk_employee 203s Creating table custom_pk_business 203s Creating table custom_pk_bar 203s Creating table custom_pk_foo 203s Creating table custom_pk_customautofieldmodel 203s Creating table sessions_tests_customsession 203s Creating table xor_lookups_number 203s Creating table properties_person 203s Creating table model_formsets_regress_user 203s Creating table model_formsets_regress_usersite 203s Creating table model_formsets_regress_userprofile 203s Creating table model_formsets_regress_userpreferences 203s Creating table model_formsets_regress_profilenetwork 203s Creating table model_formsets_regress_place 203s Creating table model_formsets_regress_restaurant 203s Creating table model_formsets_regress_manager 203s Creating table model_formsets_regress_network 203s Creating table model_formsets_regress_host 203s Creating table resolve_url_unimportantthing 203s Creating table timezones_event 203s Creating table timezones_maybeevent 203s Creating table timezones_session 203s Creating table timezones_sessionevent 203s Creating table timezones_timestamp 203s Creating table timezones_alldayevent 203s Creating table timezones_dailyevent 203s Creating table test_runner_person 203s Creating table test_runner_throughbase 203s Creating table test_runner_through 203s Creating table test_runner_b 203s Creating table test_utils_car 203s Creating table test_utils_person 203s Creating table test_utils_possessedcar 203s Creating table empty_empty 203s Creating table model_forms_person 203s Creating table model_forms_category 203s Creating table model_forms_writer 203s Creating table model_forms_article 203s Creating table model_forms_improvedarticle 203s Creating table model_forms_improvedarticlewithparentlink 203s Creating table model_forms_betterwriter 203s Creating table model_forms_publication 203s Creating table model_forms_publicationdefaults 203s Creating table model_forms_author 203s Creating table model_forms_author1 203s Creating table model_forms_writerprofile 203s Creating table model_forms_document 203s Creating table model_forms_textfile 203s Creating table model_forms_customff 203s Creating table model_forms_filepathmodel 203s Creating table model_forms_imagefile 203s Creating table model_forms_optionalimagefile 203s Creating table model_forms_noextensionimagefile 203s Creating table model_forms_homepage 203s Creating table model_forms_product 203s Creating table model_forms_price 203s Creating table model_forms_triple 203s Creating table model_forms_articlestatus 203s Creating table model_forms_inventory 203s Creating table model_forms_book 203s Creating table model_forms_derivedbook 203s Creating table model_forms_explicitpk 203s Creating table model_forms_post 203s Creating table model_forms_datetimepost 203s Creating table model_forms_derivedpost 203s Creating table model_forms_bigint 203s Creating table model_forms_customfieldforexclusionmodel 203s Creating table model_forms_flexibledatepost 203s Creating table model_forms_colour 203s Creating table model_forms_colourfulitem 203s Creating table model_forms_customerrormessage 203s Creating table model_forms_character 203s Creating table model_forms_stumpjoke 203s Creating table model_forms_student 203s Creating table model_forms_photo 203s Creating table model_forms_uuidpk 203s Creating table model_forms_strictassignmentfieldspecific 203s Creating table model_forms_strictassignmentall 203s Creating table model_forms_award 203s Creating table model_forms_nullableuniquecharfieldmodel 203s Creating table model_forms_number 203s Creating table model_forms_numberstodice 203s Creating table model_forms_dice 203s Creating table expressions_case_casetestmodel 203s Creating table expressions_case_o2ocasetestmodel 203s Creating table expressions_case_fkcasetestmodel 203s Creating table expressions_case_client 203s Creating table admin_changelist_event 203s Creating table admin_changelist_parent 203s Creating table admin_changelist_child 203s Creating table admin_changelist_genre 203s Creating table admin_changelist_band 203s Creating table admin_changelist_musician 203s Creating table admin_changelist_group 203s Creating table admin_changelist_concert 203s Creating table admin_changelist_membership 203s Creating table admin_changelist_quartet 203s Creating table admin_changelist_chordsmusician 203s Creating table admin_changelist_chordsband 203s Creating table admin_changelist_invitation 203s Creating table admin_changelist_swallow 203s Creating table admin_changelist_swallowonetoone 203s Creating table admin_changelist_unorderedobject 203s Creating table admin_changelist_orderedobject 203s Creating table admin_changelist_customiduser 203s Creating table admin_changelist_charpk 203s Creating table many_to_one_null_reporter 203s Creating table many_to_one_null_article 203s Creating table many_to_one_null_car 203s Creating table many_to_one_null_driver 203s Creating table model_inheritance_regress_place 203s Creating table model_inheritance_regress_restaurant 203s Creating table model_inheritance_regress_italianrestaurant 203s Creating table model_inheritance_regress_parkinglot 203s Creating table model_inheritance_regress_parkinglot3 203s Creating table model_inheritance_regress_parkinglot4a 203s Creating table model_inheritance_regress_parkinglot4b 203s Creating table model_inheritance_regress_supplier 203s Creating table model_inheritance_regress_wholesaler 203s Creating table model_inheritance_regress_parent 203s Creating table model_inheritance_regress_child 203s Creating table model_inheritance_regress_selfrefparent 203s Creating table model_inheritance_regress_selfrefchild 203s Creating table model_inheritance_regress_article 203s Creating table model_inheritance_regress_articlewithauthor 203s Creating table model_inheritance_regress_m2mbase 203s Creating table model_inheritance_regress_m2mchild 203s Creating table model_inheritance_regress_qualitycontrol 203s Creating table model_inheritance_regress_basem 203s Creating table model_inheritance_regress_derivedm 203s Creating table model_inheritance_regress_internalcertificationaudit 203s Creating table model_inheritance_regress_person 203s Creating table model_inheritance_regress_birthdayparty 203s Creating table model_inheritance_regress_bachelorparty 203s Creating table model_inheritance_regress_messybachelorparty 203s Creating table model_inheritance_regress_searchablelocation 203s Creating table model_inheritance_regress_busstation 203s Creating table model_inheritance_regress_trainstation 203s Creating table model_inheritance_regress_user 203s Creating table model_inheritance_regress_profile 203s Creating table model_inheritance_regress_politician 203s Creating table model_inheritance_regress_congressman 203s Creating table model_inheritance_regress_senator 203s Creating table transactions_reporter 203s Creating table bulk_create_country 203s Creating table bulk_create_proxymulticountry 203s Creating table bulk_create_restaurant 203s Creating table bulk_create_pizzeria 203s Creating table bulk_create_state 203s Creating table bulk_create_twofields 203s Creating table bulk_create_fieldswithdbcolumns 203s Creating table bulk_create_upsertconflict 203s Creating table bulk_create_nofields 203s Creating table bulk_create_smallautofieldmodel 203s Creating table bulk_create_bigautofieldmodel 203s Creating table bulk_create_nullablefields 203s Creating table bulk_create_relatedmodel 203s Creating table admin_inlines_parent 203s Creating table admin_inlines_teacher 203s Creating table admin_inlines_child 203s Creating table admin_inlines_book 203s Creating table admin_inlines_author 203s Creating table admin_inlines_nonautopkbook 203s Creating table admin_inlines_nonautopkbookchild 203s Creating table admin_inlines_editablepkbook 203s Creating table admin_inlines_holder 203s Creating table admin_inlines_inner 203s Creating table admin_inlines_holder2 203s Creating table admin_inlines_inner2 203s Creating table admin_inlines_holder3 203s Creating table admin_inlines_inner3 203s Creating table admin_inlines_holder4 203s Creating table admin_inlines_inner4stacked 203s Creating table admin_inlines_inner4tabular 203s Creating table admin_inlines_holder5 203s Creating table admin_inlines_inner5stacked 203s Creating table admin_inlines_inner5tabular 203s Creating table admin_inlines_person 203s Creating table admin_inlines_outfititem 203s Creating table admin_inlines_fashionista 203s Creating table admin_inlines_shoppingweakness 203s Creating table admin_inlines_titlecollection 203s Creating table admin_inlines_title 203s Creating table admin_inlines_poll 203s Creating table admin_inlines_question 203s Creating table admin_inlines_novel 203s Creating table admin_inlines_chapter 203s Creating table admin_inlines_footnote 203s Creating table admin_inlines_capofamiglia 203s Creating table admin_inlines_consigliere 203s Creating table admin_inlines_sottocapo 203s Creating table admin_inlines_readonlyinline 203s Creating table admin_inlines_parentmodelwithcustompk 203s Creating table admin_inlines_childmodel1 203s Creating table admin_inlines_childmodel2 203s Creating table admin_inlines_binarytree 203s Creating table admin_inlines_lifeform 203s Creating table admin_inlines_extraterrestrial 203s Creating table admin_inlines_sighting 203s Creating table admin_inlines_someparentmodel 203s Creating table admin_inlines_somechildmodel 203s Creating table admin_inlines_course 203s Creating table admin_inlines_class 203s Creating table admin_inlines_showinlineparent 203s Creating table admin_inlines_showinlinechild 203s Creating table admin_inlines_profilecollection 203s Creating table admin_inlines_profile 203s Creating table admin_inlines_verbosenameprofile 203s Creating table admin_inlines_verbosenamepluralprofile 203s Creating table admin_inlines_bothverbosenameprofile 203s Creating table admin_docs_company 203s Creating table admin_docs_group 203s Creating table admin_docs_family 203s Creating table admin_docs_person 203s Creating table model_fields_foo 203s Creating table model_fields_bar 203s Creating table model_fields_whiz 203s Creating table model_fields_whizdelayed 203s Creating table model_fields_whiziter 203s Creating table model_fields_whiziterempty 203s Creating table model_fields_choiceful 203s Creating table model_fields_bigd 203s Creating table model_fields_floatmodel 203s Creating table model_fields_bigs 203s Creating table model_fields_unicodeslugfield 203s Creating table model_fields_automodel 203s Creating table model_fields_bigautomodel 203s Creating table model_fields_smallautomodel 203s Creating table model_fields_smallintegermodel 203s Creating table model_fields_integermodel 203s Creating table model_fields_bigintegermodel 203s Creating table model_fields_positivebigintegermodel 203s Creating table model_fields_positivesmallintegermodel 203s Creating table model_fields_positiveintegermodel 203s Creating table model_fields_post 203s Creating table model_fields_nullbooleanmodel 203s Creating table model_fields_booleanmodel 203s Creating table model_fields_datetimemodel 203s Creating table model_fields_durationmodel 203s Creating table model_fields_nulldurationmodel 203s Creating table model_fields_primarykeycharmodel 203s Creating table model_fields_fkstobooleans 203s Creating table model_fields_fktochar 203s Creating table model_fields_renamedfield 203s Creating table model_fields_verbosenamefield 203s Creating table model_fields_genericipaddress 203s Creating table model_fields_decimallessthanone 203s Creating table model_fields_fieldclassattributemodel 203s Creating table model_fields_datamodel 203s Creating table model_fields_document 203s Creating table model_fields_person 203s Creating table model_fields_personwithheight 203s Creating table model_fields_personwithheightandwidth 203s Creating table model_fields_persondimensionsfirst 203s Creating table model_fields_persontwoimages 203s Creating table model_fields_jsonmodel 203s Creating table model_fields_nullablejsonmodel 203s Creating table model_fields_relatedjsonmodel 203s Creating table model_fields_allfieldsmodel 203s Creating table model_fields_manytomany 203s Creating table model_fields_uuidmodel 203s Creating table model_fields_nullableuuidmodel 203s Creating table model_fields_primarykeyuuidmodel 203s Creating table model_fields_relatedtouuidmodel 203s Creating table model_fields_uuidchild 203s Creating table model_fields_uuidgrandchild 203s Creating table generic_inline_admin_episode 203s Creating table generic_inline_admin_media 203s Creating table generic_inline_admin_category 203s Creating table generic_inline_admin_phonenumber 203s Creating table generic_inline_admin_contact 203s Creating table generic_inline_admin_episodepermanent 203s Creating table model_formsets_author 203s Creating table model_formsets_betterauthor 203s Creating table model_formsets_book 203s Creating table model_formsets_bookwithcustompk 203s Creating table model_formsets_editor 203s Creating table model_formsets_bookwithoptionalalteditor 203s Creating table model_formsets_alternatebook 203s Creating table model_formsets_authormeeting 203s Creating table model_formsets_customprimarykey 203s Creating table model_formsets_place 203s Creating table model_formsets_owner 203s Creating table model_formsets_location 203s Creating table model_formsets_ownerprofile 203s Creating table model_formsets_restaurant 203s Creating table model_formsets_product 203s Creating table model_formsets_price 203s Creating table model_formsets_mexicanrestaurant 203s Creating table model_formsets_classymexicanrestaurant 203s Creating table model_formsets_repository 203s Creating table model_formsets_revision 203s Creating table model_formsets_person 203s Creating table model_formsets_membership 203s Creating table model_formsets_team 203s Creating table model_formsets_player 203s Creating table model_formsets_poet 203s Creating table model_formsets_poem 203s Creating table model_formsets_post 203s Creating table model_formsets_uuidpkparent 203s Creating table model_formsets_uuidpkchild 203s Creating table model_formsets_childwitheditablepk 203s Creating table model_formsets_autopkchildofuuidpkparent 203s Creating table model_formsets_autopkparent 203s Creating table model_formsets_uuidpkchildofautopkparent 203s Creating table model_formsets_parentwithuuidalternatekey 203s Creating table model_formsets_childrelatedviaak 203s Creating table null_queries_poll 203s Creating table null_queries_choice 203s Creating table null_queries_outera 203s Creating table null_queries_outerb 203s Creating table null_queries_inner 203s Creating table select_related_domain 203s Creating table select_related_kingdom 203s Creating table select_related_phylum 203s Creating table select_related_klass 203s Creating table select_related_order 203s Creating table select_related_family 203s Creating table select_related_genus 203s Creating table select_related_species 203s Creating table select_related_hybridspecies 203s Creating table select_related_topping 203s Creating table select_related_pizza 203s Creating table select_related_taggeditem 203s Creating table select_related_bookmark 203s Creating table queries_dumbcategory 203s Creating table queries_namedcategory 203s Creating table queries_tag 203s Creating table queries_note 203s Creating table queries_annotation 203s Creating table queries_datetimepk 203s Creating table queries_extrainfo 203s Creating table queries_author 203s Creating table queries_item 203s Creating table queries_report 203s Creating table queries_reportcomment 203s Creating table queries_ranking 203s Creating table queries_cover 203s Creating table queries_number 203s Creating table queries_valid 203s Creating table queries_x 203s Creating table queries_y 203s Creating table queries_loopx 203s Creating table queries_loopy 203s Creating table queries_loopz 203s Creating table queries_managedmodel 203s Creating table queries_detail 203s Creating table queries_member 203s Creating table queries_child 203s Creating table queries_custompk 203s Creating table queries_related 203s Creating table queries_custompktag 203s Creating table queries_celebrity 203s Creating table queries_tvchef 203s Creating table queries_fan 203s Creating table queries_leafa 203s Creating table queries_leafb 203s Creating table queries_join 203s Creating table queries_reservedname 203s Creating table queries_sharedconnection 203s Creating table queries_pointera 203s Creating table queries_pointerb 203s Creating table queries_singleobject 203s Creating table queries_relatedobject 203s Creating table queries_plaything 203s Creating table queries_article 203s Creating table queries_food 203s Creating table queries_eaten 203s Creating table queries_node 203s Creating table queries_objecta 203s Creating table queries_childobjecta 203s Creating table queries_objectb 203s Creating table queries_objectc 203s Creating table queries_simplecategory 203s Creating table queries_specialcategory 203s Creating table queries_categoryitem 203s Creating table queries_mixedcasefieldcategoryitem 203s Creating table queries_mixedcasedbcolumncategoryitem 203s Creating table queries_onetoonecategory 203s Creating table queries_categoryrelationship 203s Creating table queries_commonmixedcaseforeignkeys 203s Creating table queries_nullablename 203s Creating table queries_modeld 203s Creating table queries_modelc 203s Creating table queries_modelb 203s Creating table queries_modela 203s Creating table queries_job 203s Creating table queries_jobresponsibilities 203s Creating table queries_responsibility 203s Creating table queries_fk1 203s Creating table queries_fk2 203s Creating table queries_fk3 203s Creating table queries_basea 203s Creating table queries_identifier 203s Creating table queries_program 203s Creating table queries_channel 203s Creating table queries_book 203s Creating table queries_chapter 203s Creating table queries_paragraph 203s Creating table queries_page 203s Creating table queries_myobject 203s Creating table queries_order 203s Creating table queries_orderitem 203s Creating table queries_baseuser 203s Creating table queries_task 203s Creating table queries_staff 203s Creating table queries_staffuser 203s Creating table queries_ticket21203parent 203s Creating table queries_ticket21203child 203s Creating table queries_person 203s Creating table queries_company 203s Creating table queries_employment 203s Creating table queries_school 203s Creating table queries_student 203s Creating table queries_classroom 203s Creating table queries_teacher 203s Creating table queries_ticket23605aparent 203s Creating table queries_ticket23605a 203s Creating table queries_ticket23605b 203s Creating table queries_ticket23605c 203s Creating table Individual 203s Creating table RelatedIndividual 203s Creating table queries_customdbcolumn 203s Creating table queries_returningmodel 203s Creating table queries_nonintegerpkreturningmodel 203s Creating table queries_jsonfieldnullable 203s Creating table generic_relations_taggeditem 203s Creating table generic_relations_valuabletaggeditem 203s Creating table generic_relations_abstractcomparison 203s Creating table generic_relations_comparison 203s Creating table generic_relations_animal 203s Creating table generic_relations_vegetable 203s Creating table generic_relations_carrot 203s Creating table generic_relations_mineral 203s Creating table generic_relations_gecko 203s Creating table generic_relations_rock 203s Creating table generic_relations_valuablerock 203s Creating table generic_relations_manualpk 203s Creating table generic_relations_forproxymodelmodel 203s Creating table generic_relations_forconcretemodelmodel 203s Creating table generic_relations_concreterelatedmodel 203s Creating table generic_relations_allowsnullgfk 203s Creating table m2m_multiple_category 203s Creating table m2m_multiple_article 203s Creating table model_inheritance_worker 203s Creating table model_inheritance_student 203s Creating table model_inheritance_post 203s Creating table model_inheritance_comment 203s Creating table model_inheritance_link 203s Creating table model_inheritance_chef 203s Creating table model_inheritance_place 203s Creating table my_restaurant 203s Creating table model_inheritance_italianrestaurant 203s Creating table model_inheritance_supplier 203s Creating table model_inheritance_customsupplier 203s Creating table model_inheritance_parkinglot 203s Creating table model_inheritance_title 203s Creating table model_inheritance_mixinmodel 203s Creating table model_inheritance_base 203s Creating table model_inheritance_subbase 203s Creating table model_inheritance_grandparent 203s Creating table model_inheritance_parent 203s Creating table model_inheritance_child 203s Creating table model_inheritance_grandchild 203s Creating table basic_article 203s Creating table basic_featuredarticle 203s Creating table basic_selfref 203s Creating table basic_primarykeywithdefault 203s Creating table basic_childprimarykeywithdefault 203s Creating table apps_totallynormal 203s Creating table reverse_lookup_user 203s Creating table reverse_lookup_poll 203s Creating table reverse_lookup_choice 203s Creating table file_uploads_filemodel 203s Creating table admin_checks_album 203s Creating table admin_checks_song 203s Creating table admin_checks_twoalbumfkandane 203s Creating table admin_checks_author 203s Creating table admin_checks_book 203s Creating table admin_checks_authorsbooks 203s Creating table admin_checks_state 203s Creating table admin_checks_city 203s Creating table admin_checks_influence 203s Creating table mutually_referential_parent 203s Creating table mutually_referential_child 203s Creating table model_package_site 203s Creating table model_package_article 203s Creating table model_package_publication 203s Creating table model_package_advertisement 203s Creating table a01 203s Creating table b01 203s Creating table c01 203s Creating table unmanaged_models_proxy1 203s Creating table unmanaged_models_proxy2 203s Creating table unmanaged_models_managed1 203s Creating table custom_methods_article 203s Creating table get_or_create_person 203s Creating table get_or_create_defaultperson 203s Creating table get_or_create_manualprimarykeytest 203s Creating table get_or_create_profile 203s Creating table get_or_create_tag 203s Creating table get_or_create_thing 203s Creating table get_or_create_publisher 203s Creating table get_or_create_author 203s Creating table get_or_create_journalist 203s Creating table get_or_create_book 203s Creating table select_related_regress_building 203s Creating table select_related_regress_device 203s Creating table select_related_regress_port 203s Creating table select_related_regress_connection 203s Creating table select_related_regress_tuser 203s Creating table select_related_regress_person 203s Creating table select_related_regress_organizer 203s Creating table select_related_regress_student 203s Creating table select_related_regress_class 203s Creating table select_related_regress_enrollment 203s Creating table select_related_regress_country 203s Creating table select_related_regress_state 203s Creating table select_related_regress_clientstatus 203s Creating table select_related_regress_client 203s Creating table select_related_regress_specialclient 203s Creating table select_related_regress_parent 203s Creating table select_related_regress_child 203s Creating table select_related_regress_item 203s Creating table select_related_regress_fowl 203s Creating table select_related_regress_hen 203s Creating table select_related_regress_chick 203s Creating table select_related_regress_a 203s Creating table select_related_regress_b 203s Creating table select_related_regress_c 203s Creating table file_storage_storage 203s Creating table servers_person 203s Creating table serializers_categorymetadata 203s Creating table serializers_category 203s Creating table serializers_author 203s Creating table serializers_topic 203s Creating table serializers_article 203s Creating table serializers_authorprofile 203s Creating table serializers_actor 203s Creating table serializers_movie 203s Creating table serializers_score 203s Creating table serializers_player 203s Creating table serializers_basemodel 203s Creating table serializers_complexmodel 203s Creating table serializers_binarydata 203s Creating table serializers_booleandata 203s Creating table serializers_chardata 203s Creating table serializers_datedata 203s Creating table serializers_datetimedata 203s Creating table serializers_decimaldata 203s Creating table serializers_emaildata 203s Creating table serializers_filedata 203s Creating table serializers_filepathdata 203s Creating table serializers_floatdata 203s Creating table serializers_integerdata 203s Creating table serializers_bigintegerdata 203s Creating table serializers_genericipaddressdata 203s Creating table serializers_positivebigintegerdata 203s Creating table serializers_positiveintegerdata 203s Creating table serializers_positivesmallintegerdata 203s Creating table serializers_slugdata 203s Creating table serializers_smalldata 203s Creating table serializers_textdata 203s Creating table serializers_timedata 203s Creating table serializers_tag 203s Creating table serializers_genericdata 203s Creating table serializers_anchor 203s Creating table serializers_uniqueanchor 203s Creating table serializers_fkdata 203s Creating table serializers_m2mdata 203s Creating table serializers_o2odata 203s Creating table serializers_fkselfdata 203s Creating table serializers_m2mselfdata 203s Creating table serializers_fkdatatofield 203s Creating table serializers_fkdatatoo2o 203s Creating table serializers_m2mintermediatedata 203s Creating table serializers_intermediate 203s Creating table serializers_booleanpkdata 203s Creating table serializers_charpkdata 203s Creating table serializers_datepkdata 203s Creating table serializers_datetimepkdata 203s Creating table serializers_decimalpkdata 203s Creating table serializers_emailpkdata 203s Creating table serializers_filepathpkdata 203s Creating table serializers_floatpkdata 203s Creating table serializers_integerpkdata 203s Creating table serializers_genericipaddresspkdata 203s Creating table serializers_positiveintegerpkdata 203s Creating table serializers_positivesmallintegerpkdata 203s Creating table serializers_slugpkdata 203s Creating table serializers_smallpkdata 203s Creating table serializers_uuiddata 203s Creating table serializers_uuiddefaultdata 203s Creating table serializers_fktouuid 203s Creating table serializers_autonowdatetimedata 203s Creating table serializers_modifyingsavedata 203s Creating table serializers_inheritabstractmodel 203s Creating table serializers_inheritbasemodel 203s Creating table serializers_explicitinheritbasemodel 203s Creating table serializers_lengthmodel 203s Creating table serializers_parent 203s Creating table serializers_child 203s Creating table serializers_naturalkeyanchor 203s Creating table serializers_fkdatanaturalkey 203s Creating table serializers_naturalkeything 203s Creating table serializers_naturalpkwithdefault 203s Creating table serializers_fkaspknonaturalkey 203s Creating table backends_square 203s Creating table backends_person 203s Creating table backends_schoolclass 203s Creating table backends_verylongmodelnamezzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 203s Creating table backends_tag 203s Creating table CaseSensitive_Post 203s Creating table backends_reporter 203s Creating table backends_article 203s Creating table backends_item 203s Creating table backends_object 203s Creating table backends_objectreference 203s Creating table backends_objectselfreference 203s Creating table backends_circulara 203s Creating table backends_circularb 203s Creating table backends_rawdata 203s Creating table backends_author 203s Creating table backends_book 203s Creating table order 203s Creating table forms_tests_boundarymodel 203s Creating table forms_tests_defaults 203s Creating table forms_tests_choicemodel 203s Creating table forms_tests_choiceoptionmodel 203s Creating table forms_tests_choicefieldmodel 203s Creating table forms_tests_optionalmultichoicemodel 203s Creating table forms_tests_filemodel 203s Creating table forms_tests_article 203s Creating table order_with_respect_to_question 203s Creating table order_with_respect_to_answer 203s Creating table order_with_respect_to_post 203s Creating table order_with_respect_to_entity 203s Creating table order_with_respect_to_dimension 203s Creating table order_with_respect_to_component 203s Creating table m2m_through_person 203s Creating table m2m_through_personchild 203s Creating table m2m_through_group 203s Creating table m2m_through_membership 203s Creating table test_table 203s Creating table m2m_through_testnodefaultsornulls 203s Creating table m2m_through_personselfrefm2m 203s Creating table m2m_through_friendship 203s Creating table m2m_through_symmetricalfriendship 203s Creating table m2m_through_event 203s Creating table m2m_through_invitation 203s Creating table m2m_through_employee 203s Creating table m2m_through_relationship 203s Creating table m2m_through_ingredient 203s Creating table m2m_through_recipe 203s Creating table m2m_through_recipeingredient 203s Creating table get_earliest_or_latest_article 203s Creating table get_earliest_or_latest_person 203s Creating table get_earliest_or_latest_comment 203s Creating table get_earliest_or_latest_indexerrorarticle 203s Creating table swappable_models_article 203s Creating table swappable_models_alternatearticle 203s Creating table my_author_table 203s Creating table custom_columns_article 203s Creating table generic_views_artist 203s Creating table generic_views_author 203s Creating table generic_views_book 203s Creating table generic_views_page 203s Creating table generic_views_booksigning 203s Creating table transaction_hooks_thing 203s Creating table many_to_one_reporter 203s Creating table many_to_one_article 203s Creating table many_to_one_country 203s Creating table many_to_one_city 203s Creating table many_to_one_district 203s Creating table many_to_one_first 203s Creating table many_to_one_second 203s Creating table many_to_one_third 203s Creating table many_to_one_parent 203s Creating table many_to_one_parentstringprimarykey 203s Creating table many_to_one_child 203s Creating table many_to_one_childnullableparent 203s Creating table many_to_one_childstringprimarykeyparent 203s Creating table many_to_one_tofieldchild 203s Creating table many_to_one_category 203s Creating table many_to_one_record 203s Creating table many_to_one_relation 203s Creating table many_to_one_school 203s Creating table many_to_one_student 203s Creating table messages_tests_someobject 203s Creating table defer_secondary 203s Creating table defer_primary 203s Creating table defer_child 203s Creating table defer_bigchild 203s Creating table defer_shadowparent 203s Creating table defer_shadowchild 203s Creating table custom_lookups_author 203s Creating table custom_lookups_article 203s Creating table custom_lookups_mysqlunixtimestamp 203s Creating table custom_lookups_custommodel 203s Creating table base_mymodel 203s Creating table introspection_city 203s Creating table introspection_country 203s Creating table introspection_district 203s Creating table introspection_reporter 203s Creating table introspection_article 203s Creating table introspection_comment 203s Creating table introspection_checkconstraintmodel 203s Creating table introspection_uniqueconstraintconditionmodel 203s Creating table signals_person 203s Creating table signals_car 203s Creating table signals_author 203s Creating table signals_book 203s Creating table signals_page 203s Creating table one_to_one_place 203s Creating table one_to_one_restaurant 203s Creating table one_to_one_bar 203s Creating table one_to_one_undergroundbar 203s Creating table one_to_one_waiter 203s Creating table one_to_one_favorites 203s Creating table one_to_one_manualprimarykey 203s Creating table one_to_one_relatedmodel 203s Creating table one_to_one_multimodel 203s Creating table one_to_one_target 203s Creating table one_to_one_pointer 203s Creating table one_to_one_pointer2 203s Creating table one_to_one_hiddenpointer 203s Creating table one_to_one_tofieldpointer 203s Creating table one_to_one_school 203s Creating table one_to_one_director 203s Creating table many_to_many_publication 203s Creating table many_to_many_tag 203s Creating table many_to_many_article 203s Creating table many_to_many_user 203s Creating table many_to_many_userarticle 203s Creating table many_to_many_inheritedarticlea 203s Creating table many_to_many_inheritedarticleb 203s Creating table m2m_through_regress_membership 203s Creating table m2m_through_regress_usermembership 203s Creating table m2m_through_regress_person 203s Creating table m2m_through_regress_group 203s Creating table m2m_through_regress_car 203s Creating table m2m_through_regress_driver 203s Creating table m2m_through_regress_cardriver 203s Creating table m2m_through_regress_event 203s Creating table m2m_through_regress_competitor 203s Creating table m2m_through_regress_individualcompetitor 203s Creating table m2m_through_regress_competingteam 203s Creating table foreign_object_article 203s Creating table foreign_object_newsarticle 203s Creating table foreign_object_articletranslation 203s Creating table foreign_object_articletag 203s Creating table foreign_object_articleidea 203s Creating table foreign_object_address 203s Creating table foreign_object_customer 203s Creating table foreign_object_contact 203s Creating table foreign_object_slugpage 203s Creating table foreign_object_country 203s Creating table foreign_object_person 203s Creating table foreign_object_group 203s Creating table foreign_object_membership 203s Creating table foreign_object_friendship 203s Creating table select_for_update_entity 203s Creating table select_for_update_country 203s Creating table select_for_update_eucountry 203s Creating table select_for_update_city 203s Creating table select_for_update_eucity 203s Creating table select_for_update_citycountryproxy 203s Creating table select_for_update_person 203s Creating table select_for_update_personprofile 203s Creating table null_fk_ordering_author 203s Creating table null_fk_ordering_article 203s Creating table null_fk_ordering_systeminfo 203s Creating table null_fk_ordering_forum 203s Creating table null_fk_ordering_post 203s Creating table null_fk_ordering_comment 203s Creating table prefetch_related_author 203s Creating table prefetch_related_authorwithage 203s Creating table prefetch_related_favoriteauthors 203s Creating table prefetch_related_authoraddress 203s Creating table prefetch_related_book 203s Creating table prefetch_related_bookwithyear 203s Creating table prefetch_related_bio 203s Creating table prefetch_related_reader 203s Creating table prefetch_related_bookreview 203s Creating table prefetch_related_qualification 203s Creating table prefetch_related_teacher 203s Creating table prefetch_related_department 203s Creating table prefetch_related_taggeditem 203s Creating table prefetch_related_article 203s Creating table prefetch_related_bookmark 203s Creating table prefetch_related_comment 203s Creating table prefetch_related_house 203s Creating table prefetch_related_room 203s Creating table prefetch_related_person 203s Creating table prefetch_related_employee 203s Creating table prefetch_related_lessonentry 203s Creating table prefetch_related_wordentry 203s Creating table prefetch_related_author2 203s Creating table prefetch_related_pet 203s Creating table prefetch_related_flea 203s Creating table expressions_manager 203s Creating table expressions_employee 203s Creating table expressions_remoteemployee 203s Creating table expressions_company 203s Creating table expressions_number 203s Creating table expressions_ExPeRiMeNt 203s Creating table expressions_result 203s Creating table expressions_time 203s Creating table expressions_simulationrun 203s Creating table expressions_uuidpk 203s Creating table expressions_uuid 203s Creating table expressions_jsonfieldmodel 203s Creating table pagination_article 203s Creating table select 203s Creating table annotations_author 203s Creating table annotations_publisher 203s Creating table annotations_book 203s Creating table annotations_store 203s Creating table annotations_departmentstore 203s Creating table annotations_employee 203s Creating table annotations_company 203s Creating table annotations_ticket 203s Creating table ordering_author 203s Creating table ordering_article 203s Creating table ordering_childarticle 203s Creating table ordering_reference 203s Creating table ordering_orderedbyexpression 203s Creating table ordering_orderedbyexpressionchild 203s Creating table ordering_orderedbyexpressiongrandchild 203s Creating table datetimes_article 203s Creating table datetimes_comment 203s Creating table datetimes_category 203s Creating table m2m_regress_selfrefer 203s Creating table m2m_regress_tag 203s Creating table m2m_regress_tagcollection 203s Creating table m2m_regress_entry 203s Creating table m2m_regress_selfreferchild 203s Creating table m2m_regress_selfreferchildsibling 203s Creating table m2m_regress_line 203s Creating table m2m_regress_worksheet 203s Creating table m2m_regress_user 203s Creating table m2m_regress_regressionmodelsplit 203s Creating table m2m_regress_post 203s Creating table expressions_window_classification 203s Creating table expressions_window_employee 203s Creating table expressions_window_pastemployeedepartment 203s Creating table expressions_window_detail 203s Creating table fixtures_regress_animal 203s Creating table Fixtures_regress_plant 203s Creating table fixtures_regress_stuff 203s Creating table fixtures_regress_absolute 203s Creating table fixtures_regress_parent 203s Creating table fixtures_regress_child 203s Creating table fixtures_regress_channel 203s Creating table fixtures_regress_article 203s Creating table fixtures_regress_specialarticle 203s Creating table fixtures_regress_feature 203s Creating table fixtures_regress_widget 203s Creating table fixtures_regress_store 203s Creating table fixtures_regress_person 203s Creating table fixtures_regress_book 203s Creating table fixtures_regress_naturalkeywithfkdependency 203s Creating table fixtures_regress_nkchild 203s Creating table fixtures_regress_reftonkchild 203s Creating table fixtures_regress_circle1 203s Creating table fixtures_regress_circle2 203s Creating table fixtures_regress_circle3 203s Creating table fixtures_regress_circle4 203s Creating table fixtures_regress_circle5 203s Creating table fixtures_regress_circle6 203s Creating table fixtures_regress_externaldependency 203s Creating table fixtures_regress_thingy 203s Creating table fixtures_regress_m2mtoself 203s Creating table fixtures_regress_m2msimplea 203s Creating table fixtures_regress_m2msimpleb 203s Creating table fixtures_regress_m2msimplecirculara 203s Creating table fixtures_regress_m2msimplecircularb 203s Creating table fixtures_regress_m2mcomplexa 203s Creating table fixtures_regress_m2mcomplexb 203s Creating table fixtures_regress_m2mthroughab 203s Creating table fixtures_regress_m2mcomplexcircular1a 203s Creating table fixtures_regress_m2mcomplexcircular1b 203s Creating table fixtures_regress_m2mcomplexcircular1c 203s Creating table fixtures_regress_m2mcircular1throughab 203s Creating table fixtures_regress_m2mcircular1throughbc 203s Creating table fixtures_regress_m2mcircular1throughca 203s Creating table fixtures_regress_m2mcomplexcircular2a 203s Creating table fixtures_regress_m2mcomplexcircular2b 203s Creating table fixtures_regress_m2mcircular2throughab 203s Creating table raw_query_author 203s Creating table raw_query_book 203s Creating table raw_query_bookfkaspk 203s Creating table raw_query_coffee 203s Creating table raw_query_mixedcaseidcolumn 203s Creating table raw_query_reviewer 203s Creating table raw_query_friendlyauthor 203s Creating table fixtures_model_package_article 203s Creating table constraints_product 203s Creating table constraints_uniqueconstraintproduct 203s Creating table constraints_childuniqueconstraintproduct 203s Creating table constraints_uniqueconstraintconditionproduct 203s Creating table constraints_childmodel 203s Creating table constraints_jsonfieldmodel 203s Creating table string_lookup_foo 203s Creating table string_lookup_bar 203s Creating table string_lookup_whiz 203s Creating table string_lookup_child 203s Creating table string_lookup_base 203s Creating table string_lookup_article 203s Creating table fixtures_category 203s Creating table fixtures_article 203s Creating table fixtures_blog 203s Creating table fixtures_tag 203s Creating table fixtures_person 203s Creating table fixtures_spy 203s Creating table fixtures_visa 203s Creating table fixtures_book 203s Creating table fixtures_primarykeyuuidmodel 203s Creating table fixtures_naturalkeything 203s Creating table fixtures_circulara 203s Creating table fixtures_circularb 203s Creating table custom_managers_person 203s Creating table custom_managers_funperson 203s Creating table custom_managers_book 203s Creating table custom_managers_car 203s Creating table custom_managers_relatedmodel 203s Creating table custom_managers_restrictedmodel 203s Creating table custom_managers_onetoonerestrictedmodel 203s Creating table custom_managers_personfromabstract 203s Creating table auth_tests_customuser 203s Creating table auth_tests_customuserwithoutisactivefield 203s Creating table auth_tests_extensionuser 203s Creating table auth_tests_custompermissionsuser 203s Creating table auth_tests_customusernonuniqueusername 203s Creating table auth_tests_isactivetestuser1 203s Creating table auth_tests_minimaluser 203s Creating table auth_tests_nopassworduser 203s Creating table auth_tests_concrete 203s Creating table auth_tests_uuiduser 203s Creating table auth_tests_customemailfield 203s Creating table auth_tests_email 203s Creating table auth_tests_customuserwithfk 203s Creating table auth_tests_integerusernameuser 203s Creating table auth_tests_userwithdisabledlastloginfield 203s Creating table auth_tests_organization 203s Creating table auth_tests_customuserwithm2m 203s Creating table auth_tests_customuserwithm2mthrough 203s Creating table auth_tests_membership 203s Creating table auth_tests_customuserwithuniqueconstraint 203s Creating table dates_article 203s Creating table dates_comment 203s Creating table dates_category 203s Creating table context_processors_debugobject 203s Creating table multiple_database_review 203s Creating table multiple_database_person 203s Creating table multiple_database_book 203s Creating table multiple_database_pet 203s Creating table multiple_database_userprofile 203s Creating table sitemaps_tests_testmodel 203s Creating table sitemaps_tests_i18ntestmodel 203s Creating table extra_regress_revisionablemodel 203s Creating table extra_regress_order 203s Creating table extra_regress_testobject 203s Creating table distinct_on_fields_tag 203s Creating table distinct_on_fields_celebrity 203s Creating table distinct_on_fields_fan 203s Creating table distinct_on_fields_staff 203s Creating table distinct_on_fields_stafftag 203s Creating table get_object_or_404_author 203s Creating table get_object_or_404_article 203s Creating table m2m_intermediary_reporter 203s Creating table m2m_intermediary_article 203s Creating table m2m_intermediary_writer 203s Creating table str_internationalarticle 203s Creating table admin_autodiscover_story 203s Creating table filtered_relation_author 203s Creating table filtered_relation_editor 203s Creating table filtered_relation_book 203s Creating table filtered_relation_borrower 203s Creating table filtered_relation_reservation 203s Creating table filtered_relation_rentalsession 203s Creating table filtered_relation_seller 203s Creating table filtered_relation_currency 203s Creating table filtered_relation_exchangerate 203s Creating table filtered_relation_bookdailysales 203s Creating table or_lookups_article 203s Creating table defer_regress_item 203s Creating table defer_regress_relateditem 203s Creating table defer_regress_child 203s Creating table defer_regress_leaf 203s Creating table defer_regress_resolvethis 203s Creating table defer_regress_simpleitem 203s Creating table defer_regress_feature 203s Creating table defer_regress_specialfeature 203s Creating table defer_regress_onetooneitem 203s Creating table defer_regress_itemandsimpleitem 203s Creating table defer_regress_profile 203s Creating table defer_regress_location 203s Creating table defer_regress_request 203s Creating table defer_regress_base 203s Creating table defer_regress_derived 203s Creating table save_delete_hooks_person 203s Creating table admin_ordering_band 203s Creating table admin_ordering_song 203s Creating table i18n_testmodel 203s Creating table i18n_company 203s Creating table update_datapoint 203s Creating table update_relatedpoint 203s Creating table update_a 203s Creating table update_b 203s Creating table update_c 203s Creating table update_d 203s Creating table update_foo 203s Creating table update_bar 203s Creating table update_uniquenumber 203s Creating table update_uniquenumberchild 203s Creating table select_related_onetoone_user 203s Creating table select_related_onetoone_userprofile 203s Creating table select_related_onetoone_userstatresult 203s Creating table select_related_onetoone_userstat 203s Creating table select_related_onetoone_statdetails 203s Creating table select_related_onetoone_advanceduserstat 203s Creating table select_related_onetoone_image 203s Creating table select_related_onetoone_product 203s Creating table select_related_onetoone_parent1 203s Creating table select_related_onetoone_parent2 203s Creating table select_related_onetoone_child1 203s Creating table select_related_onetoone_child2 203s Creating table select_related_onetoone_child3 203s Creating table select_related_onetoone_child4 203s Creating table select_related_onetoone_linkedlist 203s Creating table nested_foreign_keys_person 203s Creating table nested_foreign_keys_movie 203s Creating table nested_foreign_keys_event 203s Creating table nested_foreign_keys_screening 203s Creating table nested_foreign_keys_screeningnullfk 203s Creating table nested_foreign_keys_package 203s Creating table nested_foreign_keys_packagenullfk 203s Creating table from_db_value_cashmodel 203s Creating table cache_poll 203s Creating table view_tests_author 203s Creating table view_tests_article 203s Creating table view_tests_urlarticle 203s Creating table view_tests_datearticle 203s Creating table inline_formsets_school 203s Creating table inline_formsets_parent 203s Creating table inline_formsets_child 203s Creating table inline_formsets_poet 203s Creating table inline_formsets_poem 203s Creating table known_related_objects_tournament 203s Creating table known_related_objects_organiser 203s Creating table known_related_objects_pool 203s Creating table known_related_objects_poolstyle 203s Creating table aggregation_author 203s Creating table aggregation_publisher 203s Creating table aggregation_book 203s Creating table aggregation_store 203s Creating table admin_registration_person 203s Creating table admin_registration_traveler 203s Creating table admin_registration_place 203s Creating table modeladmin_band 203s Creating table modeladmin_song 203s Creating table modeladmin_concert 203s Creating table modeladmin_validationtestmodel 203s Creating table modeladmin_validationtestinlinemodel 203s Creating table lookup_alarm 203s Creating table lookup_author 203s Creating table lookup_article 203s Creating table lookup_tag 203s Creating table lookup_season 203s Creating table lookup_game 203s Creating table lookup_player 203s Creating table lookup_product 203s Creating table lookup_stock 203s Creating table lookup_freebie 203s Creating table model_options_author 203s Creating table model_options_editor 203s Creating table model_options_book 203s Creating table model_options_bookstore 203s Creating table model_options_editorstore 203s Creating table model_options_scientistref 203s Creating table model_options_articleref 203s Creating table queryset_pickle_group 203s Creating table queryset_pickle_event 203s Creating table queryset_pickle_happening 203s Creating table queryset_pickle_binaryfieldmodel 203s Creating table queryset_pickle_somemodel 203s Creating table queryset_pickle_m2mmodel 203s Creating table queryset_pickle_myevent 203s Creating table queryset_pickle_edition 203s Creating table m2m_and_m2o_user 203s Creating table m2m_and_m2o_issue 203s Creating table m2m_and_m2o_stringreferencemodel 203s Creating table admin_utils_site 203s Creating table admin_utils_article 203s Creating table admin_utils_count 203s Creating table admin_utils_event 203s Creating table admin_utils_location 203s Creating table admin_utils_guest 203s Creating table admin_utils_eventguide 203s Creating table admin_utils_vehicle 203s Creating table admin_utils_car 203s Creating table validation_modeltovalidate 203s Creating table validation_uniquefieldsmodel 203s Creating table validation_custompkmodel 203s Creating table validation_uniquetogethermodel 203s Creating table validation_uniquefordatemodel 203s Creating table validation_custommessagesmodel 203s Creating table validation_author 203s Creating table validation_article 203s Creating table validation_post 203s Creating table validation_flexibledatepost 203s Creating table validation_uniqueerrorsmodel 203s Creating table validation_genericipaddresstestmodel 203s Creating table validation_genericipaddrunpackuniquetest 203s Creating table validation_uniquefuncconstraintmodel 203s Creating table validation_product 203s Creating table validation_childproduct 203s Creating table validation_uniqueconstraintproduct 203s Creating table validation_childuniqueconstraintproduct 203s Creating table validation_uniqueconstraintconditionproduct 203s Creating table check_framework_simplemodel 203s Creating table max_lengths_personwithdefaultmaxlengths 203s Creating table max_lengths_personwithcustommaxlengths 203s Creating table null_fk_systemdetails 203s Creating table null_fk_systeminfo 203s Creating table null_fk_forum 203s Creating table null_fk_post 203s Creating table null_fk_comment 203s Creating table null_fk_item 203s Creating table null_fk_propertyvalue 203s Creating table null_fk_property 203s Creating table model_regress_article 203s Creating table model_regress_movie 203s Creating table model_regress_party 203s Creating table model_regress_event 203s Creating table model_regress_department 203s Creating table model_regress_worker 203s Creating table model_regress_nonautopk 203s Creating table model_regress_model1 203s Creating table model_regress_model2 203s Creating table model_regress_model3 203s Creating table generic_relations_regress_link 203s Creating table generic_relations_regress_place 203s Creating table generic_relations_regress_restaurant 203s Creating table generic_relations_regress_cafe 203s Creating table generic_relations_regress_address 203s Creating table generic_relations_regress_person 203s Creating table generic_relations_regress_charlink 203s Creating table generic_relations_regress_textlink 203s Creating table generic_relations_regress_oddrelation1 203s Creating table generic_relations_regress_oddrelation2 203s Creating table generic_relations_regress_note 203s Creating table generic_relations_regress_contact 203s Creating table generic_relations_regress_organization 203s Creating table generic_relations_regress_company 203s Creating table generic_relations_regress_team 203s Creating table generic_relations_regress_guild 203s Creating table generic_relations_regress_tag 203s Creating table generic_relations_regress_board 203s Creating table generic_relations_regress_haslinkthing 203s Creating table generic_relations_regress_a 203s Creating table generic_relations_regress_b 203s Creating table generic_relations_regress_c 203s Creating table generic_relations_regress_d 203s Creating table generic_relations_regress_node 203s Creating table generic_relations_regress_content 203s Creating table generic_relations_regress_related 203s Creating table update_only_fields_account 203s Creating table update_only_fields_person 203s Creating table update_only_fields_employee 203s Creating table update_only_fields_profile 203s Creating table delete_regress_award 203s Creating table delete_regress_awardnote 203s Creating table delete_regress_person 203s Creating table delete_regress_book 203s Creating table delete_regress_toy 203s Creating table delete_regress_child 203s Creating table delete_regress_playedwith 203s Creating table delete_regress_playedwithnote 203s Creating table delete_regress_contact 203s Creating table delete_regress_email 203s Creating table delete_regress_researcher 203s Creating table delete_regress_food 203s Creating table delete_regress_eaten 203s Creating table delete_regress_policy 203s Creating table delete_regress_version 203s Creating table delete_regress_location 203s Creating table delete_regress_item 203s Creating table delete_regress_file 203s Creating table delete_regress_fooimage 203s Creating table delete_regress_foofile 203s Creating table delete_regress_foophoto 203s Creating table delete_regress_orgunit 203s Creating table delete_regress_login 203s Creating table delete_regress_house 203s Creating table delete_regress_orderedperson 203s Creating table datatypes_donut 203s Creating table datatypes_rumbaba 203s Creating table test_client_regress_customuser 203s Creating table m2m_signals_part 203s Creating table m2m_signals_car 203s Creating table m2m_signals_sportscar 203s Creating table m2m_signals_person 203s Creating table field_defaults_article 203s Creating table admin_views_section 203s Creating table admin_views_article 203s Creating table admin_views_book 203s Creating table admin_views_promo 203s Creating table admin_views_chapter 203s Creating table admin_views_chapterxtra1 203s Creating table admin_views_chapterxtra2 203s Creating table admin_views_rowlevelchangepermissionmodel 203s Creating table admin_views_customarticle 203s Creating table admin_views_modelwithstringprimarykey 203s Creating table admin_views_color 203s Creating table admin_views_thing 203s Creating table admin_views_actor 203s Creating table admin_views_inquisition 203s Creating table admin_views_sketch 203s Creating table admin_views_character 203s Creating table admin_views_stumpjoke 203s Creating table admin_views_fabric 203s Creating table admin_views_person 203s Creating table admin_views_persona 203s Creating table admin_views_account 203s Creating table admin_views_fooaccount 203s Creating table admin_views_baraccount 203s Creating table admin_views_subscriber 203s Creating table admin_views_externalsubscriber 203s Creating table admin_views_oldsubscriber 203s Creating table admin_views_media 203s Creating table admin_views_podcast 203s Creating table admin_views_vodcast 203s Creating table admin_views_parent 203s Creating table admin_views_child 203s Creating table admin_views_pkchild 203s Creating table admin_views_toy 203s Creating table admin_views_emptymodel 203s Creating table admin_views_gallery 203s Creating table admin_views_picture 203s Creating table admin_views_language 203s Creating table admin_views_title 203s Creating table admin_views_titletranslation 203s Creating table admin_views_recommender 203s Creating table admin_views_recommendation 203s Creating table admin_views_collector 203s Creating table admin_views_widget 203s Creating table admin_views_doohickey 203s Creating table admin_views_grommet 203s Creating table admin_views_whatsit 203s Creating table admin_views_doodad 203s Creating table admin_views_fancydoodad 203s Creating table admin_views_category 203s Creating table admin_views_link 203s Creating table admin_views_prepopulatedpost 203s Creating table admin_views_prepopulatedsubpost 203s Creating table admin_views_post 203s Creating table admin_views_gadget 203s Creating table admin_views_villain 203s Creating table admin_views_supervillain 203s Creating table admin_views_funkytag 203s Creating table admin_views_plot 203s Creating table admin_views_plotdetails 203s Creating table admin_views_secrethideout 203s Creating table admin_views_supersecrethideout 203s Creating table admin_views_bookmark 203s Creating table admin_views_cyclicone 203s Creating table admin_views_cyclictwo 203s Creating table admin_views_topping 203s Creating table admin_views_pizza 203s Creating table admin_views_album 203s Creating table admin_views_song 203s Creating table admin_views_employee 203s Creating table admin_views_workhour 203s Creating table admin_views_manager 203s Creating table admin_views_bonus 203s Creating table admin_views_question 203s Creating table admin_views_answer 203s Creating table admin_views_reservation 203s Creating table admin_views_fooddelivery 203s Creating table admin_views_coverletter 203s Creating table admin_views_paper 203s Creating table admin_views_shortmessage 203s Creating table admin_views_telegram 203s Creating table admin_views_story 203s Creating table admin_views_otherstory 203s Creating table admin_views_complexsortedperson 203s Creating table admin_views_pluggablesearchperson 203s Creating table admin_views_prepopulatedpostlargeslug 203s Creating table admin_views_adminorderedfield 203s Creating table admin_views_adminorderedmodelmethod 203s Creating table admin_views_adminorderedadminmethod 203s Creating table admin_views_adminorderedcallable 203s Creating table admin_views_report 203s Creating table admin_views_mainprepopulated 203s Creating table admin_views_relatedprepopulated 203s Creating table admin_views_unorderedobject 203s Creating table admin_views_undeletableobject 203s Creating table admin_views_unchangeableobject 203s Creating table admin_views_usermessenger 203s Creating table admin_views_simple 203s Creating table admin_views_choice 203s Creating table admin_views_parentwithdependentchildren 203s Creating table admin_views_dependentchild 203s Creating table admin_views_filteredmanager 203s Creating table admin_views_emptymodelvisible 203s Creating table admin_views_emptymodelhidden 203s Creating table admin_views_emptymodelmixin 203s Creating table admin_views_state 203s Creating table admin_views_city 203s Creating table admin_views_restaurant 203s Creating table admin_views_worker 203s Creating table admin_views_referencedbyparent 203s Creating table admin_views_parentwithfk 203s Creating table admin_views_childofreferer 203s Creating table admin_views_inlinereferer 203s Creating table admin_views_referencedbyinline 203s Creating table admin_views_inlinereference 203s Creating table admin_views_recipe 203s Creating table admin_views_ingredient 203s Creating table admin_views_recipeingredient 203s Creating table admin_views_notreferenced 203s Creating table admin_views_explicitlyprovidedpk 203s Creating table admin_views_implicitlygeneratedpk 203s Creating table admin_views_referencedbygenrel 203s Creating table admin_views_genrelreference 203s Creating table admin_views_parentwithuuidpk 203s Creating table admin_views_relatedwithuuidpkmodel 203s Creating table admin_views_author 203s Creating table admin_views_authorship 203s Creating table admin_views_readonlyrelatedfield 203s Creating table admin_views_héllo 203s Creating table admin_views_box 203s Creating table admin_views_country 203s Creating table admin_views_traveler 203s Creating table m2o_recursive_category 203s Creating table m2o_recursive_person 203s Running deferred SQL... 203s Running migrations: 203s Applying admin.0001_initial... OK 204s Applying admin.0002_logentry_remove_auto_add... OK 204s Applying admin.0003_logentry_add_action_flag_choices... OK 204s Applying db_functions.0001_setup_extensions... OK 204s Applying db_functions.0002_create_test_models... OK 204s Applying sites.0001_initial... OK 204s Applying flatpages.0001_initial... OK 204s Applying migration_test_data_persistence.0001_initial... OK 204s Applying migration_test_data_persistence.0002_add_book... OK 204s Applying postgres_tests.0001_setup_extensions... OK 205s Applying postgres_tests.0002_create_test_models... OK 205s Applying redirects.0001_initial... OK 205s Applying redirects.0002_alter_redirect_new_path_help_text... OK 205s Applying sites.0002_alter_domain_unique... OK 208s Applying sites_framework.0001_initial... OK 208s Cloning test database for alias 'default' ('file:memorydb_default?mode=memory&cache=shared')... 208s Cloning test database for alias 'default' ('file:memorydb_default?mode=memory&cache=shared')... 208s Creating test database for alias 'other' ('file:memorydb_other?mode=memory&cache=shared')... 209s Operations to perform: 209s Synchronize unmigrated apps: absolute_url_overrides, admin_autodiscover, admin_changelist, admin_checks, admin_custom_urls, admin_default_site, admin_docs, admin_filters, admin_inlines, admin_ordering, admin_registration, admin_scripts, admin_utils, admin_views, admin_widgets, aggregation, aggregation_regress, annotations, app_loading, apps, asgi, async, auth, auth_tests, backends, base, bash_completion, basic, builtin_server, bulk_create, cache, check_framework, conditional_processing, constraints, contenttypes, contenttypes_tests, context_processors, csrf_tests, custom_columns, custom_lookups, custom_managers, custom_methods, custom_migration_operations, custom_pk, datatypes, dates, datetimes, db_typecasts, db_utils, dbshell, decorators, defer, defer_regress, delete, delete_regress, deprecation, dispatch, distinct_on_fields, empty, empty_models, expressions, expressions_case, expressions_window, extra_regress, field_deconstruction, field_defaults, field_subclassing, file_storage, file_uploads, files, filtered_relation, fixtures, fixtures_model_package, fixtures_regress, flatpages_tests, force_insert_update, foreign_object, forms_tests, from_db_value, generic_inline_admin, generic_relations, generic_relations_regress, generic_views, get_earliest_or_latest, get_object_or_404, get_or_create, handlers, httpwrappers, humanize_tests, i18n, indexes, inline_formsets, inspectdb, introspection, invalid_models_tests, known_related_objects, logging_tests, lookup, m2m_and_m2o, m2m_intermediary, m2m_multiple, m2m_recursive, m2m_regress, m2m_signals, m2m_through, m2m_through_regress, m2o_recursive, mail, managers_regress, many_to_many, many_to_one, many_to_one_null, max_lengths, messages, messages_tests, middleware, middleware_exceptions, migrate_signals, migrations, migrations2, model_enums, model_fields, model_forms, model_formsets, model_formsets_regress, model_indexes, model_inheritance, model_inheritance_regress, model_meta, model_options, model_package, model_regress, model_utils, modeladmin, multiple_database, mutually_referential, nested_foreign_keys, no_models, null_fk, null_fk_ordering, null_queries, one_to_one, or_lookups, order_with_respect_to, ordering, pagination, prefetch_related, project_template, properties, proxy_model_inheritance, proxy_models, queries, queryset_pickle, raw_query, redirects_tests, requests_tests, reserved_names, resolve_url, responses, reverse_lookup, save_delete_hooks, schema, select_for_update, select_related, select_related_onetoone, select_related_regress, serializers, servers, sessions, sessions_tests, settings_tests, shell, shortcuts, signals, signed_cookies_tests, signing, sitemaps_tests, sites_tests, staticfiles, staticfiles_tests, str, string_lookup, swappable_models, syndication_tests, template_backends, template_loader, template_tests, test_client, test_client_regress, test_exceptions, test_runner, test_utils, timezones, transaction_hooks, transactions, unmanaged_models, update, update_only_fields, urlpatterns, urlpatterns_reverse, user_commands, utils_tests, validation, validators, version, view_tests, wsgi, xor_lookups 209s Apply all migrations: admin, db_functions, flatpages, migration_test_data_persistence, postgres_tests, redirects, sites, sites_framework 209s Synchronizing apps without migrations: 209s Creating tables... 209s Creating table django_content_type 209s Creating table auth_permission 209s Creating table auth_group 209s Creating table auth_user 209s Creating table django_session 209s Creating table m2m_recursive_person 209s Creating table m2m_recursive_colleague 209s Creating table async_relatedmodel 209s Creating table async_simplemodel 209s Creating table async_manytomanymodel 209s Creating table syndication_tests_entry 209s Creating table syndication_tests_article 209s Creating table inspectdb_people 209s Creating table inspectdb_message 209s Creating table inspectdb_peopledata 209s Creating table inspectdb_peoplemoredata 209s Creating table inspectdb_foreignkeytofield 209s Creating table inspectdb_digitsincolumnname 209s Creating table inspectdb_special.table name 209s Creating table inspectdb_columntypes 209s Creating table inspectdb_jsonfieldcolumntype 209s Creating table inspectdb_charfielddbcollation 209s Creating table inspectdb_textfielddbcollation 209s Creating table inspectdb_uniquetogether 209s Creating table inspectdb_funcuniqueconstraint 209s Creating table indexes_articletranslation 209s Creating table indexes_article 209s Creating table indexes_indexedarticle 209s Creating table indexes_indexedarticle2 209s Creating table utils_tests_category 209s Creating table utils_tests_categoryinfo 209s Creating table migrations_modelwithcustombase 209s Creating table migrations_unmigratedmodel 209s Creating table model_indexes_book 209s Creating table model_indexes_childmodel1 209s Creating table model_indexes_childmodel2 209s Creating table proxy_models_person 209s Creating table proxy_models_statusperson 209s Creating table proxy_models_lowerstatusperson 209s Creating table proxy_models_user 209s Creating table proxy_models_country 209s Creating table proxy_models_state 209s Creating table proxy_models_baseuser 209s Creating table proxy_models_trackeruser 209s Creating table proxy_models_issue 209s Creating table proxy_models_bug 209s Creating table proxy_models_improvement 209s Creating table admin_filters_book 209s Creating table admin_filters_improvedbook 209s Creating table admin_filters_department 209s Creating table admin_filters_employee 209s Creating table admin_filters_taggeditem 209s Creating table admin_filters_bookmark 209s Creating table force_insert_update_counter 209s Creating table force_insert_update_inheritedcounter 209s Creating table force_insert_update_subcounter 209s Creating table force_insert_update_withcustompk 209s Creating table model_meta_relation 209s Creating table model_meta_baseperson 209s Creating table model_meta_person 209s Creating table model_meta_personthroughproxysubclass 209s Creating table model_meta_relating 209s Creating table model_meta_commonancestor 209s Creating table model_meta_firstparent 209s Creating table model_meta_secondparent 209s Creating table model_meta_child 209s Creating table aggregation_regress_author 209s Creating table aggregation_regress_publisher 209s Creating table aggregation_regress_itemtag 209s Creating table aggregation_regress_book 209s Creating table aggregation_regress_store 209s Creating table aggregation_regress_entries 209s Creating table aggregation_regress_clues 209s Creating table aggregation_regress_withmanualpk 209s Creating table aggregation_regress_hardbackbook 209s Creating table aggregation_regress_alfa 209s Creating table aggregation_regress_bravo 209s Creating table aggregation_regress_charlie 209s Creating table aggregation_regress_selfreffk 209s Creating table aggregation_regress_recipe 209s Creating table contenttypes_tests_site 209s Creating table contenttypes_tests_author 209s Creating table contenttypes_tests_article 209s Creating table contenttypes_tests_schemeincludedurl 209s Creating table contenttypes_tests_concretemodel 209s Creating table contenttypes_tests_foowithouturl 209s Creating table contenttypes_tests_foowithurl 209s Creating table contenttypes_tests_foowithbrokenabsoluteurl 209s Creating table contenttypes_tests_question 209s Creating table contenttypes_tests_answer 209s Creating table contenttypes_tests_post 209s Creating table contenttypes_tests_modelwithnullfktosite 209s Creating table contenttypes_tests_modelwithm2mtosite 209s Creating table admin_custom_urls_action 209s Creating table admin_custom_urls_person 209s Creating table admin_custom_urls_car 209s Creating table proxy_model_inheritance_concretemodel 209s Creating table proxy_model_inheritance_concretemodelsubclass 209s Creating table admin_widgets_member 209s Creating table admin_widgets_artist 209s Creating table admin_widgets_band 209s Creating table admin_widgets_unsafelimitchoicesto 209s Creating table admin_widgets_album 209s Creating table admin_widgets_releaseevent 209s Creating table admin_widgets_videostream 209s Creating table admin_widgets_inventory 209s Creating table admin_widgets_event 209s Creating table admin_widgets_car 209s Creating table admin_widgets_cartire 209s Creating table admin_widgets_honeycomb 209s Creating table admin_widgets_bee 209s Creating table admin_widgets_individual 209s Creating table admin_widgets_company 209s Creating table admin_widgets_advisor 209s Creating table admin_widgets_student 209s Creating table admin_widgets_school 209s Creating table admin_widgets_profile 209s Creating table delete_p 209s Creating table delete_r 209s Creating table delete_s 209s Creating table delete_t 209s Creating table delete_u 209s Creating table delete_rchild 209s Creating table delete_rchildchild 209s Creating table delete_a 209s Creating table delete_b 209s Creating table delete_m 209s Creating table delete_mr 209s Creating table delete_mrnull 209s Creating table delete_avatar 209s Creating table delete_user 209s Creating table delete_hiddenuser 209s Creating table delete_hiddenuserprofile 209s Creating table delete_m2mto 209s Creating table delete_m2mfrom 209s Creating table delete_parent 209s Creating table delete_child 209s Creating table delete_base 209s Creating table delete_reltobase 209s Creating table delete_origin 209s Creating table delete_referrer 209s Creating table delete_secondreferrer 209s Creating table delete_deletetop 209s Creating table delete_b1 209s Creating table delete_b2 209s Creating table delete_b3 209s Creating table delete_deletebottom 209s Creating table delete_genericb1 209s Creating table delete_genericb2 209s Creating table delete_genericdeletebottom 209s Creating table delete_genericdeletebottomparent 209s Creating table managers_regress_parent 209s Creating table managers_regress_child1 209s Creating table managers_regress_child2 209s Creating table managers_regress_child3 209s Creating table managers_regress_child4 209s Creating table managers_regress_child5 209s Creating table managers_regress_child6 209s Creating table managers_regress_child7 209s Creating table managers_regress_relatedmodel 209s Creating table managers_regress_relationmodel 209s Creating table custom_pk_employee 209s Creating table custom_pk_business 209s Creating table custom_pk_bar 209s Creating table custom_pk_foo 209s Creating table custom_pk_customautofieldmodel 209s Creating table sessions_tests_customsession 209s Creating table xor_lookups_number 209s Creating table properties_person 209s Creating table model_formsets_regress_user 209s Creating table model_formsets_regress_usersite 209s Creating table model_formsets_regress_userprofile 209s Creating table model_formsets_regress_userpreferences 209s Creating table model_formsets_regress_profilenetwork 209s Creating table model_formsets_regress_place 209s Creating table model_formsets_regress_restaurant 209s Creating table model_formsets_regress_manager 209s Creating table model_formsets_regress_network 209s Creating table model_formsets_regress_host 209s Creating table resolve_url_unimportantthing 209s Creating table timezones_event 209s Creating table timezones_maybeevent 209s Creating table timezones_session 209s Creating table timezones_sessionevent 209s Creating table timezones_timestamp 209s Creating table timezones_alldayevent 209s Creating table timezones_dailyevent 209s Creating table test_runner_person 209s Creating table test_runner_throughbase 209s Creating table test_runner_through 209s Creating table test_runner_b 209s Creating table test_utils_car 209s Creating table test_utils_person 209s Creating table test_utils_possessedcar 209s Creating table empty_empty 209s Creating table model_forms_person 209s Creating table model_forms_category 209s Creating table model_forms_writer 209s Creating table model_forms_article 209s Creating table model_forms_improvedarticle 209s Creating table model_forms_improvedarticlewithparentlink 209s Creating table model_forms_betterwriter 209s Creating table model_forms_publication 209s Creating table model_forms_publicationdefaults 209s Creating table model_forms_author 209s Creating table model_forms_author1 209s Creating table model_forms_writerprofile 209s Creating table model_forms_document 209s Creating table model_forms_textfile 209s Creating table model_forms_customff 209s Creating table model_forms_filepathmodel 209s Creating table model_forms_imagefile 209s Creating table model_forms_optionalimagefile 209s Creating table model_forms_noextensionimagefile 209s Creating table model_forms_homepage 209s Creating table model_forms_product 209s Creating table model_forms_price 209s Creating table model_forms_triple 209s Creating table model_forms_articlestatus 209s Creating table model_forms_inventory 209s Creating table model_forms_book 209s Creating table model_forms_derivedbook 209s Creating table model_forms_explicitpk 209s Creating table model_forms_post 209s Creating table model_forms_datetimepost 209s Creating table model_forms_derivedpost 209s Creating table model_forms_bigint 209s Creating table model_forms_customfieldforexclusionmodel 209s Creating table model_forms_flexibledatepost 209s Creating table model_forms_colour 209s Creating table model_forms_colourfulitem 209s Creating table model_forms_customerrormessage 209s Creating table model_forms_character 209s Creating table model_forms_stumpjoke 209s Creating table model_forms_student 209s Creating table model_forms_photo 209s Creating table model_forms_uuidpk 209s Creating table model_forms_strictassignmentfieldspecific 209s Creating table model_forms_strictassignmentall 209s Creating table model_forms_award 209s Creating table model_forms_nullableuniquecharfieldmodel 209s Creating table model_forms_number 209s Creating table model_forms_numberstodice 209s Creating table model_forms_dice 209s Creating table expressions_case_casetestmodel 209s Creating table expressions_case_o2ocasetestmodel 209s Creating table expressions_case_fkcasetestmodel 209s Creating table expressions_case_client 209s Creating table admin_changelist_event 209s Creating table admin_changelist_parent 209s Creating table admin_changelist_child 209s Creating table admin_changelist_genre 209s Creating table admin_changelist_band 209s Creating table admin_changelist_musician 209s Creating table admin_changelist_group 209s Creating table admin_changelist_concert 209s Creating table admin_changelist_membership 209s Creating table admin_changelist_quartet 209s Creating table admin_changelist_chordsmusician 209s Creating table admin_changelist_chordsband 209s Creating table admin_changelist_invitation 209s Creating table admin_changelist_swallow 209s Creating table admin_changelist_swallowonetoone 209s Creating table admin_changelist_unorderedobject 209s Creating table admin_changelist_orderedobject 209s Creating table admin_changelist_customiduser 209s Creating table admin_changelist_charpk 209s Creating table many_to_one_null_reporter 209s Creating table many_to_one_null_article 209s Creating table many_to_one_null_car 209s Creating table many_to_one_null_driver 209s Creating table model_inheritance_regress_place 209s Creating table model_inheritance_regress_restaurant 209s Creating table model_inheritance_regress_italianrestaurant 209s Creating table model_inheritance_regress_parkinglot 209s Creating table model_inheritance_regress_parkinglot3 209s Creating table model_inheritance_regress_parkinglot4a 209s Creating table model_inheritance_regress_parkinglot4b 209s Creating table model_inheritance_regress_supplier 209s Creating table model_inheritance_regress_wholesaler 209s Creating table model_inheritance_regress_parent 209s Creating table model_inheritance_regress_child 209s Creating table model_inheritance_regress_selfrefparent 209s Creating table model_inheritance_regress_selfrefchild 209s Creating table model_inheritance_regress_article 209s Creating table model_inheritance_regress_articlewithauthor 209s Creating table model_inheritance_regress_m2mbase 209s Creating table model_inheritance_regress_m2mchild 209s Creating table model_inheritance_regress_qualitycontrol 209s Creating table model_inheritance_regress_basem 209s Creating table model_inheritance_regress_derivedm 209s Creating table model_inheritance_regress_internalcertificationaudit 209s Creating table model_inheritance_regress_person 209s Creating table model_inheritance_regress_birthdayparty 209s Creating table model_inheritance_regress_bachelorparty 209s Creating table model_inheritance_regress_messybachelorparty 209s Creating table model_inheritance_regress_searchablelocation 209s Creating table model_inheritance_regress_busstation 209s Creating table model_inheritance_regress_trainstation 209s Creating table model_inheritance_regress_user 209s Creating table model_inheritance_regress_profile 209s Creating table model_inheritance_regress_politician 209s Creating table model_inheritance_regress_congressman 209s Creating table model_inheritance_regress_senator 209s Creating table transactions_reporter 209s Creating table bulk_create_country 209s Creating table bulk_create_proxymulticountry 209s Creating table bulk_create_restaurant 209s Creating table bulk_create_pizzeria 209s Creating table bulk_create_state 209s Creating table bulk_create_twofields 209s Creating table bulk_create_fieldswithdbcolumns 209s Creating table bulk_create_upsertconflict 209s Creating table bulk_create_nofields 209s Creating table bulk_create_smallautofieldmodel 209s Creating table bulk_create_bigautofieldmodel 209s Creating table bulk_create_nullablefields 209s Creating table bulk_create_relatedmodel 209s Creating table admin_inlines_parent 209s Creating table admin_inlines_teacher 209s Creating table admin_inlines_child 209s Creating table admin_inlines_book 209s Creating table admin_inlines_author 209s Creating table admin_inlines_nonautopkbook 209s Creating table admin_inlines_nonautopkbookchild 209s Creating table admin_inlines_editablepkbook 209s Creating table admin_inlines_holder 209s Creating table admin_inlines_inner 209s Creating table admin_inlines_holder2 209s Creating table admin_inlines_inner2 209s Creating table admin_inlines_holder3 209s Creating table admin_inlines_inner3 209s Creating table admin_inlines_holder4 209s Creating table admin_inlines_inner4stacked 209s Creating table admin_inlines_inner4tabular 209s Creating table admin_inlines_holder5 209s Creating table admin_inlines_inner5stacked 209s Creating table admin_inlines_inner5tabular 209s Creating table admin_inlines_person 209s Creating table admin_inlines_outfititem 209s Creating table admin_inlines_fashionista 209s Creating table admin_inlines_shoppingweakness 209s Creating table admin_inlines_titlecollection 209s Creating table admin_inlines_title 209s Creating table admin_inlines_poll 209s Creating table admin_inlines_question 209s Creating table admin_inlines_novel 209s Creating table admin_inlines_chapter 209s Creating table admin_inlines_footnote 209s Creating table admin_inlines_capofamiglia 209s Creating table admin_inlines_consigliere 209s Creating table admin_inlines_sottocapo 209s Creating table admin_inlines_readonlyinline 209s Creating table admin_inlines_parentmodelwithcustompk 209s Creating table admin_inlines_childmodel1 209s Creating table admin_inlines_childmodel2 209s Creating table admin_inlines_binarytree 209s Creating table admin_inlines_lifeform 209s Creating table admin_inlines_extraterrestrial 209s Creating table admin_inlines_sighting 209s Creating table admin_inlines_someparentmodel 209s Creating table admin_inlines_somechildmodel 209s Creating table admin_inlines_course 209s Creating table admin_inlines_class 209s Creating table admin_inlines_showinlineparent 209s Creating table admin_inlines_showinlinechild 209s Creating table admin_inlines_profilecollection 209s Creating table admin_inlines_profile 209s Creating table admin_inlines_verbosenameprofile 209s Creating table admin_inlines_verbosenamepluralprofile 209s Creating table admin_inlines_bothverbosenameprofile 209s Creating table admin_docs_company 209s Creating table admin_docs_group 209s Creating table admin_docs_family 209s Creating table admin_docs_person 209s Creating table model_fields_foo 209s Creating table model_fields_bar 209s Creating table model_fields_whiz 209s Creating table model_fields_whizdelayed 209s Creating table model_fields_whiziter 209s Creating table model_fields_whiziterempty 209s Creating table model_fields_choiceful 209s Creating table model_fields_bigd 209s Creating table model_fields_floatmodel 209s Creating table model_fields_bigs 209s Creating table model_fields_unicodeslugfield 209s Creating table model_fields_automodel 209s Creating table model_fields_bigautomodel 209s Creating table model_fields_smallautomodel 209s Creating table model_fields_smallintegermodel 209s Creating table model_fields_integermodel 209s Creating table model_fields_bigintegermodel 209s Creating table model_fields_positivebigintegermodel 209s Creating table model_fields_positivesmallintegermodel 209s Creating table model_fields_positiveintegermodel 209s Creating table model_fields_post 209s Creating table model_fields_nullbooleanmodel 209s Creating table model_fields_booleanmodel 209s Creating table model_fields_datetimemodel 209s Creating table model_fields_durationmodel 209s Creating table model_fields_nulldurationmodel 209s Creating table model_fields_primarykeycharmodel 209s Creating table model_fields_fkstobooleans 209s Creating table model_fields_fktochar 209s Creating table model_fields_renamedfield 209s Creating table model_fields_verbosenamefield 209s Creating table model_fields_genericipaddress 209s Creating table model_fields_decimallessthanone 209s Creating table model_fields_fieldclassattributemodel 209s Creating table model_fields_datamodel 209s Creating table model_fields_document 209s Creating table model_fields_person 209s Creating table model_fields_personwithheight 209s Creating table model_fields_personwithheightandwidth 209s Creating table model_fields_persondimensionsfirst 209s Creating table model_fields_persontwoimages 209s Creating table model_fields_jsonmodel 209s Creating table model_fields_nullablejsonmodel 209s Creating table model_fields_relatedjsonmodel 209s Creating table model_fields_allfieldsmodel 209s Creating table model_fields_manytomany 209s Creating table model_fields_uuidmodel 209s Creating table model_fields_nullableuuidmodel 209s Creating table model_fields_primarykeyuuidmodel 209s Creating table model_fields_relatedtouuidmodel 209s Creating table model_fields_uuidchild 209s Creating table model_fields_uuidgrandchild 209s Creating table generic_inline_admin_episode 209s Creating table generic_inline_admin_media 209s Creating table generic_inline_admin_category 209s Creating table generic_inline_admin_phonenumber 209s Creating table generic_inline_admin_contact 209s Creating table generic_inline_admin_episodepermanent 209s Creating table model_formsets_author 209s Creating table model_formsets_betterauthor 209s Creating table model_formsets_book 209s Creating table model_formsets_bookwithcustompk 209s Creating table model_formsets_editor 209s Creating table model_formsets_bookwithoptionalalteditor 209s Creating table model_formsets_alternatebook 209s Creating table model_formsets_authormeeting 209s Creating table model_formsets_customprimarykey 209s Creating table model_formsets_place 209s Creating table model_formsets_owner 209s Creating table model_formsets_location 209s Creating table model_formsets_ownerprofile 209s Creating table model_formsets_restaurant 209s Creating table model_formsets_product 209s Creating table model_formsets_price 209s Creating table model_formsets_mexicanrestaurant 209s Creating table model_formsets_classymexicanrestaurant 209s Creating table model_formsets_repository 209s Creating table model_formsets_revision 209s Creating table model_formsets_person 209s Creating table model_formsets_membership 209s Creating table model_formsets_team 209s Creating table model_formsets_player 209s Creating table model_formsets_poet 209s Creating table model_formsets_poem 209s Creating table model_formsets_post 209s Creating table model_formsets_uuidpkparent 209s Creating table model_formsets_uuidpkchild 209s Creating table model_formsets_childwitheditablepk 209s Creating table model_formsets_autopkchildofuuidpkparent 209s Creating table model_formsets_autopkparent 209s Creating table model_formsets_uuidpkchildofautopkparent 209s Creating table model_formsets_parentwithuuidalternatekey 209s Creating table model_formsets_childrelatedviaak 209s Creating table null_queries_poll 209s Creating table null_queries_choice 209s Creating table null_queries_outera 209s Creating table null_queries_outerb 209s Creating table null_queries_inner 209s Creating table select_related_domain 209s Creating table select_related_kingdom 209s Creating table select_related_phylum 209s Creating table select_related_klass 209s Creating table select_related_order 209s Creating table select_related_family 209s Creating table select_related_genus 209s Creating table select_related_species 209s Creating table select_related_hybridspecies 209s Creating table select_related_topping 209s Creating table select_related_pizza 209s Creating table select_related_taggeditem 209s Creating table select_related_bookmark 209s Creating table queries_dumbcategory 209s Creating table queries_namedcategory 209s Creating table queries_tag 209s Creating table queries_note 209s Creating table queries_annotation 209s Creating table queries_datetimepk 209s Creating table queries_extrainfo 209s Creating table queries_author 209s Creating table queries_item 209s Creating table queries_report 209s Creating table queries_reportcomment 209s Creating table queries_ranking 209s Creating table queries_cover 209s Creating table queries_number 209s Creating table queries_valid 209s Creating table queries_x 209s Creating table queries_y 209s Creating table queries_loopx 209s Creating table queries_loopy 209s Creating table queries_loopz 209s Creating table queries_managedmodel 209s Creating table queries_detail 209s Creating table queries_member 209s Creating table queries_child 209s Creating table queries_custompk 209s Creating table queries_related 209s Creating table queries_custompktag 209s Creating table queries_celebrity 209s Creating table queries_tvchef 209s Creating table queries_fan 209s Creating table queries_leafa 209s Creating table queries_leafb 209s Creating table queries_join 209s Creating table queries_reservedname 209s Creating table queries_sharedconnection 209s Creating table queries_pointera 209s Creating table queries_pointerb 209s Creating table queries_singleobject 209s Creating table queries_relatedobject 209s Creating table queries_plaything 209s Creating table queries_article 209s Creating table queries_food 209s Creating table queries_eaten 209s Creating table queries_node 209s Creating table queries_objecta 209s Creating table queries_childobjecta 209s Creating table queries_objectb 209s Creating table queries_objectc 209s Creating table queries_simplecategory 209s Creating table queries_specialcategory 209s Creating table queries_categoryitem 209s Creating table queries_mixedcasefieldcategoryitem 209s Creating table queries_mixedcasedbcolumncategoryitem 209s Creating table queries_onetoonecategory 209s Creating table queries_categoryrelationship 209s Creating table queries_commonmixedcaseforeignkeys 209s Creating table queries_nullablename 209s Creating table queries_modeld 209s Creating table queries_modelc 209s Creating table queries_modelb 209s Creating table queries_modela 209s Creating table queries_job 209s Creating table queries_jobresponsibilities 209s Creating table queries_responsibility 209s Creating table queries_fk1 209s Creating table queries_fk2 209s Creating table queries_fk3 209s Creating table queries_basea 209s Creating table queries_identifier 209s Creating table queries_program 209s Creating table queries_channel 209s Creating table queries_book 209s Creating table queries_chapter 209s Creating table queries_paragraph 209s Creating table queries_page 209s Creating table queries_myobject 209s Creating table queries_order 209s Creating table queries_orderitem 209s Creating table queries_baseuser 209s Creating table queries_task 209s Creating table queries_staff 209s Creating table queries_staffuser 209s Creating table queries_ticket21203parent 209s Creating table queries_ticket21203child 209s Creating table queries_person 209s Creating table queries_company 209s Creating table queries_employment 209s Creating table queries_school 209s Creating table queries_student 209s Creating table queries_classroom 209s Creating table queries_teacher 209s Creating table queries_ticket23605aparent 209s Creating table queries_ticket23605a 209s Creating table queries_ticket23605b 209s Creating table queries_ticket23605c 209s Creating table Individual 209s Creating table RelatedIndividual 209s Creating table queries_customdbcolumn 209s Creating table queries_returningmodel 209s Creating table queries_nonintegerpkreturningmodel 209s Creating table queries_jsonfieldnullable 209s Creating table generic_relations_taggeditem 209s Creating table generic_relations_valuabletaggeditem 209s Creating table generic_relations_abstractcomparison 209s Creating table generic_relations_comparison 209s Creating table generic_relations_animal 209s Creating table generic_relations_vegetable 209s Creating table generic_relations_carrot 209s Creating table generic_relations_mineral 209s Creating table generic_relations_gecko 209s Creating table generic_relations_rock 209s Creating table generic_relations_valuablerock 209s Creating table generic_relations_manualpk 209s Creating table generic_relations_forproxymodelmodel 209s Creating table generic_relations_forconcretemodelmodel 209s Creating table generic_relations_concreterelatedmodel 209s Creating table generic_relations_allowsnullgfk 209s Creating table m2m_multiple_category 209s Creating table m2m_multiple_article 209s Creating table model_inheritance_worker 209s Creating table model_inheritance_student 209s Creating table model_inheritance_post 209s Creating table model_inheritance_comment 209s Creating table model_inheritance_link 209s Creating table model_inheritance_chef 209s Creating table model_inheritance_place 209s Creating table my_restaurant 209s Creating table model_inheritance_italianrestaurant 209s Creating table model_inheritance_supplier 209s Creating table model_inheritance_customsupplier 209s Creating table model_inheritance_parkinglot 209s Creating table model_inheritance_title 209s Creating table model_inheritance_mixinmodel 209s Creating table model_inheritance_base 209s Creating table model_inheritance_subbase 209s Creating table model_inheritance_grandparent 209s Creating table model_inheritance_parent 209s Creating table model_inheritance_child 209s Creating table model_inheritance_grandchild 209s Creating table basic_article 209s Creating table basic_featuredarticle 209s Creating table basic_selfref 209s Creating table basic_primarykeywithdefault 209s Creating table basic_childprimarykeywithdefault 209s Creating table apps_totallynormal 209s Creating table reverse_lookup_user 209s Creating table reverse_lookup_poll 209s Creating table reverse_lookup_choice 209s Creating table file_uploads_filemodel 209s Creating table admin_checks_album 209s Creating table admin_checks_song 209s Creating table admin_checks_twoalbumfkandane 209s Creating table admin_checks_author 209s Creating table admin_checks_book 209s Creating table admin_checks_authorsbooks 209s Creating table admin_checks_state 209s Creating table admin_checks_city 209s Creating table admin_checks_influence 209s Creating table mutually_referential_parent 209s Creating table mutually_referential_child 209s Creating table model_package_site 209s Creating table model_package_article 209s Creating table model_package_publication 209s Creating table model_package_advertisement 209s Creating table a01 209s Creating table b01 209s Creating table c01 209s Creating table unmanaged_models_proxy1 209s Creating table unmanaged_models_proxy2 209s Creating table unmanaged_models_managed1 209s Creating table custom_methods_article 209s Creating table get_or_create_person 209s Creating table get_or_create_defaultperson 209s Creating table get_or_create_manualprimarykeytest 209s Creating table get_or_create_profile 209s Creating table get_or_create_tag 209s Creating table get_or_create_thing 209s Creating table get_or_create_publisher 209s Creating table get_or_create_author 209s Creating table get_or_create_journalist 209s Creating table get_or_create_book 209s Creating table select_related_regress_building 209s Creating table select_related_regress_device 209s Creating table select_related_regress_port 209s Creating table select_related_regress_connection 209s Creating table select_related_regress_tuser 209s Creating table select_related_regress_person 209s Creating table select_related_regress_organizer 209s Creating table select_related_regress_student 209s Creating table select_related_regress_class 209s Creating table select_related_regress_enrollment 209s Creating table select_related_regress_country 209s Creating table select_related_regress_state 209s Creating table select_related_regress_clientstatus 209s Creating table select_related_regress_client 209s Creating table select_related_regress_specialclient 209s Creating table select_related_regress_parent 209s Creating table select_related_regress_child 209s Creating table select_related_regress_item 209s Creating table select_related_regress_fowl 209s Creating table select_related_regress_hen 209s Creating table select_related_regress_chick 209s Creating table select_related_regress_a 209s Creating table select_related_regress_b 209s Creating table select_related_regress_c 209s Creating table file_storage_storage 209s Creating table servers_person 209s Creating table serializers_categorymetadata 209s Creating table serializers_category 209s Creating table serializers_author 209s Creating table serializers_topic 209s Creating table serializers_article 209s Creating table serializers_authorprofile 209s Creating table serializers_actor 209s Creating table serializers_movie 209s Creating table serializers_score 209s Creating table serializers_player 209s Creating table serializers_basemodel 209s Creating table serializers_complexmodel 209s Creating table serializers_binarydata 209s Creating table serializers_booleandata 209s Creating table serializers_chardata 209s Creating table serializers_datedata 209s Creating table serializers_datetimedata 209s Creating table serializers_decimaldata 209s Creating table serializers_emaildata 209s Creating table serializers_filedata 209s Creating table serializers_filepathdata 209s Creating table serializers_floatdata 209s Creating table serializers_integerdata 209s Creating table serializers_bigintegerdata 209s Creating table serializers_genericipaddressdata 209s Creating table serializers_positivebigintegerdata 209s Creating table serializers_positiveintegerdata 209s Creating table serializers_positivesmallintegerdata 209s Creating table serializers_slugdata 209s Creating table serializers_smalldata 209s Creating table serializers_textdata 209s Creating table serializers_timedata 209s Creating table serializers_tag 209s Creating table serializers_genericdata 209s Creating table serializers_anchor 209s Creating table serializers_uniqueanchor 209s Creating table serializers_fkdata 209s Creating table serializers_m2mdata 209s Creating table serializers_o2odata 209s Creating table serializers_fkselfdata 209s Creating table serializers_m2mselfdata 209s Creating table serializers_fkdatatofield 209s Creating table serializers_fkdatatoo2o 209s Creating table serializers_m2mintermediatedata 209s Creating table serializers_intermediate 209s Creating table serializers_booleanpkdata 209s Creating table serializers_charpkdata 209s Creating table serializers_datepkdata 209s Creating table serializers_datetimepkdata 209s Creating table serializers_decimalpkdata 209s Creating table serializers_emailpkdata 209s Creating table serializers_filepathpkdata 209s Creating table serializers_floatpkdata 209s Creating table serializers_integerpkdata 209s Creating table serializers_genericipaddresspkdata 209s Creating table serializers_positiveintegerpkdata 209s Creating table serializers_positivesmallintegerpkdata 209s Creating table serializers_slugpkdata 209s Creating table serializers_smallpkdata 209s Creating table serializers_uuiddata 209s Creating table serializers_uuiddefaultdata 209s Creating table serializers_fktouuid 209s Creating table serializers_autonowdatetimedata 209s Creating table serializers_modifyingsavedata 209s Creating table serializers_inheritabstractmodel 209s Creating table serializers_inheritbasemodel 209s Creating table serializers_explicitinheritbasemodel 209s Creating table serializers_lengthmodel 209s Creating table serializers_parent 209s Creating table serializers_child 209s Creating table serializers_naturalkeyanchor 209s Creating table serializers_fkdatanaturalkey 209s Creating table serializers_naturalkeything 209s Creating table serializers_naturalpkwithdefault 209s Creating table serializers_fkaspknonaturalkey 209s Creating table backends_square 209s Creating table backends_person 209s Creating table backends_schoolclass 209s Creating table backends_verylongmodelnamezzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz 209s Creating table backends_tag 209s Creating table CaseSensitive_Post 209s Creating table backends_reporter 209s Creating table backends_article 209s Creating table backends_item 209s Creating table backends_object 209s Creating table backends_objectreference 209s Creating table backends_objectselfreference 209s Creating table backends_circulara 209s Creating table backends_circularb 209s Creating table backends_rawdata 209s Creating table backends_author 209s Creating table backends_book 209s Creating table order 209s Creating table forms_tests_boundarymodel 209s Creating table forms_tests_defaults 209s Creating table forms_tests_choicemodel 209s Creating table forms_tests_choiceoptionmodel 209s Creating table forms_tests_choicefieldmodel 209s Creating table forms_tests_optionalmultichoicemodel 209s Creating table forms_tests_filemodel 209s Creating table forms_tests_article 209s Creating table order_with_respect_to_question 209s Creating table order_with_respect_to_answer 209s Creating table order_with_respect_to_post 209s Creating table order_with_respect_to_entity 209s Creating table order_with_respect_to_dimension 209s Creating table order_with_respect_to_component 209s Creating table m2m_through_person 209s Creating table m2m_through_personchild 209s Creating table m2m_through_group 209s Creating table m2m_through_membership 209s Creating table test_table 209s Creating table m2m_through_testnodefaultsornulls 209s Creating table m2m_through_personselfrefm2m 209s Creating table m2m_through_friendship 209s Creating table m2m_through_symmetricalfriendship 209s Creating table m2m_through_event 209s Creating table m2m_through_invitation 209s Creating table m2m_through_employee 209s Creating table m2m_through_relationship 209s Creating table m2m_through_ingredient 209s Creating table m2m_through_recipe 209s Creating table m2m_through_recipeingredient 209s Creating table get_earliest_or_latest_article 209s Creating table get_earliest_or_latest_person 209s Creating table get_earliest_or_latest_comment 209s Creating table get_earliest_or_latest_indexerrorarticle 209s Creating table swappable_models_article 209s Creating table swappable_models_alternatearticle 209s Creating table my_author_table 209s Creating table custom_columns_article 209s Creating table generic_views_artist 209s Creating table generic_views_author 209s Creating table generic_views_book 209s Creating table generic_views_page 209s Creating table generic_views_booksigning 209s Creating table transaction_hooks_thing 209s Creating table many_to_one_reporter 209s Creating table many_to_one_article 209s Creating table many_to_one_country 209s Creating table many_to_one_city 209s Creating table many_to_one_district 209s Creating table many_to_one_first 209s Creating table many_to_one_second 209s Creating table many_to_one_third 209s Creating table many_to_one_parent 209s Creating table many_to_one_parentstringprimarykey 209s Creating table many_to_one_child 209s Creating table many_to_one_childnullableparent 209s Creating table many_to_one_childstringprimarykeyparent 209s Creating table many_to_one_tofieldchild 209s Creating table many_to_one_category 209s Creating table many_to_one_record 209s Creating table many_to_one_relation 209s Creating table many_to_one_school 209s Creating table many_to_one_student 209s Creating table messages_tests_someobject 209s Creating table defer_secondary 209s Creating table defer_primary 209s Creating table defer_child 209s Creating table defer_bigchild 209s Creating table defer_shadowparent 209s Creating table defer_shadowchild 209s Creating table custom_lookups_author 209s Creating table custom_lookups_article 209s Creating table custom_lookups_mysqlunixtimestamp 209s Creating table custom_lookups_custommodel 209s Creating table base_mymodel 209s Creating table introspection_city 209s Creating table introspection_country 209s Creating table introspection_district 209s Creating table introspection_reporter 209s Creating table introspection_article 209s Creating table introspection_comment 209s Creating table introspection_checkconstraintmodel 209s Creating table introspection_uniqueconstraintconditionmodel 209s Creating table signals_person 209s Creating table signals_car 209s Creating table signals_author 209s Creating table signals_book 209s Creating table signals_page 209s Creating table one_to_one_place 209s Creating table one_to_one_restaurant 209s Creating table one_to_one_bar 209s Creating table one_to_one_undergroundbar 209s Creating table one_to_one_waiter 209s Creating table one_to_one_favorites 209s Creating table one_to_one_manualprimarykey 209s Creating table one_to_one_relatedmodel 209s Creating table one_to_one_multimodel 209s Creating table one_to_one_target 209s Creating table one_to_one_pointer 209s Creating table one_to_one_pointer2 209s Creating table one_to_one_hiddenpointer 209s Creating table one_to_one_tofieldpointer 209s Creating table one_to_one_school 209s Creating table one_to_one_director 209s Creating table many_to_many_publication 209s Creating table many_to_many_tag 209s Creating table many_to_many_article 209s Creating table many_to_many_user 209s Creating table many_to_many_userarticle 209s Creating table many_to_many_inheritedarticlea 209s Creating table many_to_many_inheritedarticleb 209s Creating table m2m_through_regress_membership 209s Creating table m2m_through_regress_usermembership 209s Creating table m2m_through_regress_person 209s Creating table m2m_through_regress_group 209s Creating table m2m_through_regress_car 209s Creating table m2m_through_regress_driver 209s Creating table m2m_through_regress_cardriver 209s Creating table m2m_through_regress_event 209s Creating table m2m_through_regress_competitor 209s Creating table m2m_through_regress_individualcompetitor 209s Creating table m2m_through_regress_competingteam 209s Creating table foreign_object_article 209s Creating table foreign_object_newsarticle 209s Creating table foreign_object_articletranslation 209s Creating table foreign_object_articletag 209s Creating table foreign_object_articleidea 209s Creating table foreign_object_address 209s Creating table foreign_object_customer 209s Creating table foreign_object_contact 209s Creating table foreign_object_slugpage 209s Creating table foreign_object_country 209s Creating table foreign_object_person 209s Creating table foreign_object_group 209s Creating table foreign_object_membership 209s Creating table foreign_object_friendship 209s Creating table select_for_update_entity 209s Creating table select_for_update_country 209s Creating table select_for_update_eucountry 209s Creating table select_for_update_city 209s Creating table select_for_update_eucity 209s Creating table select_for_update_citycountryproxy 209s Creating table select_for_update_person 209s Creating table select_for_update_personprofile 209s Creating table null_fk_ordering_author 209s Creating table null_fk_ordering_article 209s Creating table null_fk_ordering_systeminfo 209s Creating table null_fk_ordering_forum 209s Creating table null_fk_ordering_post 209s Creating table null_fk_ordering_comment 209s Creating table prefetch_related_author 209s Creating table prefetch_related_authorwithage 209s Creating table prefetch_related_favoriteauthors 209s Creating table prefetch_related_authoraddress 209s Creating table prefetch_related_book 209s Creating table prefetch_related_bookwithyear 209s Creating table prefetch_related_bio 209s Creating table prefetch_related_reader 209s Creating table prefetch_related_bookreview 209s Creating table prefetch_related_qualification 209s Creating table prefetch_related_teacher 209s Creating table prefetch_related_department 209s Creating table prefetch_related_taggeditem 209s Creating table prefetch_related_article 209s Creating table prefetch_related_bookmark 209s Creating table prefetch_related_comment 209s Creating table prefetch_related_house 209s Creating table prefetch_related_room 209s Creating table prefetch_related_person 209s Creating table prefetch_related_employee 209s Creating table prefetch_related_lessonentry 209s Creating table prefetch_related_wordentry 209s Creating table prefetch_related_author2 209s Creating table prefetch_related_pet 209s Creating table prefetch_related_flea 209s Creating table expressions_manager 209s Creating table expressions_employee 209s Creating table expressions_remoteemployee 209s Creating table expressions_company 209s Creating table expressions_number 209s Creating table expressions_ExPeRiMeNt 209s Creating table expressions_result 209s Creating table expressions_time 209s Creating table expressions_simulationrun 209s Creating table expressions_uuidpk 209s Creating table expressions_uuid 209s Creating table expressions_jsonfieldmodel 209s Creating table pagination_article 209s Creating table select 209s Creating table annotations_author 209s Creating table annotations_publisher 209s Creating table annotations_book 209s Creating table annotations_store 209s Creating table annotations_departmentstore 209s Creating table annotations_employee 209s Creating table annotations_company 209s Creating table annotations_ticket 209s Creating table ordering_author 209s Creating table ordering_article 209s Creating table ordering_childarticle 209s Creating table ordering_reference 209s Creating table ordering_orderedbyexpression 209s Creating table ordering_orderedbyexpressionchild 209s Creating table ordering_orderedbyexpressiongrandchild 209s Creating table datetimes_article 209s Creating table datetimes_comment 209s Creating table datetimes_category 209s Creating table m2m_regress_selfrefer 209s Creating table m2m_regress_tag 209s Creating table m2m_regress_tagcollection 209s Creating table m2m_regress_entry 209s Creating table m2m_regress_selfreferchild 209s Creating table m2m_regress_selfreferchildsibling 209s Creating table m2m_regress_line 209s Creating table m2m_regress_worksheet 209s Creating table m2m_regress_user 209s Creating table m2m_regress_regressionmodelsplit 209s Creating table m2m_regress_post 209s Creating table expressions_window_classification 209s Creating table expressions_window_employee 209s Creating table expressions_window_pastemployeedepartment 209s Creating table expressions_window_detail 209s Creating table fixtures_regress_animal 209s Creating table Fixtures_regress_plant 209s Creating table fixtures_regress_stuff 209s Creating table fixtures_regress_absolute 209s Creating table fixtures_regress_parent 209s Creating table fixtures_regress_child 209s Creating table fixtures_regress_channel 209s Creating table fixtures_regress_article 209s Creating table fixtures_regress_specialarticle 209s Creating table fixtures_regress_feature 209s Creating table fixtures_regress_widget 209s Creating table fixtures_regress_store 209s Creating table fixtures_regress_person 209s Creating table fixtures_regress_book 209s Creating table fixtures_regress_naturalkeywithfkdependency 209s Creating table fixtures_regress_nkchild 209s Creating table fixtures_regress_reftonkchild 209s Creating table fixtures_regress_circle1 209s Creating table fixtures_regress_circle2 209s Creating table fixtures_regress_circle3 209s Creating table fixtures_regress_circle4 209s Creating table fixtures_regress_circle5 209s Creating table fixtures_regress_circle6 209s Creating table fixtures_regress_externaldependency 209s Creating table fixtures_regress_thingy 209s Creating table fixtures_regress_m2mtoself 209s Creating table fixtures_regress_m2msimplea 209s Creating table fixtures_regress_m2msimpleb 209s Creating table fixtures_regress_m2msimplecirculara 209s Creating table fixtures_regress_m2msimplecircularb 209s Creating table fixtures_regress_m2mcomplexa 209s Creating table fixtures_regress_m2mcomplexb 209s Creating table fixtures_regress_m2mthroughab 209s Creating table fixtures_regress_m2mcomplexcircular1a 209s Creating table fixtures_regress_m2mcomplexcircular1b 209s Creating table fixtures_regress_m2mcomplexcircular1c 209s Creating table fixtures_regress_m2mcircular1throughab 209s Creating table fixtures_regress_m2mcircular1throughbc 209s Creating table fixtures_regress_m2mcircular1throughca 209s Creating table fixtures_regress_m2mcomplexcircular2a 209s Creating table fixtures_regress_m2mcomplexcircular2b 209s Creating table fixtures_regress_m2mcircular2throughab 209s Creating table raw_query_author 209s Creating table raw_query_book 209s Creating table raw_query_bookfkaspk 209s Creating table raw_query_coffee 209s Creating table raw_query_mixedcaseidcolumn 209s Creating table raw_query_reviewer 209s Creating table raw_query_friendlyauthor 209s Creating table fixtures_model_package_article 209s Creating table constraints_product 209s Creating table constraints_uniqueconstraintproduct 209s Creating table constraints_childuniqueconstraintproduct 209s Creating table constraints_uniqueconstraintconditionproduct 209s Creating table constraints_childmodel 209s Creating table constraints_jsonfieldmodel 209s Creating table string_lookup_foo 209s Creating table string_lookup_bar 209s Creating table string_lookup_whiz 209s Creating table string_lookup_child 209s Creating table string_lookup_base 209s Creating table string_lookup_article 209s Creating table fixtures_category 209s Creating table fixtures_article 209s Creating table fixtures_blog 209s Creating table fixtures_tag 209s Creating table fixtures_person 209s Creating table fixtures_spy 209s Creating table fixtures_visa 209s Creating table fixtures_book 209s Creating table fixtures_primarykeyuuidmodel 209s Creating table fixtures_naturalkeything 209s Creating table fixtures_circulara 209s Creating table fixtures_circularb 209s Creating table custom_managers_person 209s Creating table custom_managers_funperson 209s Creating table custom_managers_book 209s Creating table custom_managers_car 209s Creating table custom_managers_relatedmodel 209s Creating table custom_managers_restrictedmodel 209s Creating table custom_managers_onetoonerestrictedmodel 209s Creating table custom_managers_personfromabstract 209s Creating table auth_tests_customuser 209s Creating table auth_tests_customuserwithoutisactivefield 209s Creating table auth_tests_extensionuser 209s Creating table auth_tests_custompermissionsuser 209s Creating table auth_tests_customusernonuniqueusername 209s Creating table auth_tests_isactivetestuser1 209s Creating table auth_tests_minimaluser 209s Creating table auth_tests_nopassworduser 209s Creating table auth_tests_concrete 209s Creating table auth_tests_uuiduser 209s Creating table auth_tests_customemailfield 209s Creating table auth_tests_email 209s Creating table auth_tests_customuserwithfk 209s Creating table auth_tests_integerusernameuser 209s Creating table auth_tests_userwithdisabledlastloginfield 209s Creating table auth_tests_organization 209s Creating table auth_tests_customuserwithm2m 209s Creating table auth_tests_customuserwithm2mthrough 209s Creating table auth_tests_membership 209s Creating table auth_tests_customuserwithuniqueconstraint 209s Creating table dates_article 209s Creating table dates_comment 209s Creating table dates_category 209s Creating table context_processors_debugobject 209s Creating table multiple_database_review 209s Creating table multiple_database_person 209s Creating table multiple_database_book 209s Creating table multiple_database_pet 209s Creating table multiple_database_userprofile 209s Creating table sitemaps_tests_testmodel 209s Creating table sitemaps_tests_i18ntestmodel 209s Creating table extra_regress_revisionablemodel 209s Creating table extra_regress_order 209s Creating table extra_regress_testobject 209s Creating table distinct_on_fields_tag 209s Creating table distinct_on_fields_celebrity 209s Creating table distinct_on_fields_fan 209s Creating table distinct_on_fields_staff 209s Creating table distinct_on_fields_stafftag 209s Creating table get_object_or_404_author 209s Creating table get_object_or_404_article 209s Creating table m2m_intermediary_reporter 209s Creating table m2m_intermediary_article 209s Creating table m2m_intermediary_writer 209s Creating table str_internationalarticle 209s Creating table admin_autodiscover_story 209s Creating table filtered_relation_author 209s Creating table filtered_relation_editor 209s Creating table filtered_relation_book 209s Creating table filtered_relation_borrower 209s Creating table filtered_relation_reservation 209s Creating table filtered_relation_rentalsession 209s Creating table filtered_relation_seller 209s Creating table filtered_relation_currency 209s Creating table filtered_relation_exchangerate 209s Creating table filtered_relation_bookdailysales 209s Creating table or_lookups_article 209s Creating table defer_regress_item 209s Creating table defer_regress_relateditem 209s Creating table defer_regress_child 209s Creating table defer_regress_leaf 209s Creating table defer_regress_resolvethis 209s Creating table defer_regress_simpleitem 209s Creating table defer_regress_feature 209s Creating table defer_regress_specialfeature 209s Creating table defer_regress_onetooneitem 209s Creating table defer_regress_itemandsimpleitem 209s Creating table defer_regress_profile 209s Creating table defer_regress_location 209s Creating table defer_regress_request 209s Creating table defer_regress_base 209s Creating table defer_regress_derived 209s Creating table save_delete_hooks_person 209s Creating table admin_ordering_band 209s Creating table admin_ordering_song 209s Creating table i18n_testmodel 209s Creating table i18n_company 209s Creating table update_datapoint 209s Creating table update_relatedpoint 209s Creating table update_a 209s Creating table update_b 209s Creating table update_c 209s Creating table update_d 209s Creating table update_foo 209s Creating table update_bar 209s Creating table update_uniquenumber 209s Creating table update_uniquenumberchild 209s Creating table select_related_onetoone_user 209s Creating table select_related_onetoone_userprofile 209s Creating table select_related_onetoone_userstatresult 209s Creating table select_related_onetoone_userstat 209s Creating table select_related_onetoone_statdetails 209s Creating table select_related_onetoone_advanceduserstat 209s Creating table select_related_onetoone_image 209s Creating table select_related_onetoone_product 209s Creating table select_related_onetoone_parent1 209s Creating table select_related_onetoone_parent2 209s Creating table select_related_onetoone_child1 209s Creating table select_related_onetoone_child2 209s Creating table select_related_onetoone_child3 209s Creating table select_related_onetoone_child4 209s Creating table select_related_onetoone_linkedlist 209s Creating table nested_foreign_keys_person 209s Creating table nested_foreign_keys_movie 209s Creating table nested_foreign_keys_event 209s Creating table nested_foreign_keys_screening 209s Creating table nested_foreign_keys_screeningnullfk 209s Creating table nested_foreign_keys_package 209s Creating table nested_foreign_keys_packagenullfk 209s Creating table from_db_value_cashmodel 209s Creating table cache_poll 209s Creating table view_tests_author 209s Creating table view_tests_article 209s Creating table view_tests_urlarticle 209s Creating table view_tests_datearticle 209s Creating table inline_formsets_school 209s Creating table inline_formsets_parent 209s Creating table inline_formsets_child 209s Creating table inline_formsets_poet 209s Creating table inline_formsets_poem 209s Creating table known_related_objects_tournament 209s Creating table known_related_objects_organiser 209s Creating table known_related_objects_pool 209s Creating table known_related_objects_poolstyle 209s Creating table aggregation_author 209s Creating table aggregation_publisher 209s Creating table aggregation_book 209s Creating table aggregation_store 209s Creating table admin_registration_person 209s Creating table admin_registration_traveler 209s Creating table admin_registration_place 209s Creating table modeladmin_band 209s Creating table modeladmin_song 209s Creating table modeladmin_concert 209s Creating table modeladmin_validationtestmodel 209s Creating table modeladmin_validationtestinlinemodel 209s Creating table lookup_alarm 209s Creating table lookup_author 209s Creating table lookup_article 209s Creating table lookup_tag 209s Creating table lookup_season 209s Creating table lookup_game 209s Creating table lookup_player 209s Creating table lookup_product 209s Creating table lookup_stock 209s Creating table lookup_freebie 209s Creating table model_options_author 209s Creating table model_options_editor 209s Creating table model_options_book 209s Creating table model_options_bookstore 209s Creating table model_options_editorstore 209s Creating table model_options_scientistref 209s Creating table model_options_articleref 209s Creating table queryset_pickle_group 209s Creating table queryset_pickle_event 209s Creating table queryset_pickle_happening 209s Creating table queryset_pickle_binaryfieldmodel 209s Creating table queryset_pickle_somemodel 209s Creating table queryset_pickle_m2mmodel 209s Creating table queryset_pickle_myevent 209s Creating table queryset_pickle_edition 209s Creating table m2m_and_m2o_user 209s Creating table m2m_and_m2o_issue 209s Creating table m2m_and_m2o_stringreferencemodel 209s Creating table admin_utils_site 209s Creating table admin_utils_article 209s Creating table admin_utils_count 209s Creating table admin_utils_event 209s Creating table admin_utils_location 209s Creating table admin_utils_guest 209s Creating table admin_utils_eventguide 209s Creating table admin_utils_vehicle 209s Creating table admin_utils_car 209s Creating table validation_modeltovalidate 209s Creating table validation_uniquefieldsmodel 209s Creating table validation_custompkmodel 209s Creating table validation_uniquetogethermodel 209s Creating table validation_uniquefordatemodel 209s Creating table validation_custommessagesmodel 209s Creating table validation_author 209s Creating table validation_article 209s Creating table validation_post 209s Creating table validation_flexibledatepost 209s Creating table validation_uniqueerrorsmodel 209s Creating table validation_genericipaddresstestmodel 209s Creating table validation_genericipaddrunpackuniquetest 209s Creating table validation_uniquefuncconstraintmodel 209s Creating table validation_product 209s Creating table validation_childproduct 209s Creating table validation_uniqueconstraintproduct 209s Creating table validation_childuniqueconstraintproduct 209s Creating table validation_uniqueconstraintconditionproduct 209s Creating table check_framework_simplemodel 209s Creating table max_lengths_personwithdefaultmaxlengths 209s Creating table max_lengths_personwithcustommaxlengths 209s Creating table null_fk_systemdetails 209s Creating table null_fk_systeminfo 209s Creating table null_fk_forum 209s Creating table null_fk_post 209s Creating table null_fk_comment 209s Creating table null_fk_item 209s Creating table null_fk_propertyvalue 209s Creating table null_fk_property 209s Creating table model_regress_article 209s Creating table model_regress_movie 209s Creating table model_regress_party 209s Creating table model_regress_event 209s Creating table model_regress_department 209s Creating table model_regress_worker 209s Creating table model_regress_nonautopk 209s Creating table model_regress_model1 209s Creating table model_regress_model2 209s Creating table model_regress_model3 209s Creating table generic_relations_regress_link 209s Creating table generic_relations_regress_place 209s Creating table generic_relations_regress_restaurant 209s Creating table generic_relations_regress_cafe 209s Creating table generic_relations_regress_address 209s Creating table generic_relations_regress_person 209s Creating table generic_relations_regress_charlink 209s Creating table generic_relations_regress_textlink 209s Creating table generic_relations_regress_oddrelation1 209s Creating table generic_relations_regress_oddrelation2 209s Creating table generic_relations_regress_note 209s Creating table generic_relations_regress_contact 209s Creating table generic_relations_regress_organization 209s Creating table generic_relations_regress_company 209s Creating table generic_relations_regress_team 209s Creating table generic_relations_regress_guild 209s Creating table generic_relations_regress_tag 209s Creating table generic_relations_regress_board 209s Creating table generic_relations_regress_haslinkthing 209s Creating table generic_relations_regress_a 209s Creating table generic_relations_regress_b 209s Creating table generic_relations_regress_c 209s Creating table generic_relations_regress_d 209s Creating table generic_relations_regress_node 209s Creating table generic_relations_regress_content 209s Creating table generic_relations_regress_related 209s Creating table update_only_fields_account 209s Creating table update_only_fields_person 209s Creating table update_only_fields_employee 209s Creating table update_only_fields_profile 209s Creating table delete_regress_award 209s Creating table delete_regress_awardnote 209s Creating table delete_regress_person 209s Creating table delete_regress_book 209s Creating table delete_regress_toy 209s Creating table delete_regress_child 209s Creating table delete_regress_playedwith 209s Creating table delete_regress_playedwithnote 209s Creating table delete_regress_contact 209s Creating table delete_regress_email 209s Creating table delete_regress_researcher 209s Creating table delete_regress_food 209s Creating table delete_regress_eaten 209s Creating table delete_regress_policy 209s Creating table delete_regress_version 209s Creating table delete_regress_location 209s Creating table delete_regress_item 209s Creating table delete_regress_file 209s Creating table delete_regress_fooimage 209s Creating table delete_regress_foofile 209s Creating table delete_regress_foophoto 209s Creating table delete_regress_orgunit 209s Creating table delete_regress_login 209s Creating table delete_regress_house 209s Creating table delete_regress_orderedperson 209s Creating table datatypes_donut 209s Creating table datatypes_rumbaba 209s Creating table test_client_regress_customuser 209s Creating table m2m_signals_part 209s Creating table m2m_signals_car 209s Creating table m2m_signals_sportscar 209s Creating table m2m_signals_person 209s Creating table field_defaults_article 209s Creating table admin_views_section 209s Creating table admin_views_article 209s Creating table admin_views_book 209s Creating table admin_views_promo 209s Creating table admin_views_chapter 209s Creating table admin_views_chapterxtra1 209s Creating table admin_views_chapterxtra2 209s Creating table admin_views_rowlevelchangepermissionmodel 209s Creating table admin_views_customarticle 209s Creating table admin_views_modelwithstringprimarykey 209s Creating table admin_views_color 209s Creating table admin_views_thing 209s Creating table admin_views_actor 209s Creating table admin_views_inquisition 209s Creating table admin_views_sketch 209s Creating table admin_views_character 209s Creating table admin_views_stumpjoke 209s Creating table admin_views_fabric 209s Creating table admin_views_person 209s Creating table admin_views_persona 209s Creating table admin_views_account 209s Creating table admin_views_fooaccount 209s Creating table admin_views_baraccount 209s Creating table admin_views_subscriber 209s Creating table admin_views_externalsubscriber 209s Creating table admin_views_oldsubscriber 209s Creating table admin_views_media 209s Creating table admin_views_podcast 209s Creating table admin_views_vodcast 209s Creating table admin_views_parent 209s Creating table admin_views_child 209s Creating table admin_views_pkchild 209s Creating table admin_views_toy 209s Creating table admin_views_emptymodel 209s Creating table admin_views_gallery 209s Creating table admin_views_picture 209s Creating table admin_views_language 209s Creating table admin_views_title 209s Creating table admin_views_titletranslation 209s Creating table admin_views_recommender 209s Creating table admin_views_recommendation 209s Creating table admin_views_collector 209s Creating table admin_views_widget 209s Creating table admin_views_doohickey 209s Creating table admin_views_grommet 209s Creating table admin_views_whatsit 209s Creating table admin_views_doodad 209s Creating table admin_views_fancydoodad 209s Creating table admin_views_category 209s Creating table admin_views_link 209s Creating table admin_views_prepopulatedpost 209s Creating table admin_views_prepopulatedsubpost 209s Creating table admin_views_post 209s Creating table admin_views_gadget 209s Creating table admin_views_villain 209s Creating table admin_views_supervillain 209s Creating table admin_views_funkytag 209s Creating table admin_views_plot 209s Creating table admin_views_plotdetails 209s Creating table admin_views_secrethideout 209s Creating table admin_views_supersecrethideout 209s Creating table admin_views_bookmark 209s Creating table admin_views_cyclicone 209s Creating table admin_views_cyclictwo 209s Creating table admin_views_topping 209s Creating table admin_views_pizza 209s Creating table admin_views_album 209s Creating table admin_views_song 209s Creating table admin_views_employee 209s Creating table admin_views_workhour 209s Creating table admin_views_manager 209s Creating table admin_views_bonus 209s Creating table admin_views_question 209s Creating table admin_views_answer 209s Creating table admin_views_reservation 209s Creating table admin_views_fooddelivery 209s Creating table admin_views_coverletter 209s Creating table admin_views_paper 209s Creating table admin_views_shortmessage 209s Creating table admin_views_telegram 209s Creating table admin_views_story 209s Creating table admin_views_otherstory 209s Creating table admin_views_complexsortedperson 209s Creating table admin_views_pluggablesearchperson 209s Creating table admin_views_prepopulatedpostlargeslug 209s Creating table admin_views_adminorderedfield 209s Creating table admin_views_adminorderedmodelmethod 209s Creating table admin_views_adminorderedadminmethod 209s Creating table admin_views_adminorderedcallable 209s Creating table admin_views_report 209s Creating table admin_views_mainprepopulated 209s Creating table admin_views_relatedprepopulated 209s Creating table admin_views_unorderedobject 209s Creating table admin_views_undeletableobject 209s Creating table admin_views_unchangeableobject 209s Creating table admin_views_usermessenger 209s Creating table admin_views_simple 209s Creating table admin_views_choice 209s Creating table admin_views_parentwithdependentchildren 209s Creating table admin_views_dependentchild 209s Creating table admin_views_filteredmanager 209s Creating table admin_views_emptymodelvisible 209s Creating table admin_views_emptymodelhidden 209s Creating table admin_views_emptymodelmixin 209s Creating table admin_views_state 209s Creating table admin_views_city 209s Creating table admin_views_restaurant 209s Creating table admin_views_worker 209s Creating table admin_views_referencedbyparent 209s Creating table admin_views_parentwithfk 209s Creating table admin_views_childofreferer 209s Creating table admin_views_inlinereferer 209s Creating table admin_views_referencedbyinline 209s Creating table admin_views_inlinereference 209s Creating table admin_views_recipe 209s Creating table admin_views_ingredient 209s Creating table admin_views_recipeingredient 209s Creating table admin_views_notreferenced 209s Creating table admin_views_explicitlyprovidedpk 209s Creating table admin_views_implicitlygeneratedpk 209s Creating table admin_views_referencedbygenrel 209s Creating table admin_views_genrelreference 209s Creating table admin_views_parentwithuuidpk 209s Creating table admin_views_relatedwithuuidpkmodel 209s Creating table admin_views_author 209s Creating table admin_views_authorship 209s Creating table admin_views_readonlyrelatedfield 209s Creating table admin_views_héllo 209s Creating table admin_views_box 209s Creating table admin_views_country 209s Creating table admin_views_traveler 209s Creating table m2o_recursive_category 209s Creating table m2o_recursive_person 209s Running deferred SQL... 209s Running migrations: 210s Applying admin.0001_initial... OK 210s Applying admin.0002_logentry_remove_auto_add... OK 210s Applying admin.0003_logentry_add_action_flag_choices... OK 210s Applying db_functions.0001_setup_extensions... OK 210s Applying db_functions.0002_create_test_models... OK 210s Applying sites.0001_initial... OK 210s Applying flatpages.0001_initial... OK 210s Applying migration_test_data_persistence.0001_initial... OK 210s Applying migration_test_data_persistence.0002_add_book... OK 210s Applying postgres_tests.0001_setup_extensions... OK 210s Applying postgres_tests.0002_create_test_models... OK 211s Applying redirects.0001_initial... OK 211s Applying redirects.0002_alter_redirect_new_path_help_text... OK 211s Applying sites.0002_alter_domain_unique... OK 213s Applying sites_framework.0001_initial... OK 213s Cloning test database for alias 'other' ('file:memorydb_other?mode=memory&cache=shared')... 213s Cloning test database for alias 'other' ('file:memorydb_other?mode=memory&cache=shared')... 214s System check identified no issues (17 silenced). 214s test_recursive_m2m_all (m2m_recursive.tests.RecursiveSymmetricalM2MThroughTests.test_recursive_m2m_all) ... ok 214s test_recursive_m2m_clear (m2m_recursive.tests.RecursiveSymmetricalM2MThroughTests.test_recursive_m2m_clear) ... ok 214s test_recursive_m2m_remove (m2m_recursive.tests.RecursiveSymmetricalM2MThroughTests.test_recursive_m2m_remove) ... ok 214s test_recursive_m2m_reverse_add (m2m_recursive.tests.RecursiveSymmetricalM2MThroughTests.test_recursive_m2m_reverse_add) ... ok 214s test_recursive_m2m_set (m2m_recursive.tests.RecursiveSymmetricalM2MThroughTests.test_recursive_m2m_set) ... ok 214s test_recursive_m2m_add_in_both_directions (m2m_recursive.tests.RecursiveM2MTests.test_recursive_m2m_add_in_both_directions) ... ok 214s test_recursive_m2m_add_via_related_name (m2m_recursive.tests.RecursiveM2MTests.test_recursive_m2m_add_via_related_name) ... ok 214s test_recursive_m2m_all (m2m_recursive.tests.RecursiveM2MTests.test_recursive_m2m_all) ... ok 214s test_recursive_m2m_clear (m2m_recursive.tests.RecursiveM2MTests.test_recursive_m2m_clear) ... ok 214s test_recursive_m2m_related_to_self (m2m_recursive.tests.RecursiveM2MTests.test_recursive_m2m_related_to_self) ... ok 214s test_recursive_m2m_remove (m2m_recursive.tests.RecursiveM2MTests.test_recursive_m2m_remove) ... ok 214s test_recursive_m2m_reverse_add (m2m_recursive.tests.RecursiveM2MTests.test_recursive_m2m_reverse_add) ... ok 214s test_adelete (async.test_async_model_methods.AsyncModelOperationTest.test_adelete) ... ok 214s test_arefresh_from_db (async.test_async_model_methods.AsyncModelOperationTest.test_arefresh_from_db) ... ok 214s test_asave (async.test_async_model_methods.AsyncModelOperationTest.test_asave) ... ok 215s test_aadd (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aadd) ... ok 215s test_aadd_reverse (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aadd_reverse) ... ok 215s test_aclear (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aclear) ... ok 215s test_aclear_reverse (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aclear_reverse) ... ok 215s test_acreate (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_acreate) ... ok 215s test_acreate_reverse (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_acreate_reverse) ... ok 215s test_aget_or_create (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aget_or_create) ... ok 215s test_aget_or_create_reverse (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aget_or_create_reverse) ... ok 215s test_aremove (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aremove) ... ok 215s test_aremove_reverse (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aremove_reverse) ... ok 215s test_aset (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aset) ... ok 215s test_aset_reverse (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aset_reverse) ... ok 215s test_aupdate_or_create (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aupdate_or_create) ... ok 215s test_aupdate_or_create_reverse (async.test_async_related_managers.AsyncRelatedManagersOperationTest.test_aupdate_or_create_reverse) ... ok 215s test_aaggregate (async.test_async_queryset.AsyncQuerySetTest.test_aaggregate) ... ok 215s test_abulk_create (async.test_async_queryset.AsyncQuerySetTest.test_abulk_create) 215s Utility class which turns an awaitable that only works on the thread with ... ok 215s test_abulk_update (async.test_async_queryset.AsyncQuerySetTest.test_abulk_update) ... ok 215s test_acontains (async.test_async_queryset.AsyncQuerySetTest.test_acontains) ... ok 215s test_acount (async.test_async_queryset.AsyncQuerySetTest.test_acount) ... ok 215s test_acount_cached_result (async.test_async_queryset.AsyncQuerySetTest.test_acount_cached_result) ... ok 215s test_acreate (async.test_async_queryset.AsyncQuerySetTest.test_acreate) ... ok 215s test_adelete (async.test_async_queryset.AsyncQuerySetTest.test_adelete) ... ok 215s test_aearliest (async.test_async_queryset.AsyncQuerySetTest.test_aearliest) ... ok 215s test_aexists (async.test_async_queryset.AsyncQuerySetTest.test_aexists) ... ok 215s test_aexplain (async.test_async_queryset.AsyncQuerySetTest.test_aexplain) 215s Utility class which turns an awaitable that only works on the thread with ... ok 215s test_afirst (async.test_async_queryset.AsyncQuerySetTest.test_afirst) ... ok 215s test_aget (async.test_async_queryset.AsyncQuerySetTest.test_aget) ... ok 215s test_aget_or_create (async.test_async_queryset.AsyncQuerySetTest.test_aget_or_create) ... ok 215s test_ain_bulk (async.test_async_queryset.AsyncQuerySetTest.test_ain_bulk) ... ok 215s test_aiterator (async.test_async_queryset.AsyncQuerySetTest.test_aiterator) ... ok 215s test_aiterator_invalid_chunk_size (async.test_async_queryset.AsyncQuerySetTest.test_aiterator_invalid_chunk_size) ... ok 215s test_aiterator_prefetch_related (async.test_async_queryset.AsyncQuerySetTest.test_aiterator_prefetch_related) ... ok 215s test_alast (async.test_async_queryset.AsyncQuerySetTest.test_alast) ... ok 215s test_alatest (async.test_async_queryset.AsyncQuerySetTest.test_alatest) ... ok 215s test_async_iteration (async.test_async_queryset.AsyncQuerySetTest.test_async_iteration) ... ok 215s test_aupdate (async.test_async_queryset.AsyncQuerySetTest.test_aupdate) ... ok 215s test_aupdate_or_create (async.test_async_queryset.AsyncQuerySetTest.test_aupdate_or_create) ... ok 215s test_raw (async.test_async_queryset.AsyncQuerySetTest.test_raw) ... ok 215s test_update_conflicts_unique_field_unsupported (async.test_async_queryset.AsyncQuerySetTest.test_update_conflicts_unique_field_unsupported) 215s Utility class which turns an awaitable that only works on the thread with ... skipped 'Database has feature(s) supports_update_conflicts_with_target' 215s test_add_domain (syndication_tests.tests.SyndicationFeedTest.test_add_domain) 215s add_domain() prefixes domains onto the correct URLs. ... ok 215s test_atom_feed (syndication_tests.tests.SyndicationFeedTest.test_atom_feed) 215s Test the structure and content of feeds generated by Atom1Feed. ... ok 215s test_atom_feed_published_and_updated_elements (syndication_tests.tests.SyndicationFeedTest.test_atom_feed_published_and_updated_elements) 215s The published and updated elements are not ... ok 215s test_atom_multiple_enclosures (syndication_tests.tests.SyndicationFeedTest.test_atom_multiple_enclosures) ... ok 215s test_atom_single_enclosure (syndication_tests.tests.SyndicationFeedTest.test_atom_single_enclosure) ... ok 215s test_aware_datetime_conversion (syndication_tests.tests.SyndicationFeedTest.test_aware_datetime_conversion) 215s Datetimes with timezones don't get trodden on. ... ok 215s test_custom_feed_generator (syndication_tests.tests.SyndicationFeedTest.test_custom_feed_generator) ... ok 215s test_feed_generator_language_attribute (syndication_tests.tests.SyndicationFeedTest.test_feed_generator_language_attribute) ... ok 215s test_feed_last_modified_time (syndication_tests.tests.SyndicationFeedTest.test_feed_last_modified_time) 215s Tests the Last-Modified header with aware publication dates. ... ok 215s test_feed_last_modified_time_naive_date (syndication_tests.tests.SyndicationFeedTest.test_feed_last_modified_time_naive_date) 215s Tests the Last-Modified header with naive publication dates. ... ok 215s test_feed_no_content_self_closing_tag (syndication_tests.tests.SyndicationFeedTest.test_feed_no_content_self_closing_tag) ... ok 215s test_feed_url (syndication_tests.tests.SyndicationFeedTest.test_feed_url) 215s The feed_url can be overridden. ... ok 215s test_get_non_existent_object (syndication_tests.tests.SyndicationFeedTest.test_get_non_existent_object) ... ok 215s test_get_object (syndication_tests.tests.SyndicationFeedTest.test_get_object) ... ok 215s test_item_link_error (syndication_tests.tests.SyndicationFeedTest.test_item_link_error) 215s An ImproperlyConfigured is raised if no link could be found for the ... ok 215s test_latest_post_date (syndication_tests.tests.SyndicationFeedTest.test_latest_post_date) 215s Both the published and updated dates are ... ok 215s test_naive_datetime_conversion (syndication_tests.tests.SyndicationFeedTest.test_naive_datetime_conversion) 215s Datetimes are correctly converted to the local time zone. ... ok 215s test_rss091_feed (syndication_tests.tests.SyndicationFeedTest.test_rss091_feed) 215s Test the structure and content of feeds generated by RssUserland091Feed. ... ok 215s test_rss2_feed (syndication_tests.tests.SyndicationFeedTest.test_rss2_feed) 215s Test the structure and content of feeds generated by Rss201rev2Feed. ... ok 215s test_rss2_feed_guid_permalink_false (syndication_tests.tests.SyndicationFeedTest.test_rss2_feed_guid_permalink_false) 215s Test if the 'isPermaLink' attribute of element of an item ... ok 215s test_rss2_feed_guid_permalink_true (syndication_tests.tests.SyndicationFeedTest.test_rss2_feed_guid_permalink_true) 215s Test if the 'isPermaLink' attribute of element of an item ... ok 215s test_rss2_feed_with_callable_object (syndication_tests.tests.SyndicationFeedTest.test_rss2_feed_with_callable_object) ... ok 215s test_rss2_feed_with_decorated_methods (syndication_tests.tests.SyndicationFeedTest.test_rss2_feed_with_decorated_methods) ... ok 215s test_rss2_feed_with_wrong_decorated_methods (syndication_tests.tests.SyndicationFeedTest.test_rss2_feed_with_wrong_decorated_methods) ... ok 215s test_rss2_multiple_enclosures (syndication_tests.tests.SyndicationFeedTest.test_rss2_multiple_enclosures) ... ok 215s test_rss2_single_enclosure (syndication_tests.tests.SyndicationFeedTest.test_rss2_single_enclosure) ... ok 215s test_secure_urls (syndication_tests.tests.SyndicationFeedTest.test_secure_urls) 215s Test URLs are prefixed with https:// when feed is requested over HTTPS. ... ok 215s test_template_context_feed (syndication_tests.tests.SyndicationFeedTest.test_template_context_feed) 215s Custom context data can be passed to templates for title ... ok 215s test_template_feed (syndication_tests.tests.SyndicationFeedTest.test_template_feed) 215s The item title and description can be overridden with templates. ... ok 215s test_title_escaping (syndication_tests.tests.SyndicationFeedTest.test_title_escaping) 215s Titles are escaped correctly in RSS feeds. ... ok 215s test_columns_list_sql (indexes.tests.SchemaIndexesTests.test_columns_list_sql) ... ok 215s test_descending_columns_list_sql (indexes.tests.SchemaIndexesTests.test_descending_columns_list_sql) ... ok 215s test_index_name (indexes.tests.SchemaIndexesTests.test_index_name) 215s Index names on the built-in database backends:: ... ok 215s test_index_name_hash (indexes.tests.SchemaIndexesTests.test_index_name_hash) 215s Index names should be deterministic. ... ok 215s test_index_together_single_list (indexes.tests.SchemaIndexesTests.test_index_together_single_list) ... ok 215s test_quoted_index_name (indexes.tests.SchemaIndexesTests.test_quoted_index_name) ... ok 216s test_pickle (utils_tests.test_simplelazyobject.TestUtilsSimpleLazyObjectDjangoTestCase.test_pickle) ... ok 216s test_both_date_objects (utils_tests.test_timesince.TZAwareTimesinceTests.test_both_date_objects) 216s Timesince should work with both date objects (#9672) ... ok 216s test_date_objects (utils_tests.test_timesince.TZAwareTimesinceTests.test_date_objects) 216s Both timesince and timeuntil should work on date objects (#17937). ... ok 216s test_depth (utils_tests.test_timesince.TZAwareTimesinceTests.test_depth) ... ok 216s test_depth_invalid (utils_tests.test_timesince.TZAwareTimesinceTests.test_depth_invalid) ... ok 216s test_different_timezones (utils_tests.test_timesince.TZAwareTimesinceTests.test_different_timezones) 216s When using two different timezones. ... ok 216s test_display_first_unit (utils_tests.test_timesince.TZAwareTimesinceTests.test_display_first_unit) 216s If the two differing units aren't adjacent, only the first unit is ... ok 216s test_display_second_before_first (utils_tests.test_timesince.TZAwareTimesinceTests.test_display_second_before_first) 216s When the second date occurs before the first, we should always ... ok 216s test_equal_datetimes (utils_tests.test_timesince.TZAwareTimesinceTests.test_equal_datetimes) 216s equal datetimes. ... ok 216s test_ignore_microseconds_and_seconds (utils_tests.test_timesince.TZAwareTimesinceTests.test_ignore_microseconds_and_seconds) 216s Microseconds and seconds are ignored. ... ok 216s test_leap_year (utils_tests.test_timesince.TZAwareTimesinceTests.test_leap_year) ... ok 216s test_leap_year_new_years_eve (utils_tests.test_timesince.TZAwareTimesinceTests.test_leap_year_new_years_eve) ... ok 216s test_less_than_a_day_cross_day_with_zoneinfo (utils_tests.test_timesince.TZAwareTimesinceTests.test_less_than_a_day_cross_day_with_zoneinfo) ... ok 216s test_less_than_a_day_with_zoneinfo (utils_tests.test_timesince.TZAwareTimesinceTests.test_less_than_a_day_with_zoneinfo) ... ok 216s test_months_edge (utils_tests.test_timesince.TZAwareTimesinceTests.test_months_edge) ... ok 216s test_multiple_units (utils_tests.test_timesince.TZAwareTimesinceTests.test_multiple_units) 216s Test multiple units. ... ok 216s test_naive_datetime_with_tzinfo_attribute (utils_tests.test_timesince.TZAwareTimesinceTests.test_naive_datetime_with_tzinfo_attribute) ... ok 216s test_other_units (utils_tests.test_timesince.TZAwareTimesinceTests.test_other_units) 216s Test other units. ... ok 216s test_second_before_equal_first_humanize_time_strings (utils_tests.test_timesince.TZAwareTimesinceTests.test_second_before_equal_first_humanize_time_strings) ... ok 216s test_thousand_years_ago (utils_tests.test_timesince.TZAwareTimesinceTests.test_thousand_years_ago) ... ok 216s test_both_date_objects (utils_tests.test_timesince.TimesinceTests.test_both_date_objects) 216s Timesince should work with both date objects (#9672) ... ok 216s test_date_objects (utils_tests.test_timesince.TimesinceTests.test_date_objects) 216s Both timesince and timeuntil should work on date objects (#17937). ... ok 216s test_depth (utils_tests.test_timesince.TimesinceTests.test_depth) ... ok 216s test_depth_invalid (utils_tests.test_timesince.TimesinceTests.test_depth_invalid) ... ok 216s test_different_timezones (utils_tests.test_timesince.TimesinceTests.test_different_timezones) 216s When using two different timezones. ... ok 216s test_display_first_unit (utils_tests.test_timesince.TimesinceTests.test_display_first_unit) 216s If the two differing units aren't adjacent, only the first unit is ... ok 216s test_display_second_before_first (utils_tests.test_timesince.TimesinceTests.test_display_second_before_first) 216s When the second date occurs before the first, we should always ... ok 216s test_equal_datetimes (utils_tests.test_timesince.TimesinceTests.test_equal_datetimes) 216s equal datetimes. ... ok 216s test_ignore_microseconds_and_seconds (utils_tests.test_timesince.TimesinceTests.test_ignore_microseconds_and_seconds) 216s Microseconds and seconds are ignored. ... ok 216s test_leap_year (utils_tests.test_timesince.TimesinceTests.test_leap_year) ... ok 216s test_leap_year_new_years_eve (utils_tests.test_timesince.TimesinceTests.test_leap_year_new_years_eve) ... ok 216s test_less_than_a_day_cross_day_with_zoneinfo (utils_tests.test_timesince.TimesinceTests.test_less_than_a_day_cross_day_with_zoneinfo) ... ok 216s test_less_than_a_day_with_zoneinfo (utils_tests.test_timesince.TimesinceTests.test_less_than_a_day_with_zoneinfo) ... ok 216s test_months_edge (utils_tests.test_timesince.TimesinceTests.test_months_edge) ... ok 216s test_multiple_units (utils_tests.test_timesince.TimesinceTests.test_multiple_units) 216s Test multiple units. ... ok 216s test_naive_datetime_with_tzinfo_attribute (utils_tests.test_timesince.TimesinceTests.test_naive_datetime_with_tzinfo_attribute) ... ok 216s test_other_units (utils_tests.test_timesince.TimesinceTests.test_other_units) 216s Test other units. ... ok 216s test_second_before_equal_first_humanize_time_strings (utils_tests.test_timesince.TimesinceTests.test_second_before_equal_first_humanize_time_strings) ... ok 216s test_thousand_years_ago (utils_tests.test_timesince.TimesinceTests.test_thousand_years_ago) ... ok 216s test_attribute_name_not_python_keyword (inspectdb.tests.InspectDBTestCase.test_attribute_name_not_python_keyword) ... ok 216s test_char_field_db_collation (inspectdb.tests.InspectDBTestCase.test_char_field_db_collation) ... ok 216s test_char_field_unlimited (inspectdb.tests.InspectDBTestCase.test_char_field_unlimited) ... skipped "Database doesn't support feature(s): supports_unlimited_charfield" 216s test_custom_fields (inspectdb.tests.InspectDBTestCase.test_custom_fields) 216s Introspection of columns with a custom field (#21090) ... ok 216s test_db_comments (inspectdb.tests.InspectDBTestCase.test_db_comments) ... skipped "Database doesn't support feature(s): supports_comments" 216s test_digits_column_name_introspection (inspectdb.tests.InspectDBTestCase.test_digits_column_name_introspection) 216s Introspection of column names consist/start with digits (#16536/#17676) ... ok 216s test_field_types (inspectdb.tests.InspectDBTestCase.test_field_types) 216s Test introspection of various Django field types ... ok 216s test_foreign_key_to_field (inspectdb.tests.InspectDBTestCase.test_foreign_key_to_field) ... ok 216s test_introspection_errors (inspectdb.tests.InspectDBTestCase.test_introspection_errors) 216s Introspection errors should not crash the command, and the error should ... ok 216s test_json_field (inspectdb.tests.InspectDBTestCase.test_json_field) ... ok 216s test_managed_models (inspectdb.tests.InspectDBTestCase.test_managed_models) 216s By default the command generates models with `Meta.managed = False`. ... ok 216s test_number_field_types (inspectdb.tests.InspectDBTestCase.test_number_field_types) 216s Test introspection of various Django field types ... ok 216s test_same_relations (inspectdb.tests.InspectDBTestCase.test_same_relations) ... ok 216s test_special_column_name_introspection (inspectdb.tests.InspectDBTestCase.test_special_column_name_introspection) 216s Introspection of column names containing special characters, ... ok 216s test_stealth_table_name_filter_option (inspectdb.tests.InspectDBTestCase.test_stealth_table_name_filter_option) ... ok 216s test_table_name_introspection (inspectdb.tests.InspectDBTestCase.test_table_name_introspection) 216s Introspection of table names containing special characters, ... ok 216s test_table_option (inspectdb.tests.InspectDBTestCase.test_table_option) 216s inspectdb can inspect a subset of tables by passing the table names as ... ok 216s test_table_with_func_unique_constraint (inspectdb.tests.InspectDBTestCase.test_table_with_func_unique_constraint) ... ok 216s test_text_field_db_collation (inspectdb.tests.InspectDBTestCase.test_text_field_db_collation) ... ok 216s test_unique_together_meta (inspectdb.tests.InspectDBTestCase.test_unique_together_meta) ... ok 216s test_unsupported_unique_together (inspectdb.tests.InspectDBTestCase.test_unsupported_unique_together) 216s Unsupported index types (COALESCE here) are skipped. ... skipped 'PostgreSQL specific SQL' 217s test_add_field_and_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_add_field_and_index_together) 217s Added fields will be created before using them in index_together. ... ok 217s test_add_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_add_index_together) ... ok 217s test_add_model_order_with_respect_to_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_add_model_order_with_respect_to_index_together) ... ok 217s test_alter_field_and_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_alter_field_and_index_together) 217s Fields are altered after deleting some index_together. ... ok 217s test_create_model_and_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_create_model_and_index_together) ... ok 217s test_empty_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_empty_index_together) 217s Empty index_together shouldn't generate a migration. ... ok 217s test_index_together_no_changes (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_index_together_no_changes) 217s index_together doesn't generate a migration if no changes have been ... ok 217s test_index_together_ordering (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_index_together_ordering) 217s index_together triggers on ordering changes. ... ok 217s test_index_together_remove_fk (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_index_together_remove_fk) ... ok 217s test_partly_alter_index_together_decrease (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_partly_alter_index_together_decrease) ... ok 217s test_partly_alter_index_together_increase (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_partly_alter_index_together_increase) ... ok 217s test_remove_field_and_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_remove_field_and_index_together) 217s Removed fields will be removed after updating index_together. ... ok 217s test_remove_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_remove_index_together) ... ok 217s test_rename_field_and_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_rename_field_and_index_together) 217s Fields are renamed before updating index_together. ... ok 217s test_rename_index_together_to_index (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_rename_index_together_to_index) ... ok 217s test_rename_index_together_to_index_extra_options (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_rename_index_together_to_index_extra_options) ... ok 217s test_rename_index_together_to_index_order_fields (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_rename_index_together_to_index_order_fields) ... ok 217s test_set_alter_order_with_respect_to_index_together (migrations.test_autodetector.AutodetectorIndexTogetherTests.test_set_alter_order_with_respect_to_index_together) ... ok 217s test_makemigrations_app_name_specified_as_label (migrations.test_commands.AppLabelErrorTests.test_makemigrations_app_name_specified_as_label) ... ok 217s test_makemigrations_nonexistent_app_label (migrations.test_commands.AppLabelErrorTests.test_makemigrations_nonexistent_app_label) ... ok 217s test_migrate_app_name_specified_as_label (migrations.test_commands.AppLabelErrorTests.test_migrate_app_name_specified_as_label) ... ok 217s test_migrate_nonexistent_app_label (migrations.test_commands.AppLabelErrorTests.test_migrate_nonexistent_app_label) ... ok 217s test_optimizemigration_app_name_specified_as_label (migrations.test_commands.AppLabelErrorTests.test_optimizemigration_app_name_specified_as_label) ... ok 217s test_optimizemigration_nonexistent_app_label (migrations.test_commands.AppLabelErrorTests.test_optimizemigration_nonexistent_app_label) ... ok 217s test_showmigrations_app_name_specified_as_label (migrations.test_commands.AppLabelErrorTests.test_showmigrations_app_name_specified_as_label) ... ok 217s test_showmigrations_nonexistent_app_label (migrations.test_commands.AppLabelErrorTests.test_showmigrations_nonexistent_app_label) ... ok 217s test_sqlmigrate_app_name_specified_as_label (migrations.test_commands.AppLabelErrorTests.test_sqlmigrate_app_name_specified_as_label) ... ok 217s test_sqlmigrate_nonexistent_app_label (migrations.test_commands.AppLabelErrorTests.test_sqlmigrate_nonexistent_app_label) ... ok 217s test_squashmigrations_app_name_specified_as_label (migrations.test_commands.AppLabelErrorTests.test_squashmigrations_app_name_specified_as_label) ... ok 217s test_squashmigrations_nonexistent_app_label (migrations.test_commands.AppLabelErrorTests.test_squashmigrations_nonexistent_app_label) ... ok 218s test_check_consistent_history (migrations.test_loader.LoaderTests.test_check_consistent_history) ... ok 218s test_check_consistent_history_squashed (migrations.test_loader.LoaderTests.test_check_consistent_history_squashed) 218s MigrationLoader.check_consistent_history() should ignore unapplied ... ok 218s test_explicit_missing_module (migrations.test_loader.LoaderTests.test_explicit_missing_module) 218s If a MIGRATION_MODULES override points to a missing module, the error ... ok 218s test_first (migrations.test_loader.LoaderTests.test_first) 218s Makes sure the '__first__' migrations build correctly. ... ok 218s test_ignore_files (migrations.test_loader.LoaderTests.test_ignore_files) 218s Files prefixed with underscore, tilde, or dot aren't loaded. ... ok 218s test_load (migrations.test_loader.LoaderTests.test_load) 218s Makes sure the loader can load the migrations for the test apps, ... ok 218s test_load_empty_dir (migrations.test_loader.LoaderTests.test_load_empty_dir) ... ok 218s test_load_import_error (migrations.test_loader.LoaderTests.test_load_import_error) ... ok 218s test_load_module_file (migrations.test_loader.LoaderTests.test_load_module_file) ... ok 218s test_load_unmigrated_dependency (migrations.test_loader.LoaderTests.test_load_unmigrated_dependency) 218s The loader can load migrations with a dependency on an unmigrated app. ... ok 218s test_loading_namespace_package (migrations.test_loader.LoaderTests.test_loading_namespace_package) 218s Migration directories without an __init__.py file are ignored. ... ok 218s test_loading_package_without__file__ (migrations.test_loader.LoaderTests.test_loading_package_without__file__) 218s To support frozen environments, MigrationLoader loads migrations from ... ok 218s test_loading_squashed (migrations.test_loader.LoaderTests.test_loading_squashed) 218s Tests loading a squashed migration ... ok 218s test_loading_squashed_complex (migrations.test_loader.LoaderTests.test_loading_squashed_complex) 218s Tests loading a complex set of squashed migrations ... ok 218s test_loading_squashed_complex_multi_apps (migrations.test_loader.LoaderTests.test_loading_squashed_complex_multi_apps) ... ok 218s test_loading_squashed_complex_multi_apps_partially_applied (migrations.test_loader.LoaderTests.test_loading_squashed_complex_multi_apps_partially_applied) ... ok 218s test_loading_squashed_erroneous (migrations.test_loader.LoaderTests.test_loading_squashed_erroneous) 218s Tests loading a complex but erroneous set of squashed migrations ... ok 218s test_loading_squashed_ref_squashed (migrations.test_loader.LoaderTests.test_loading_squashed_ref_squashed) 218s Tests loading a squashed migration with a new migration referencing it ... ok 218s test_marked_as_migrated (migrations.test_loader.LoaderTests.test_marked_as_migrated) 218s Undefined MIGRATION_MODULES implies default migration module. ... ok 218s test_marked_as_unmigrated (migrations.test_loader.LoaderTests.test_marked_as_unmigrated) 218s MIGRATION_MODULES allows disabling of migrations for a particular app. ... ok 218s test_name_match (migrations.test_loader.LoaderTests.test_name_match) 218s Tests prefix name matching ... ok 218s test_plan_handles_repeated_migrations (migrations.test_loader.LoaderTests.test_plan_handles_repeated_migrations) 218s _generate_plan() doesn't readd migrations already in the plan (#29180). ... ok 218s test_run_before (migrations.test_loader.LoaderTests.test_run_before) 218s Makes sure the loader uses Migration.run_before. ... ok 218s test_apply (migrations.test_loader.RecorderTests.test_apply) 218s Tests marking migrations as applied/unapplied. ... ok 218s test_reraising_backend_specific_database_exception (db_utils.tests.DatabaseErrorWrapperTests.test_reraising_backend_specific_database_exception) ... skipped 'PostgreSQL test' 218s test_db_tablespace (model_indexes.tests.IndexesTests.test_db_tablespace) ... skipped "Database doesn't support feature(s): supports_tablespaces" 218s test_func_with_tablespace (model_indexes.tests.IndexesTests.test_func_with_tablespace) ... skipped "Database doesn't support feature(s): supports_tablespaces" 219s test_body_read_on_get_data (test_client.tests.AsyncClientTest.test_body_read_on_get_data) ... ok 219s test_follow_parameter_not_implemented (test_client.tests.AsyncClientTest.test_follow_parameter_not_implemented) ... ok 219s test_get_data (test_client.tests.AsyncClientTest.test_get_data) ... ok 219s test_post_data (test_client.tests.AsyncClientTest.test_post_data) ... ok 219s test_response_resolver_match (test_client.tests.AsyncClientTest.test_response_resolver_match) ... ok 219s test_response_resolver_match_middleware_urlconf (test_client.tests.AsyncClientTest.test_response_resolver_match_middleware_urlconf) ... ok 219s test_add_alter_order_with_respect_to (migrations.test_autodetector.AutodetectorTests.test_add_alter_order_with_respect_to) 219s Setting order_with_respect_to when adding the FK too does ... ok 219s test_add_blank_textfield_and_charfield (migrations.test_autodetector.AutodetectorTests.test_add_blank_textfield_and_charfield) 219s #23405 - Adding a NOT NULL and blank `CharField` or `TextField` ... ok 219s test_add_constraints (migrations.test_autodetector.AutodetectorTests.test_add_constraints) 219s Test change detection of new constraints. ... ok 219s test_add_custom_fk_with_hardcoded_to (migrations.test_autodetector.AutodetectorTests.test_add_custom_fk_with_hardcoded_to) ... ok 219s test_add_date_fields_with_auto_now_add_asking_for_default (migrations.test_autodetector.AutodetectorTests.test_add_date_fields_with_auto_now_add_asking_for_default) ... ok 219s test_add_date_fields_with_auto_now_add_not_asking_for_null_addition (migrations.test_autodetector.AutodetectorTests.test_add_date_fields_with_auto_now_add_not_asking_for_null_addition) ... ok 219s test_add_date_fields_with_auto_now_not_asking_for_default (migrations.test_autodetector.AutodetectorTests.test_add_date_fields_with_auto_now_not_asking_for_default) ... ok 219s test_add_field (migrations.test_autodetector.AutodetectorTests.test_add_field) 219s Tests autodetection of new fields. ... ok 219s test_add_field_and_unique_together (migrations.test_autodetector.AutodetectorTests.test_add_field_and_unique_together) 219s Added fields will be created before using them in unique_together. ... ok 219s test_add_field_with_default (migrations.test_autodetector.AutodetectorTests.test_add_field_with_default) 219s #22030 - Adding a field with a default should work. ... ok 219s test_add_indexes (migrations.test_autodetector.AutodetectorTests.test_add_indexes) 219s Test change detection of new indexes. ... ok 219s test_add_many_to_many (migrations.test_autodetector.AutodetectorTests.test_add_many_to_many) 219s #22435 - Adding a ManyToManyField should not prompt for a default. ... ok 219s test_add_model_order_with_respect_to (migrations.test_autodetector.AutodetectorTests.test_add_model_order_with_respect_to) 219s Setting order_with_respect_to when adding the whole model ... ok 219s test_add_model_order_with_respect_to_constraint (migrations.test_autodetector.AutodetectorTests.test_add_model_order_with_respect_to_constraint) ... ok 219s test_add_model_order_with_respect_to_index (migrations.test_autodetector.AutodetectorTests.test_add_model_order_with_respect_to_index) ... ok 219s test_add_model_order_with_respect_to_unique_together (migrations.test_autodetector.AutodetectorTests.test_add_model_order_with_respect_to_unique_together) ... ok 219s test_add_model_with_field_removed_from_base_model (migrations.test_autodetector.AutodetectorTests.test_add_model_with_field_removed_from_base_model) 219s Removing a base field takes place before adding a new inherited model ... ok 219s test_add_non_blank_textfield_and_charfield (migrations.test_autodetector.AutodetectorTests.test_add_non_blank_textfield_and_charfield) 219s #23405 - Adding a NOT NULL and non-blank `CharField` or `TextField` ... ok 219s test_add_unique_together (migrations.test_autodetector.AutodetectorTests.test_add_unique_together) 219s Tests unique_together detection. ... ok 219s test_alter_db_table_add (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_add) 219s Tests detection for adding db_table in model's options. ... ok 219s test_alter_db_table_change (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_change) 219s Tests detection for changing db_table in model's options'. ... ok 219s test_alter_db_table_comment_add (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_comment_add) ... ok 219s test_alter_db_table_comment_change (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_comment_change) ... ok 219s test_alter_db_table_comment_no_changes (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_comment_no_changes) ... ok 219s test_alter_db_table_comment_remove (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_comment_remove) ... ok 219s test_alter_db_table_no_changes (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_no_changes) 219s Alter_db_table doesn't generate a migration if no changes have been made. ... ok 219s test_alter_db_table_remove (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_remove) 219s Tests detection for removing db_table in model's options. ... ok 219s test_alter_db_table_with_model_change (migrations.test_autodetector.AutodetectorTests.test_alter_db_table_with_model_change) 219s Tests when model and db_table changes, autodetector must create two ... ok 219s test_alter_field (migrations.test_autodetector.AutodetectorTests.test_alter_field) 219s Tests autodetection of new fields. ... ok 219s test_alter_field_and_unique_together (migrations.test_autodetector.AutodetectorTests.test_alter_field_and_unique_together) 219s Fields are altered after deleting some unique_together. ... ok 219s test_alter_field_to_fk_dependency_other_app (migrations.test_autodetector.AutodetectorTests.test_alter_field_to_fk_dependency_other_app) ... ok 219s test_alter_field_to_not_null_oneoff_default (migrations.test_autodetector.AutodetectorTests.test_alter_field_to_not_null_oneoff_default) 219s #23609 - Tests autodetection of nullable to non-nullable alterations. ... ok 219s test_alter_field_to_not_null_with_default (migrations.test_autodetector.AutodetectorTests.test_alter_field_to_not_null_with_default) 219s #23609 - Tests autodetection of nullable to non-nullable alterations. ... ok 219s test_alter_field_to_not_null_without_default (migrations.test_autodetector.AutodetectorTests.test_alter_field_to_not_null_without_default) 219s #23609 - Tests autodetection of nullable to non-nullable alterations. ... ok 219s test_alter_fk_before_model_deletion (migrations.test_autodetector.AutodetectorTests.test_alter_fk_before_model_deletion) 219s ForeignKeys are altered _before_ the model they used to ... ok 219s test_alter_many_to_many (migrations.test_autodetector.AutodetectorTests.test_alter_many_to_many) ... ok 219s test_alter_model_managers (migrations.test_autodetector.AutodetectorTests.test_alter_model_managers) 219s Changing the model managers adds a new operation. ... ok 219s test_alter_model_options (migrations.test_autodetector.AutodetectorTests.test_alter_model_options) 219s Changing a model's options should make a change. ... ok 219s test_alter_model_options_proxy (migrations.test_autodetector.AutodetectorTests.test_alter_model_options_proxy) 219s Changing a proxy model's options should also make a change. ... ok 219s test_alter_regex_string_to_compiled_regex (migrations.test_autodetector.AutodetectorTests.test_alter_regex_string_to_compiled_regex) ... ok 219s test_alter_unique_together_fk_to_m2m (migrations.test_autodetector.AutodetectorTests.test_alter_unique_together_fk_to_m2m) ... ok 219s test_arrange_for_graph (migrations.test_autodetector.AutodetectorTests.test_arrange_for_graph) 219s Tests auto-naming of migrations for graph matching. ... ok 219s test_arrange_for_graph_with_multiple_initial (migrations.test_autodetector.AutodetectorTests.test_arrange_for_graph_with_multiple_initial) ... ok 219s test_bases_first (migrations.test_autodetector.AutodetectorTests.test_bases_first) 219s Bases of other models come first. ... ok 219s test_bases_first_mixed_case_app_label (migrations.test_autodetector.AutodetectorTests.test_bases_first_mixed_case_app_label) ... ok 219s test_circular_dependency_mixed_addcreate (migrations.test_autodetector.AutodetectorTests.test_circular_dependency_mixed_addcreate) 219s #23315 - The dependency resolver knows to put all CreateModel ... ok 219s test_circular_dependency_swappable (migrations.test_autodetector.AutodetectorTests.test_circular_dependency_swappable) 219s #23322 - The dependency resolver knows to explicitly resolve ... ok 219s test_circular_dependency_swappable2 (migrations.test_autodetector.AutodetectorTests.test_circular_dependency_swappable2) 219s #23322 - The dependency resolver knows to explicitly resolve ... ok 219s test_circular_dependency_swappable_self (migrations.test_autodetector.AutodetectorTests.test_circular_dependency_swappable_self) 219s #23322 - The dependency resolver knows to explicitly resolve ... ok 219s test_circular_fk_dependency (migrations.test_autodetector.AutodetectorTests.test_circular_fk_dependency) 219s Having a circular ForeignKey dependency automatically ... ok 219s test_concrete_field_changed_to_many_to_many (migrations.test_autodetector.AutodetectorTests.test_concrete_field_changed_to_many_to_many) 219s #23938 - Changing a concrete field into a ManyToManyField ... ok 219s test_create_model_and_unique_together (migrations.test_autodetector.AutodetectorTests.test_create_model_and_unique_together) ... ok 219s test_create_model_with_check_constraint (migrations.test_autodetector.AutodetectorTests.test_create_model_with_check_constraint) 219s Test creation of new model with constraints already defined. ... ok 219s test_create_model_with_indexes (migrations.test_autodetector.AutodetectorTests.test_create_model_with_indexes) 219s Test creation of new model with indexes already defined. ... ok 219s test_create_with_through_model (migrations.test_autodetector.AutodetectorTests.test_create_with_through_model) 219s Adding a m2m with a through model and the models that use it should be ... ok 219s test_create_with_through_model_separate_apps (migrations.test_autodetector.AutodetectorTests.test_create_with_through_model_separate_apps) ... ok 219s test_custom_deconstructible (migrations.test_autodetector.AutodetectorTests.test_custom_deconstructible) 219s Two instances which deconstruct to the same value aren't considered a ... ok 219s test_custom_migration_name (migrations.test_autodetector.AutodetectorTests.test_custom_migration_name) 219s Tests custom naming of migrations for graph matching. ... ok 219s test_deconstruct_field_kwarg (migrations.test_autodetector.AutodetectorTests.test_deconstruct_field_kwarg) 219s Field instances are handled correctly by nested deconstruction. ... ok 219s test_deconstruct_type (migrations.test_autodetector.AutodetectorTests.test_deconstruct_type) 219s #22951 -- Uninstantiated classes with deconstruct are correctly returned ... ok 219s test_deconstructible_dict (migrations.test_autodetector.AutodetectorTests.test_deconstructible_dict) 219s Nested deconstruction descends into dict values. ... ok 219s test_deconstructible_list (migrations.test_autodetector.AutodetectorTests.test_deconstructible_list) 219s Nested deconstruction descends into lists. ... ok 219s test_deconstructible_tuple (migrations.test_autodetector.AutodetectorTests.test_deconstructible_tuple) 219s Nested deconstruction descends into tuples. ... ok 219s test_default_related_name_option (migrations.test_autodetector.AutodetectorTests.test_default_related_name_option) ... ok 219s test_different_regex_does_alter (migrations.test_autodetector.AutodetectorTests.test_different_regex_does_alter) ... ok 219s test_empty_unique_together (migrations.test_autodetector.AutodetectorTests.test_empty_unique_together) 219s Empty unique_together shouldn't generate a migration. ... ok 219s test_first_dependency (migrations.test_autodetector.AutodetectorTests.test_first_dependency) 219s A dependency to an app with no migrations uses __first__. ... ok 219s test_fk_dependency (migrations.test_autodetector.AutodetectorTests.test_fk_dependency) 219s Having a ForeignKey automatically adds a dependency. ... ok 219s test_fk_dependency_other_app (migrations.test_autodetector.AutodetectorTests.test_fk_dependency_other_app) 219s #23100 - ForeignKeys correctly depend on other apps' models. ... ok 219s test_foreign_key_removed_before_target_model (migrations.test_autodetector.AutodetectorTests.test_foreign_key_removed_before_target_model) 219s Removing an FK and the model it targets in the same change must remove ... ok 219s test_identical_regex_doesnt_alter (migrations.test_autodetector.AutodetectorTests.test_identical_regex_doesnt_alter) ... ok 219s test_keep_db_table_with_model_change (migrations.test_autodetector.AutodetectorTests.test_keep_db_table_with_model_change) 219s Tests when model changes but db_table stays as-is, autodetector must not ... ok 219s test_last_dependency (migrations.test_autodetector.AutodetectorTests.test_last_dependency) 219s A dependency to an app with existing migrations uses the ... ok 219s test_m2m_w_through_multistep_remove (migrations.test_autodetector.AutodetectorTests.test_m2m_w_through_multistep_remove) 219s A model with a m2m field that specifies a "through" model cannot be ... ok 219s test_managed_to_unmanaged (migrations.test_autodetector.AutodetectorTests.test_managed_to_unmanaged) ... ok 219s test_many_to_many_changed_to_concrete_field (migrations.test_autodetector.AutodetectorTests.test_many_to_many_changed_to_concrete_field) 219s #23938 - Changing a ManyToManyField into a concrete field ... ok 219s test_many_to_many_removed_before_through_model (migrations.test_autodetector.AutodetectorTests.test_many_to_many_removed_before_through_model) 219s Removing a ManyToManyField and the "through" model in the same change ... ok 219s test_many_to_many_removed_before_through_model_2 (migrations.test_autodetector.AutodetectorTests.test_many_to_many_removed_before_through_model_2) 219s Removing a model that contains a ManyToManyField and the "through" model ... ok 219s test_mti_inheritance_model_removal (migrations.test_autodetector.AutodetectorTests.test_mti_inheritance_model_removal) ... ok 219s test_multiple_bases (migrations.test_autodetector.AutodetectorTests.test_multiple_bases) 219s Inheriting models doesn't move *_ptr fields into AddField operations. ... ok 219s test_nested_deconstructible_objects (migrations.test_autodetector.AutodetectorTests.test_nested_deconstructible_objects) 219s Nested deconstruction is applied recursively to the args/kwargs of ... ok 219s test_new_model (migrations.test_autodetector.AutodetectorTests.test_new_model) 219s Tests autodetection of new models. ... ok 219s test_non_circular_foreignkey_dependency_removal (migrations.test_autodetector.AutodetectorTests.test_non_circular_foreignkey_dependency_removal) 219s If two models with a ForeignKey from one to the other are removed at the ... ok 219s test_old_model (migrations.test_autodetector.AutodetectorTests.test_old_model) 219s Tests deletion of old models. ... ok 219s test_order_fields_indexes (migrations.test_autodetector.AutodetectorTests.test_order_fields_indexes) 219s Test change detection of reordering of fields in indexes. ... ok 219s test_parse_number (migrations.test_autodetector.AutodetectorTests.test_parse_number) ... ok 219s test_partly_alter_unique_together_decrease (migrations.test_autodetector.AutodetectorTests.test_partly_alter_unique_together_decrease) ... ok 219s test_partly_alter_unique_together_increase (migrations.test_autodetector.AutodetectorTests.test_partly_alter_unique_together_increase) ... ok 219s test_pk_fk_included (migrations.test_autodetector.AutodetectorTests.test_pk_fk_included) 219s A relation used as the primary key is kept as part of CreateModel. ... ok 219s test_proxy (migrations.test_autodetector.AutodetectorTests.test_proxy) 219s The autodetector correctly deals with proxy models. ... ok 219s test_proxy_bases_first (migrations.test_autodetector.AutodetectorTests.test_proxy_bases_first) 219s Bases of proxies come first. ... ok 219s test_proxy_custom_pk (migrations.test_autodetector.AutodetectorTests.test_proxy_custom_pk) 219s #23415 - The autodetector must correctly deal with custom FK on proxy ... ok 219s test_proxy_fk_dependency (migrations.test_autodetector.AutodetectorTests.test_proxy_fk_dependency) 219s FK dependencies still work on proxy models. ... ok 219s test_proxy_non_model_parent (migrations.test_autodetector.AutodetectorTests.test_proxy_non_model_parent) ... ok 219s test_proxy_to_mti_with_fk_to_proxy (migrations.test_autodetector.AutodetectorTests.test_proxy_to_mti_with_fk_to_proxy) ... ok 219s test_proxy_to_mti_with_fk_to_proxy_proxy (migrations.test_autodetector.AutodetectorTests.test_proxy_to_mti_with_fk_to_proxy_proxy) ... ok 219s test_remove_alter_order_with_respect_to (migrations.test_autodetector.AutodetectorTests.test_remove_alter_order_with_respect_to) 219s Removing order_with_respect_to when removing the FK too does ... ok 219s test_remove_constraints (migrations.test_autodetector.AutodetectorTests.test_remove_constraints) 219s Test change detection of removed constraints. ... ok 219s test_remove_field (migrations.test_autodetector.AutodetectorTests.test_remove_field) 219s Tests autodetection of removed fields. ... ok 219s test_remove_field_and_unique_together (migrations.test_autodetector.AutodetectorTests.test_remove_field_and_unique_together) 219s Removed fields will be removed after updating unique_together. ... ok 219s test_remove_indexes (migrations.test_autodetector.AutodetectorTests.test_remove_indexes) 219s Test change detection of removed indexes. ... ok 219s test_remove_unique_together (migrations.test_autodetector.AutodetectorTests.test_remove_unique_together) 219s Tests unique_together detection. ... ok 219s test_rename_field (migrations.test_autodetector.AutodetectorTests.test_rename_field) 219s Tests autodetection of renamed fields. ... ok 219s test_rename_field_and_unique_together (migrations.test_autodetector.AutodetectorTests.test_rename_field_and_unique_together) 219s Fields are renamed before updating unique_together. ... ok 219s test_rename_field_foreign_key_to_field (migrations.test_autodetector.AutodetectorTests.test_rename_field_foreign_key_to_field) ... ok 219s test_rename_field_preserved_db_column (migrations.test_autodetector.AutodetectorTests.test_rename_field_preserved_db_column) 219s RenameField is used if a field is renamed and db_column equal to the ... ok 219s test_rename_field_with_renamed_model (migrations.test_autodetector.AutodetectorTests.test_rename_field_with_renamed_model) ... ok 219s test_rename_foreign_object_fields (migrations.test_autodetector.AutodetectorTests.test_rename_foreign_object_fields) ... ok 219s test_rename_indexes (migrations.test_autodetector.AutodetectorTests.test_rename_indexes) ... ok 219s test_rename_m2m_through_model (migrations.test_autodetector.AutodetectorTests.test_rename_m2m_through_model) 219s Tests autodetection of renamed models that are used in M2M relations as ... ok 219s test_rename_model (migrations.test_autodetector.AutodetectorTests.test_rename_model) 219s Tests autodetection of renamed models. ... ok 219s test_rename_model_case (migrations.test_autodetector.AutodetectorTests.test_rename_model_case) 219s Model name is case-insensitive. Changing case doesn't lead to any ... ok 219s test_rename_model_reverse_relation_dependencies (migrations.test_autodetector.AutodetectorTests.test_rename_model_reverse_relation_dependencies) 219s The migration to rename a model pointed to by a foreign key in another ... ok 219s test_rename_model_with_fks_in_different_position (migrations.test_autodetector.AutodetectorTests.test_rename_model_with_fks_in_different_position) 219s #24537 - The order of fields in a model does not influence ... ok 219s test_rename_model_with_renamed_rel_field (migrations.test_autodetector.AutodetectorTests.test_rename_model_with_renamed_rel_field) 219s Tests autodetection of renamed models while simultaneously renaming one ... ok 219s test_rename_referenced_primary_key (migrations.test_autodetector.AutodetectorTests.test_rename_referenced_primary_key) ... ok 219s test_rename_related_field_preserved_db_column (migrations.test_autodetector.AutodetectorTests.test_rename_related_field_preserved_db_column) ... ok 219s test_renamed_referenced_m2m_model_case (migrations.test_autodetector.AutodetectorTests.test_renamed_referenced_m2m_model_case) ... ok 219s test_replace_string_with_foreignkey (migrations.test_autodetector.AutodetectorTests.test_replace_string_with_foreignkey) 219s #22300 - Adding an FK in the same "spot" as a deleted CharField should ... ok 219s test_same_app_circular_fk_dependency (migrations.test_autodetector.AutodetectorTests.test_same_app_circular_fk_dependency) 219s A migration with a FK between two models of the same app does ... ok 219s test_same_app_circular_fk_dependency_with_unique_together_and_indexes (migrations.test_autodetector.AutodetectorTests.test_same_app_circular_fk_dependency_with_unique_together_and_indexes) 219s #22275 - A migration with circular FK dependency does not try ... ok 219s test_same_app_no_fk_dependency (migrations.test_autodetector.AutodetectorTests.test_same_app_no_fk_dependency) 219s A migration with a FK between two models of the same app ... ok 219s test_set_alter_order_with_respect_to (migrations.test_autodetector.AutodetectorTests.test_set_alter_order_with_respect_to) 219s Setting order_with_respect_to adds a field. ... ok 219s test_set_alter_order_with_respect_to_index_constraint_unique_together (migrations.test_autodetector.AutodetectorTests.test_set_alter_order_with_respect_to_index_constraint_unique_together) ... ok 219s test_supports_functools_partial (migrations.test_autodetector.AutodetectorTests.test_supports_functools_partial) ... ok 219s test_swappable (migrations.test_autodetector.AutodetectorTests.test_swappable) ... ok 219s test_swappable_changed (migrations.test_autodetector.AutodetectorTests.test_swappable_changed) ... ok 219s test_swappable_circular_multi_mti (migrations.test_autodetector.AutodetectorTests.test_swappable_circular_multi_mti) ... ok 219s test_swappable_first_inheritance (migrations.test_autodetector.AutodetectorTests.test_swappable_first_inheritance) 219s Swappable models get their CreateModel first. ... ok 219s test_swappable_first_setting (migrations.test_autodetector.AutodetectorTests.test_swappable_first_setting) 219s Swappable models get their CreateModel first. ... ok 219s test_swappable_lowercase (migrations.test_autodetector.AutodetectorTests.test_swappable_lowercase) ... ok 219s test_swappable_many_to_many_model_case (migrations.test_autodetector.AutodetectorTests.test_swappable_many_to_many_model_case) ... ok 219s test_trim_apps (migrations.test_autodetector.AutodetectorTests.test_trim_apps) 219s Trim does not remove dependencies but does remove unwanted apps. ... ok 219s test_unique_together_no_changes (migrations.test_autodetector.AutodetectorTests.test_unique_together_no_changes) 219s unique_together doesn't generate a migration if no ... ok 219s test_unique_together_ordering (migrations.test_autodetector.AutodetectorTests.test_unique_together_ordering) 219s unique_together also triggers on ordering changes. ... ok 219s test_unique_together_remove_fk (migrations.test_autodetector.AutodetectorTests.test_unique_together_remove_fk) 219s Tests unique_together and field removal detection & ordering ... ok 219s test_unmanaged_create (migrations.test_autodetector.AutodetectorTests.test_unmanaged_create) 219s The autodetector correctly deals with managed models. ... ok 219s test_unmanaged_custom_pk (migrations.test_autodetector.AutodetectorTests.test_unmanaged_custom_pk) 219s #23415 - The autodetector must correctly deal with custom FK on ... ok 219s test_unmanaged_delete (migrations.test_autodetector.AutodetectorTests.test_unmanaged_delete) ... ok 219s test_unmanaged_to_managed (migrations.test_autodetector.AutodetectorTests.test_unmanaged_to_managed) ... ok 219s test_cascade_delete_proxy_model_admin_warning (proxy_models.tests.ProxyModelAdminTests.test_cascade_delete_proxy_model_admin_warning) 219s Test if admin gives warning about cascade deleting models referenced ... ok 219s test_delete_str_in_model_admin (proxy_models.tests.ProxyModelAdminTests.test_delete_str_in_model_admin) 219s Test if the admin delete page shows the correct string representation ... ok 220s test_abstract_base_with_model_fields (proxy_models.tests.ProxyModelTests.test_abstract_base_with_model_fields) ... ok 220s test_basic_proxy (proxy_models.tests.ProxyModelTests.test_basic_proxy) 220s Creating a Person makes them accessible through the MyPerson proxy. ... ok 220s test_basic_proxy_reverse (proxy_models.tests.ProxyModelTests.test_basic_proxy_reverse) 220s A new MyPerson also shows up as a standard Person. ... ok 220s test_concrete_model (proxy_models.tests.ProxyModelTests.test_concrete_model) ... ok 220s test_content_type (proxy_models.tests.ProxyModelTests.test_content_type) ... ok 220s test_correct_type_proxy_of_proxy (proxy_models.tests.ProxyModelTests.test_correct_type_proxy_of_proxy) 220s Correct type when querying a proxy of proxy ... ok 220s test_eq (proxy_models.tests.ProxyModelTests.test_eq) ... ok 220s test_filter_proxy_relation_reverse (proxy_models.tests.ProxyModelTests.test_filter_proxy_relation_reverse) ... ok 220s test_inheritance_new_table (proxy_models.tests.ProxyModelTests.test_inheritance_new_table) 220s The StatusPerson models should have its own table (it's using ORM-level ... ok 220s test_myperson_manager (proxy_models.tests.ProxyModelTests.test_myperson_manager) ... ok 220s test_new_fields (proxy_models.tests.ProxyModelTests.test_new_fields) ... ok 220s test_no_base_classes (proxy_models.tests.ProxyModelTests.test_no_base_classes) ... ok 220s test_no_proxy (proxy_models.tests.ProxyModelTests.test_no_proxy) 220s Person is not proxied by StatusPerson subclass. ... ok 220s test_otherperson_manager (proxy_models.tests.ProxyModelTests.test_otherperson_manager) ... ok 220s test_permissions_created (proxy_models.tests.ProxyModelTests.test_permissions_created) ... ok 220s test_proxy_bug (proxy_models.tests.ProxyModelTests.test_proxy_bug) ... ok 220s test_proxy_delete (proxy_models.tests.ProxyModelTests.test_proxy_delete) 220s Proxy objects can be deleted ... ok 220s test_proxy_for_model (proxy_models.tests.ProxyModelTests.test_proxy_for_model) ... ok 220s test_proxy_included_in_ancestors (proxy_models.tests.ProxyModelTests.test_proxy_included_in_ancestors) 220s Proxy models are included in the ancestors for a model's DoesNotExist ... ok 220s test_proxy_load_from_fixture (proxy_models.tests.ProxyModelTests.test_proxy_load_from_fixture) ... ok 220s test_proxy_model_signals (proxy_models.tests.ProxyModelTests.test_proxy_model_signals) 220s Test save signals for proxy models ... ok 220s test_proxy_update (proxy_models.tests.ProxyModelTests.test_proxy_update) ... ok 220s test_same_manager_queries (proxy_models.tests.ProxyModelTests.test_same_manager_queries) 220s The MyPerson model should be generating the same database queries as ... ok 220s test_select_related (proxy_models.tests.ProxyModelTests.test_select_related) 220s We can still use `select_related()` to include related models in our ... ok 220s test_select_related_only (proxy_models.tests.ProxyModelTests.test_select_related_only) ... ok 220s test_swappable (proxy_models.tests.ProxyModelTests.test_swappable) ... ok 220s test_too_many_concrete_classes (proxy_models.tests.ProxyModelTests.test_too_many_concrete_classes) ... ok 220s test_user_proxy_models (proxy_models.tests.ProxyModelTests.test_user_proxy_models) ... ok 221s test_allvaluesfieldlistfilter (admin_filters.tests.ListFiltersTests.test_allvaluesfieldlistfilter) ... ok 221s test_allvaluesfieldlistfilter_custom_qs (admin_filters.tests.ListFiltersTests.test_allvaluesfieldlistfilter_custom_qs) ... ok 221s test_booleanfieldlistfilter (admin_filters.tests.ListFiltersTests.test_booleanfieldlistfilter) ... ok 221s test_booleanfieldlistfilter_choices (admin_filters.tests.ListFiltersTests.test_booleanfieldlistfilter_choices) ... ok 221s test_booleanfieldlistfilter_tuple (admin_filters.tests.ListFiltersTests.test_booleanfieldlistfilter_tuple) ... ok 221s test_booleanfieldlistfilter_tuple_choices (admin_filters.tests.ListFiltersTests.test_booleanfieldlistfilter_tuple_choices) ... ok 221s test_choicesfieldlistfilter_has_none_choice (admin_filters.tests.ListFiltersTests.test_choicesfieldlistfilter_has_none_choice) 221s The last choice is for the None value. ... ok 221s test_datefieldlistfilter (admin_filters.tests.ListFiltersTests.test_datefieldlistfilter) ... ok 221s test_datefieldlistfilter_with_time_zone_support (admin_filters.tests.ListFiltersTests.test_datefieldlistfilter_with_time_zone_support) ... ok 221s test_emptylistfieldfilter (admin_filters.tests.ListFiltersTests.test_emptylistfieldfilter) ... ok 221s test_emptylistfieldfilter_choices (admin_filters.tests.ListFiltersTests.test_emptylistfieldfilter_choices) ... ok 221s test_emptylistfieldfilter_genericrelation (admin_filters.tests.ListFiltersTests.test_emptylistfieldfilter_genericrelation) ... ok 221s test_emptylistfieldfilter_invalid_lookup_parameters (admin_filters.tests.ListFiltersTests.test_emptylistfieldfilter_invalid_lookup_parameters) ... ok 221s test_emptylistfieldfilter_non_empty_field (admin_filters.tests.ListFiltersTests.test_emptylistfieldfilter_non_empty_field) ... ok 221s test_emptylistfieldfilter_reverse_relationships (admin_filters.tests.ListFiltersTests.test_emptylistfieldfilter_reverse_relationships) ... ok 221s test_fieldlistfilter_invalid_lookup_parameters (admin_filters.tests.ListFiltersTests.test_fieldlistfilter_invalid_lookup_parameters) 221s Filtering by an invalid value. ... ok 221s test_fieldlistfilter_underscorelookup_tuple (admin_filters.tests.ListFiltersTests.test_fieldlistfilter_underscorelookup_tuple) 221s Ensure ('fieldpath', ClassName ) lookups pass lookup_allowed checks ... ok 221s test_filter_with_failing_queryset (admin_filters.tests.ListFiltersTests.test_filter_with_failing_queryset) 221s When a filter's queryset method fails, it fails loudly and ... ok 221s test_fk_with_to_field (admin_filters.tests.ListFiltersTests.test_fk_with_to_field) 221s A filter on a FK respects the FK's to_field attribute (#17972). ... ok 221s test_list_filter_queryset_filtered_by_default (admin_filters.tests.ListFiltersTests.test_list_filter_queryset_filtered_by_default) 221s A list filter that filters the queryset by default gives the correct ... ok 221s test_listfilter_genericrelation (admin_filters.tests.ListFiltersTests.test_listfilter_genericrelation) ... ok 221s test_listfilter_without_title (admin_filters.tests.ListFiltersTests.test_listfilter_without_title) 221s Any filter must define a title. ... ok 221s test_lookup_using_custom_divider (admin_filters.tests.ListFiltersTests.test_lookup_using_custom_divider) 221s Filter __in lookups with a custom divider. ... ok 221s test_lookup_with_dynamic_value (admin_filters.tests.ListFiltersTests.test_lookup_with_dynamic_value) 221s Ensure SimpleListFilter can access self.value() inside the lookup. ... ok 221s test_lookup_with_non_string_value (admin_filters.tests.ListFiltersTests.test_lookup_with_non_string_value) 221s Ensure choices are set the selected class when using non-string values ... ok 221s test_lookup_with_non_string_value_underscored (admin_filters.tests.ListFiltersTests.test_lookup_with_non_string_value_underscored) 221s Ensure SimpleListFilter lookups pass lookup_allowed checks when ... ok 221s test_parameter_ends_with__in__or__isnull (admin_filters.tests.ListFiltersTests.test_parameter_ends_with__in__or__isnull) 221s A SimpleListFilter's parameter name is not mistaken for a model field ... ok 221s test_relatedfieldlistfilter_foreignkey (admin_filters.tests.ListFiltersTests.test_relatedfieldlistfilter_foreignkey) ... ok 221s test_relatedfieldlistfilter_foreignkey_default_ordering (admin_filters.tests.ListFiltersTests.test_relatedfieldlistfilter_foreignkey_default_ordering) 221s RelatedFieldListFilter ordering respects Model.ordering. ... ok 221s test_relatedfieldlistfilter_foreignkey_ordering (admin_filters.tests.ListFiltersTests.test_relatedfieldlistfilter_foreignkey_ordering) 221s RelatedFieldListFilter ordering respects ModelAdmin.ordering. ... ok 221s test_relatedfieldlistfilter_foreignkey_ordering_reverse (admin_filters.tests.ListFiltersTests.test_relatedfieldlistfilter_foreignkey_ordering_reverse) ... ok 221s test_relatedfieldlistfilter_manytomany (admin_filters.tests.ListFiltersTests.test_relatedfieldlistfilter_manytomany) ... ok 221s test_relatedfieldlistfilter_reverse_relationships (admin_filters.tests.ListFiltersTests.test_relatedfieldlistfilter_reverse_relationships) ... ok 221s test_relatedfieldlistfilter_reverse_relationships_default_ordering (admin_filters.tests.ListFiltersTests.test_relatedfieldlistfilter_reverse_relationships_default_ordering) ... ok 221s test_relatedonlyfieldlistfilter_foreignkey (admin_filters.tests.ListFiltersTests.test_relatedonlyfieldlistfilter_foreignkey) ... ok 221s test_relatedonlyfieldlistfilter_foreignkey_default_ordering (admin_filters.tests.ListFiltersTests.test_relatedonlyfieldlistfilter_foreignkey_default_ordering) 221s RelatedOnlyFieldListFilter ordering respects Meta.ordering. ... ok 221s test_relatedonlyfieldlistfilter_foreignkey_ordering (admin_filters.tests.ListFiltersTests.test_relatedonlyfieldlistfilter_foreignkey_ordering) 221s RelatedOnlyFieldListFilter ordering respects ModelAdmin.ordering. ... ok 221s test_relatedonlyfieldlistfilter_foreignkey_reverse_relationships (admin_filters.tests.ListFiltersTests.test_relatedonlyfieldlistfilter_foreignkey_reverse_relationships) ... ok 221s test_relatedonlyfieldlistfilter_manytomany (admin_filters.tests.ListFiltersTests.test_relatedonlyfieldlistfilter_manytomany) ... ok 221s test_relatedonlyfieldlistfilter_manytomany_reverse_relationships (admin_filters.tests.ListFiltersTests.test_relatedonlyfieldlistfilter_manytomany_reverse_relationships) ... ok 221s test_relatedonlyfieldlistfilter_underscorelookup_foreignkey (admin_filters.tests.ListFiltersTests.test_relatedonlyfieldlistfilter_underscorelookup_foreignkey) ... ok 221s test_simplelistfilter (admin_filters.tests.ListFiltersTests.test_simplelistfilter) ... ok 221s test_simplelistfilter_with_none_returning_lookups (admin_filters.tests.ListFiltersTests.test_simplelistfilter_with_none_returning_lookups) 221s A SimpleListFilter lookups method can return None but disables the ... ok 221s test_simplelistfilter_with_queryset_based_lookups (admin_filters.tests.ListFiltersTests.test_simplelistfilter_with_queryset_based_lookups) ... ok 221s test_simplelistfilter_without_parameter (admin_filters.tests.ListFiltersTests.test_simplelistfilter_without_parameter) 221s Any SimpleListFilter must define a parameter_name. ... ok 221s test_two_characters_long_field (admin_filters.tests.ListFiltersTests.test_two_characters_long_field) 221s list_filter works with two-characters long field names (#16080). ... ok 221s test_custom_named_field (sites_framework.tests.SitesFrameworkTestCase.test_custom_named_field) ... ok 221s test_site_fk (sites_framework.tests.SitesFrameworkTestCase.test_site_fk) ... ok 221s test_sites_m2m (sites_framework.tests.SitesFrameworkTestCase.test_sites_m2m) ... ok 221s test_force_update (force_insert_update.tests.ForceTests.test_force_update) ... ok 221s test_force_update_on_inherited_model (force_insert_update.tests.InheritanceTests.test_force_update_on_inherited_model) ... ok 221s test_force_update_on_inherited_model_without_fields (force_insert_update.tests.InheritanceTests.test_force_update_on_inherited_model_without_fields) 221s Issue 13864: force_update fails on subclassed models, if they don't ... ok 221s test_force_update_on_proxy_model (force_insert_update.tests.InheritanceTests.test_force_update_on_proxy_model) ... ok 221s test_copy_response (test_client.tests.ClientTest.test_copy_response) ... ok 221s test_copy_response_async (test_client.tests.ClientTest.test_copy_response_async) ... ok 221s test_empty_post (test_client.tests.ClientTest.test_empty_post) 221s POST an empty dictionary to a view ... ok 221s test_exc_info (test_client.tests.ClientTest.test_exc_info) ... ok 221s test_exc_info_none (test_client.tests.ClientTest.test_exc_info_none) ... ok 221s test_exception_following_nested_client_request (test_client.tests.ClientTest.test_exception_following_nested_client_request) 221s A nested test client request shouldn't clobber exception signals from ... ok 221s test_external_redirect (test_client.tests.ClientTest.test_external_redirect) ... ok 221s test_external_redirect_with_fetch_error_msg (test_client.tests.ClientTest.test_external_redirect_with_fetch_error_msg) 221s assertRedirects without fetch_redirect_response=False raises ... ok 221s test_external_redirect_without_trailing_slash (test_client.tests.ClientTest.test_external_redirect_without_trailing_slash) 221s Client._handle_redirects() with an empty path. ... ok 221s test_follow_307_and_308_get_head_query_string (test_client.tests.ClientTest.test_follow_307_and_308_get_head_query_string) ... ok 221s test_follow_307_and_308_preserves_get_params (test_client.tests.ClientTest.test_follow_307_and_308_preserves_get_params) ... ok 221s test_follow_307_and_308_preserves_post_data (test_client.tests.ClientTest.test_follow_307_and_308_preserves_post_data) ... ok 221s test_follow_307_and_308_preserves_put_body (test_client.tests.ClientTest.test_follow_307_and_308_preserves_put_body) ... ok 221s test_follow_307_and_308_preserves_query_string (test_client.tests.ClientTest.test_follow_307_and_308_preserves_query_string) ... ok 221s test_follow_307_and_308_redirect (test_client.tests.ClientTest.test_follow_307_and_308_redirect) 221s A 307 or 308 redirect preserves the request method after the redirect. ... ok 221s test_follow_redirect (test_client.tests.ClientTest.test_follow_redirect) 221s A URL that redirects can be followed to termination. ... ok 221s test_follow_relative_redirect (test_client.tests.ClientTest.test_follow_relative_redirect) 221s A URL with a relative redirect can be followed. ... ok 221s test_follow_relative_redirect_no_trailing_slash (test_client.tests.ClientTest.test_follow_relative_redirect_no_trailing_slash) 221s A URL with a relative redirect with no trailing slash can be followed. ... ok 221s test_force_login_with_backend (test_client.tests.ClientTest.test_force_login_with_backend) 221s Request a page that is protected with @login_required when using ... ok 221s test_force_login_with_backend_missing_get_user (test_client.tests.ClientTest.test_force_login_with_backend_missing_get_user) 221s force_login() skips auth backends without a get_user() method. ... ok 221s test_force_login_without_backend (test_client.tests.ClientTest.test_force_login_without_backend) 221s force_login() without passing a backend and with multiple backends ... ok 221s test_form_error (test_client.tests.ClientTest.test_form_error) 221s POST erroneous data to a form ... ok 221s test_form_error_with_template (test_client.tests.ClientTest.test_form_error_with_template) 221s POST erroneous data to a form using multiple templates ... ok 221s test_get_data_none (test_client.tests.ClientTest.test_get_data_none) ... ok 221s test_get_post_view (test_client.tests.ClientTest.test_get_post_view) 221s GET a view that normally expects POSTs ... ok 221s test_get_view (test_client.tests.ClientTest.test_get_view) 221s GET a view ... ok 221s test_incomplete_data_form (test_client.tests.ClientTest.test_incomplete_data_form) 221s POST incomplete data to a form ... ok 221s test_incomplete_data_form_with_template (test_client.tests.ClientTest.test_incomplete_data_form_with_template) 221s POST incomplete data to a form using multiple templates ... ok 221s test_insecure (test_client.tests.ClientTest.test_insecure) 221s GET a URL through http ... ok 221s test_json_encoder_argument (test_client.tests.ClientTest.test_json_encoder_argument) 221s The test Client accepts a json_encoder. ... ok 221s test_json_serialization (test_client.tests.ClientTest.test_json_serialization) 221s The test client serializes JSON data. ... ok 221s test_logout (test_client.tests.ClientTest.test_logout) 221s Request a logout after logging in ... ok 221s test_logout_cookie_sessions (test_client.tests.ClientTest.test_logout_cookie_sessions) ... ok 221s test_logout_with_force_login (test_client.tests.ClientTest.test_logout_with_force_login) 221s Request a logout after logging in ... ok 221s test_mail_sending (test_client.tests.ClientTest.test_mail_sending) 221s Mail is redirected to a dummy outbox during test setup ... ok 221s test_mass_mail_sending (test_client.tests.ClientTest.test_mass_mail_sending) 221s Mass mail is redirected to a dummy outbox during test setup ... ok 221s test_notfound_response (test_client.tests.ClientTest.test_notfound_response) 221s GET a URL that responds as '404:Not Found' ... ok 221s test_permanent_redirect (test_client.tests.ClientTest.test_permanent_redirect) 221s GET a URL that redirects permanently elsewhere ... ok 221s test_post (test_client.tests.ClientTest.test_post) 221s POST some data to a view ... ok 221s test_post_data_none (test_client.tests.ClientTest.test_post_data_none) ... ok 221s test_put (test_client.tests.ClientTest.test_put) ... ok 221s test_query_string_encoding (test_client.tests.ClientTest.test_query_string_encoding) ... ok 221s test_raw_post (test_client.tests.ClientTest.test_raw_post) 221s POST raw data (with a content type) to a view ... ok 221s test_redirect (test_client.tests.ClientTest.test_redirect) 221s GET a URL that redirects elsewhere ... ok 221s test_redirect_http (test_client.tests.ClientTest.test_redirect_http) 221s GET a URL that redirects to an HTTP URI. ... ok 221s test_redirect_https (test_client.tests.ClientTest.test_redirect_https) 221s GET a URL that redirects to an HTTPS URI. ... ok 221s test_redirect_to_querystring_only (test_client.tests.ClientTest.test_redirect_to_querystring_only) 221s A URL that consists of a querystring only can be followed ... ok 221s test_redirect_to_strange_location (test_client.tests.ClientTest.test_redirect_to_strange_location) 221s GET a URL that redirects to a non-200 page ... ok 221s test_redirect_with_query (test_client.tests.ClientTest.test_redirect_with_query) 221s GET a URL that redirects with given GET parameters ... ok 221s test_redirect_with_query_ordering (test_client.tests.ClientTest.test_redirect_with_query_ordering) 221s assertRedirects() ignores the order of query string parameters. ... ok 221s test_relative_redirect (test_client.tests.ClientTest.test_relative_redirect) ... ok 221s test_relative_redirect_no_trailing_slash (test_client.tests.ClientTest.test_relative_redirect_no_trailing_slash) ... ok 221s test_response_attached_request (test_client.tests.ClientTest.test_response_attached_request) 221s The returned response has a ``request`` attribute with the originating ... ok 221s test_response_headers (test_client.tests.ClientTest.test_response_headers) 221s Check the value of HTTP headers returned in a response ... ok 221s test_response_raises_multi_arg_exception (test_client.tests.ClientTest.test_response_raises_multi_arg_exception) 221s A request may raise an exception with more than one required arg. ... ok 221s test_response_resolver_match (test_client.tests.ClientTest.test_response_resolver_match) 221s The response contains a ResolverMatch instance. ... ok 221s test_response_resolver_match_class_based_view (test_client.tests.ClientTest.test_response_resolver_match_class_based_view) 221s The response ResolverMatch instance can be used to access the CBV view ... ok 221s test_response_resolver_match_middleware_urlconf (test_client.tests.ClientTest.test_response_resolver_match_middleware_urlconf) ... ok 221s test_response_resolver_match_redirect_follow (test_client.tests.ClientTest.test_response_resolver_match_redirect_follow) 221s The response ResolverMatch instance contains the correct ... ok 221s test_response_resolver_match_regular_view (test_client.tests.ClientTest.test_response_resolver_match_regular_view) 221s The response ResolverMatch instance contains the correct ... ok 221s test_reverse_lazy_decodes (test_client.tests.ClientTest.test_reverse_lazy_decodes) 221s reverse_lazy() works in the test client ... ok 221s test_secure (test_client.tests.ClientTest.test_secure) 221s GET a URL through https ... ok 221s test_session_engine_is_invalid (test_client.tests.ClientTest.test_session_engine_is_invalid) ... ok 221s test_session_modifying_view (test_client.tests.ClientTest.test_session_modifying_view) 221s Request a page that modifies the session ... ok 221s test_sessions_app_is_not_installed (test_client.tests.ClientTest.test_sessions_app_is_not_installed) ... ok 221s test_temporary_redirect (test_client.tests.ClientTest.test_temporary_redirect) 221s GET a URL that does a non-permanent redirect ... ok 221s test_trace (test_client.tests.ClientTest.test_trace) 221s TRACE a view ... ok 221s test_unknown_page (test_client.tests.ClientTest.test_unknown_page) 221s GET an invalid URL ... ok 221s test_uploading_named_temp_file (test_client.tests.ClientTest.test_uploading_named_temp_file) ... ok 221s test_uploading_temp_file (test_client.tests.ClientTest.test_uploading_temp_file) ... ok 221s test_url_parameters (test_client.tests.ClientTest.test_url_parameters) 221s Make sure that URL ;-parameters are not stripped. ... ok 221s test_valid_form (test_client.tests.ClientTest.test_valid_form) 221s POST valid data to a form ... ok 221s test_valid_form_with_hints (test_client.tests.ClientTest.test_valid_form_with_hints) 221s GET a form, providing hints in the GET data ... ok 221s test_valid_form_with_template (test_client.tests.ClientTest.test_valid_form_with_template) 221s POST valid data to a form using multiple templates ... ok 221s test_view_with_bad_login (test_client.tests.ClientTest.test_view_with_bad_login) 221s Request a page that is protected with @login, but use bad credentials ... ok 221s test_view_with_exception (test_client.tests.ClientTest.test_view_with_exception) 221s Request a page that is known to throw an error ... ok 221s test_view_with_force_login (test_client.tests.ClientTest.test_view_with_force_login) 221s Request a page that is protected with @login_required ... ok 221s test_view_with_force_login_and_custom_redirect (test_client.tests.ClientTest.test_view_with_force_login_and_custom_redirect) 221s Request a page that is protected with ... ok 221s test_view_with_inactive_force_login (test_client.tests.ClientTest.test_view_with_inactive_force_login) 221s Request a page that is protected with @login, but use an inactive login ... ok 221s test_view_with_inactive_login (test_client.tests.ClientTest.test_view_with_inactive_login) 221s An inactive user may login if the authenticate backend allows it. ... ok 221s test_view_with_login (test_client.tests.ClientTest.test_view_with_login) 221s Request a page that is protected with @login_required ... ok 221s test_view_with_login_and_custom_redirect (test_client.tests.ClientTest.test_view_with_login_and_custom_redirect) 221s Request a page that is protected with ... ok 221s test_view_with_login_when_sessions_app_is_not_installed (test_client.tests.ClientTest.test_view_with_login_when_sessions_app_is_not_installed) ... ok 221s test_view_with_method_force_login (test_client.tests.ClientTest.test_view_with_method_force_login) 221s Request a page that is protected with a @login_required method ... ok 221s test_view_with_method_login (test_client.tests.ClientTest.test_view_with_method_login) 221s Request a page that is protected with a @login_required method ... ok 221s test_view_with_method_permissions (test_client.tests.ClientTest.test_view_with_method_permissions) 221s Request a page that is protected with a @permission_required method ... ok 221s test_view_with_permissions (test_client.tests.ClientTest.test_view_with_permissions) 221s Request a page that is protected with @permission_required ... ok 221s test_view_with_permissions_exception (test_client.tests.ClientTest.test_view_with_permissions_exception) 221s Request a page that is protected with @permission_required but raises ... ok 221s test_existing_join_not_promoted (aggregation_regress.tests.JoinPromotionTests.test_existing_join_not_promoted) ... ok 221s test_non_nullable_fk_not_promoted (aggregation_regress.tests.JoinPromotionTests.test_non_nullable_fk_not_promoted) ... ok 221s test_ticket_21150 (aggregation_regress.tests.JoinPromotionTests.test_ticket_21150) ... ok 221s test_ticket_24748 (aggregation_regress.tests.SelfReferentialFKTests.test_ticket_24748) ... ok 221s test_clear_cached_generic_relation (contenttypes_tests.test_fields.GenericForeignKeyTests.test_clear_cached_generic_relation) ... ok 221s test_get_content_type_no_arguments (contenttypes_tests.test_fields.GenericForeignKeyTests.test_get_content_type_no_arguments) ... ok 221s test_get_object_cache_respects_deleted_objects (contenttypes_tests.test_fields.GenericForeignKeyTests.test_get_object_cache_respects_deleted_objects) ... ok 221s test_incorrect_get_prefetch_queryset_arguments (contenttypes_tests.test_fields.GenericForeignKeyTests.test_incorrect_get_prefetch_queryset_arguments) ... ok 221s test_str (contenttypes_tests.test_fields.GenericForeignKeyTests.test_str) ... ok 221s test_value_to_string (contenttypes_tests.test_fields.GenericRelationTests.test_value_to_string) ... ok 222s test_contenttypes_removed_for_apps_not_in_installed_apps (contenttypes_tests.test_management.RemoveStaleContentTypesTests.test_contenttypes_removed_for_apps_not_in_installed_apps) ... ok 222s test_contenttypes_removed_in_installed_apps_without_models (contenttypes_tests.test_management.RemoveStaleContentTypesTests.test_contenttypes_removed_in_installed_apps_without_models) ... ok 222s test_interactive_false (contenttypes_tests.test_management.RemoveStaleContentTypesTests.test_interactive_false) 222s non-interactive mode deletes stale content types. ... ok 222s test_interactive_true_with_dependent_objects (contenttypes_tests.test_management.RemoveStaleContentTypesTests.test_interactive_true_with_dependent_objects) 222s interactive mode (the default) deletes stale content types and warns of ... ok 222s test_interactive_true_without_dependent_objects (contenttypes_tests.test_management.RemoveStaleContentTypesTests.test_interactive_true_without_dependent_objects) 222s interactive mode deletes stale content types even if there aren't any ... ok 222s test_unavailable_content_type_model (contenttypes_tests.test_management.RemoveStaleContentTypesTests.test_unavailable_content_type_model) 222s A ContentType isn't created if the model isn't available. ... ok 222s test_multidb (contenttypes_tests.test_models.ContentTypesMultidbTests.test_multidb) 222s When using multiple databases, ContentType.objects.get_for_model() uses ... ok 223s test_aggregate (aggregation_regress.tests.AggregationTests.test_aggregate) ... ok 223s test_aggregate_and_annotate_duplicate_columns (aggregation_regress.tests.AggregationTests.test_aggregate_and_annotate_duplicate_columns) ... ok 223s test_aggregate_and_annotate_duplicate_columns_proxy (aggregation_regress.tests.AggregationTests.test_aggregate_and_annotate_duplicate_columns_proxy) ... ok 223s test_aggregate_and_annotate_duplicate_columns_unmanaged (aggregation_regress.tests.AggregationTests.test_aggregate_and_annotate_duplicate_columns_unmanaged) ... ok 223s test_aggregate_annotation (aggregation_regress.tests.AggregationTests.test_aggregate_annotation) ... ok 223s test_aggregate_duplicate_columns (aggregation_regress.tests.AggregationTests.test_aggregate_duplicate_columns) ... skipped "Database doesn't support feature(s): allows_group_by_selected_pks" 223s test_aggregate_duplicate_columns_only (aggregation_regress.tests.AggregationTests.test_aggregate_duplicate_columns_only) ... skipped "Database doesn't support feature(s): allows_group_by_selected_pks" 223s test_aggregate_duplicate_columns_select_related (aggregation_regress.tests.AggregationTests.test_aggregate_duplicate_columns_select_related) ... skipped "Database doesn't support feature(s): allows_group_by_selected_pks" 223s test_aggregate_fexpr (aggregation_regress.tests.AggregationTests.test_aggregate_fexpr) ... ok 223s test_aggregate_group_by_unseen_columns_unmanaged (aggregation_regress.tests.AggregationTests.test_aggregate_group_by_unseen_columns_unmanaged) ... ok 223s test_aggregate_on_relation (aggregation_regress.tests.AggregationTests.test_aggregate_on_relation) ... ok 223s test_aggregate_unmanaged_model_as_tables (aggregation_regress.tests.AggregationTests.test_aggregate_unmanaged_model_as_tables) ... skipped "Database doesn't support feature(s): allows_group_by_selected_pks" 223s test_aggregate_unmanaged_model_columns (aggregation_regress.tests.AggregationTests.test_aggregate_unmanaged_model_columns) 223s Unmanaged models are sometimes used to represent database views which ... skipped "Database doesn't support feature(s): allows_group_by_selected_pks" 223s test_aggregates_in_where_clause (aggregation_regress.tests.AggregationTests.test_aggregates_in_where_clause) 223s Regression test for #12822: DatabaseError: aggregates not allowed in ... ok 223s test_aggregates_in_where_clause_pre_eval (aggregation_regress.tests.AggregationTests.test_aggregates_in_where_clause_pre_eval) 223s Regression test for #12822: DatabaseError: aggregates not allowed in ... ok 223s test_aggregation_with_generic_reverse_relation (aggregation_regress.tests.AggregationTests.test_aggregation_with_generic_reverse_relation) 223s Regression test for #10870: Aggregates with joins ignore extra ... ok 223s test_allow_distinct (aggregation_regress.tests.AggregationTests.test_allow_distinct) ... ok 223s test_annotate_and_join (aggregation_regress.tests.AggregationTests.test_annotate_and_join) ... ok 223s test_annotate_distinct_aggregate (aggregation_regress.tests.AggregationTests.test_annotate_distinct_aggregate) ... ok 223s test_annotate_joins (aggregation_regress.tests.AggregationTests.test_annotate_joins) 223s The base table's join isn't promoted to LOUTER. This could ... ok 223s test_annotate_on_relation (aggregation_regress.tests.AggregationTests.test_annotate_on_relation) ... ok 223s test_annotate_reserved_word (aggregation_regress.tests.AggregationTests.test_annotate_reserved_word) 223s Regression #18333 - Ensure annotated column name is properly quoted. ... ok 223s test_annotate_values_list_flat (aggregation_regress.tests.AggregationTests.test_annotate_values_list_flat) 223s Find ages that are shared by at least two authors. ... ok 223s test_annotate_with_extra (aggregation_regress.tests.AggregationTests.test_annotate_with_extra) 223s Regression test for #11916: Extra params + aggregation creates ... ok 223s test_annotated_conditional_aggregate (aggregation_regress.tests.AggregationTests.test_annotated_conditional_aggregate) ... ok 223s test_annotation (aggregation_regress.tests.AggregationTests.test_annotation) ... ok 223s test_annotation_disjunction (aggregation_regress.tests.AggregationTests.test_annotation_disjunction) ... ok 223s test_annotation_with_value (aggregation_regress.tests.AggregationTests.test_annotation_with_value) ... ok 223s test_boolean_conversion (aggregation_regress.tests.AggregationTests.test_boolean_conversion) ... ok 223s test_conditional_aggregate (aggregation_regress.tests.AggregationTests.test_conditional_aggregate) ... ok 223s test_conditional_aggregate_on_complex_condition (aggregation_regress.tests.AggregationTests.test_conditional_aggregate_on_complex_condition) ... ok 223s test_db_col_table (aggregation_regress.tests.AggregationTests.test_db_col_table) ... ok 223s test_decimal_aggregate_annotation_filter (aggregation_regress.tests.AggregationTests.test_decimal_aggregate_annotation_filter) 223s Filtering on an aggregate annotation with Decimal values should work. ... ok 223s test_distinct_conditional_aggregate (aggregation_regress.tests.AggregationTests.test_distinct_conditional_aggregate) ... ok 223s test_duplicate_alias (aggregation_regress.tests.AggregationTests.test_duplicate_alias) ... ok 223s test_empty (aggregation_regress.tests.AggregationTests.test_empty) ... ok 223s test_empty_filter_aggregate (aggregation_regress.tests.AggregationTests.test_empty_filter_aggregate) ... ok 223s test_empty_filter_count (aggregation_regress.tests.AggregationTests.test_empty_filter_count) ... ok 223s test_f_expression_annotation (aggregation_regress.tests.AggregationTests.test_f_expression_annotation) ... ok 223s test_field_error (aggregation_regress.tests.AggregationTests.test_field_error) ... ok 223s test_field_name_conflict (aggregation_regress.tests.AggregationTests.test_field_name_conflict) ... ok 223s test_filter_aggregates_negated_and_connector (aggregation_regress.tests.AggregationTests.test_filter_aggregates_negated_and_connector) ... ok 223s test_filter_aggregates_negated_xor_connector (aggregation_regress.tests.AggregationTests.test_filter_aggregates_negated_xor_connector) ... ok 223s test_filter_aggregates_or_connector (aggregation_regress.tests.AggregationTests.test_filter_aggregates_or_connector) ... ok 223s test_filter_aggregates_xor_connector (aggregation_regress.tests.AggregationTests.test_filter_aggregates_xor_connector) ... ok 223s test_filtering_by_annotation_name (aggregation_regress.tests.AggregationTests.test_filtering_by_annotation_name) ... ok 223s test_fk_attname_conflict (aggregation_regress.tests.AggregationTests.test_fk_attname_conflict) ... ok 223s test_fobj_group_by (aggregation_regress.tests.AggregationTests.test_fobj_group_by) 223s An F() object referring to related column works correctly in group by. ... ok 223s test_having_group_by (aggregation_regress.tests.AggregationTests.test_having_group_by) ... ok 223s test_having_subquery_select (aggregation_regress.tests.AggregationTests.test_having_subquery_select) ... ok 223s test_m2m_name_conflict (aggregation_regress.tests.AggregationTests.test_m2m_name_conflict) ... ok 223s test_more (aggregation_regress.tests.AggregationTests.test_more) ... ok 223s test_more_more (aggregation_regress.tests.AggregationTests.test_more_more) ... ok 223s test_more_more_more (aggregation_regress.tests.AggregationTests.test_more_more_more) ... ok 223s test_name_expressions (aggregation_regress.tests.AggregationTests.test_name_expressions) ... ok 223s test_name_filters (aggregation_regress.tests.AggregationTests.test_name_filters) ... ok 223s test_negated_aggregation (aggregation_regress.tests.AggregationTests.test_negated_aggregation) ... ok 223s test_none_call_before_aggregate (aggregation_regress.tests.AggregationTests.test_none_call_before_aggregate) ... ok 223s test_pickle (aggregation_regress.tests.AggregationTests.test_pickle) ... ok 223s test_q_annotation_aggregate (aggregation_regress.tests.AggregationTests.test_q_annotation_aggregate) ... ok 223s test_quoting_aggregate_order_by (aggregation_regress.tests.AggregationTests.test_quoting_aggregate_order_by) ... ok 223s test_reverse_join_trimming (aggregation_regress.tests.AggregationTests.test_reverse_join_trimming) ... ok 223s test_reverse_relation_name_conflict (aggregation_regress.tests.AggregationTests.test_reverse_relation_name_conflict) ... ok 223s test_sliced_conditional_aggregate (aggregation_regress.tests.AggregationTests.test_sliced_conditional_aggregate) ... ok 223s test_stddev (aggregation_regress.tests.AggregationTests.test_stddev) ... ok 223s test_ticket_11293_q_immutable (aggregation_regress.tests.AggregationTests.test_ticket_11293_q_immutable) 223s Splitting a q object to parts for where/having doesn't alter ... ok 223s test_values_annotate_values (aggregation_regress.tests.AggregationTests.test_values_annotate_values) ... ok 223s test_values_list_annotation_args_ordering (aggregation_regress.tests.AggregationTests.test_values_list_annotation_args_ordering) 223s Annotate *args ordering should be preserved in values_list results. ... ok 223s test_values_queryset_non_conflict (aggregation_regress.tests.AggregationTests.test_values_queryset_non_conflict) ... ok 223s test_change_ordering (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_change_ordering) ... ok 223s test_database_routing (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_database_routing) ... ok 223s test_default_to_insertion_order (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_default_to_insertion_order) ... ok 223s test_delete_and_insert (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_delete_and_insert) ... ok 223s test_item_ordering (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_item_ordering) ... ok 223s test_previous_and_next_in_order (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_previous_and_next_in_order) ... ok 223s test_recursive_ordering (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_recursive_ordering) ... ok 223s test_set_order_unrelated_object (contenttypes_tests.test_order_with_respect_to.OrderWithRespectToGFKTests.test_set_order_unrelated_object) 223s An answer that's not related isn't updated. ... ok 223s test_shortcut_view_with_null_site_fk (contenttypes_tests.test_views.ContentTypesViewsSiteRelTests.test_shortcut_view_with_null_site_fk) 223s The shortcut view works if a model's ForeignKey to site is None. ... ok 223s test_shortcut_view_with_site_m2m (contenttypes_tests.test_views.ContentTypesViewsSiteRelTests.test_shortcut_view_with_site_m2m) 223s When the object has a ManyToManyField to Site, redirect to the current ... ok 223s test_bad_content_type (contenttypes_tests.test_views.ContentTypesViewsTests.test_bad_content_type) ... ok 223s test_nonint_content_type (contenttypes_tests.test_views.ContentTypesViewsTests.test_nonint_content_type) ... ok 223s test_shortcut_bad_pk (contenttypes_tests.test_views.ContentTypesViewsTests.test_shortcut_bad_pk) ... ok 223s test_shortcut_no_absolute_url (contenttypes_tests.test_views.ContentTypesViewsTests.test_shortcut_no_absolute_url) 223s Shortcuts for an object that has no get_absolute_url() method raise ... ok 223s test_shortcut_with_absolute_url (contenttypes_tests.test_views.ContentTypesViewsTests.test_shortcut_with_absolute_url) 223s Can view a shortcut for an Author object that has a get_absolute_url method ... ok 223s test_shortcut_with_absolute_url_including_scheme (contenttypes_tests.test_views.ContentTypesViewsTests.test_shortcut_with_absolute_url_including_scheme) 223s Can view a shortcut when object's get_absolute_url returns a full URL ... ok 223s test_wrong_type_pk (contenttypes_tests.test_views.ContentTypesViewsTests.test_wrong_type_pk) ... ok 223s test_app_labeled_name (contenttypes_tests.test_models.ContentTypesTests.test_app_labeled_name) ... ok 223s test_app_labeled_name_unknown_model (contenttypes_tests.test_models.ContentTypesTests.test_app_labeled_name_unknown_model) ... ok 223s test_cache_not_shared_between_managers (contenttypes_tests.test_models.ContentTypesTests.test_cache_not_shared_between_managers) ... ok 223s test_get_for_concrete_model (contenttypes_tests.test_models.ContentTypesTests.test_get_for_concrete_model) 223s Make sure the `for_concrete_model` kwarg correctly works ... ok 223s test_get_for_concrete_models (contenttypes_tests.test_models.ContentTypesTests.test_get_for_concrete_models) 223s Make sure the `for_concrete_models` kwarg correctly works ... ok 223s test_get_for_model_create_contenttype (contenttypes_tests.test_models.ContentTypesTests.test_get_for_model_create_contenttype) 223s ContentTypeManager.get_for_model() creates the corresponding content ... ok 223s test_get_for_models_creation (contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_creation) ... ok 223s test_get_for_models_empty_cache (contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_empty_cache) ... ok 223s test_get_for_models_full_cache (contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_full_cache) ... ok 223s test_get_for_models_migrations (contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_migrations) ... ok 223s test_get_for_models_partial_cache (contenttypes_tests.test_models.ContentTypesTests.test_get_for_models_partial_cache) ... ok 223s test_lookup_cache (contenttypes_tests.test_models.ContentTypesTests.test_lookup_cache) 223s The content type cache (see ContentTypeManager) works correctly. ... ok 223s test_missing_model (contenttypes_tests.test_models.ContentTypesTests.test_missing_model) 223s Displaying content types in admin (or anywhere) doesn't break on ... ok 223s test_missing_model_with_existing_model_name (contenttypes_tests.test_models.ContentTypesTests.test_missing_model_with_existing_model_name) 223s Displaying content types in admin (or anywhere) doesn't break on ... ok 223s test_name (contenttypes_tests.test_models.ContentTypesTests.test_name) ... ok 223s test_name_unknown_model (contenttypes_tests.test_models.ContentTypesTests.test_name_unknown_model) ... ok 223s test_str (contenttypes_tests.test_models.ContentTypesTests.test_str) ... ok 223s test_model_with_broken_get_absolute_url (contenttypes_tests.test_views.ShortcutViewTests.test_model_with_broken_get_absolute_url) 223s The view doesn't catch an AttributeError raised by ... ok 223s test_model_without_get_absolute_url (contenttypes_tests.test_views.ShortcutViewTests.test_model_without_get_absolute_url) 223s The view returns 404 when Model.get_absolute_url() isn't defined. ... ok 223s test_not_dependent_on_sites_app (contenttypes_tests.test_views.ShortcutViewTests.test_not_dependent_on_sites_app) 223s The view returns a complete URL regardless of whether the sites ... ok 223s test_deletion_through_intermediate_proxy (proxy_model_inheritance.tests.MultiTableInheritanceProxyTest.test_deletion_through_intermediate_proxy) ... ok 223s test_model_subclass_proxy (proxy_model_inheritance.tests.MultiTableInheritanceProxyTest.test_model_subclass_proxy) 223s Deleting an instance of a model proxying a multi-table inherited ... ok 223s test_build_attrs (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_build_attrs) ... ok 223s test_build_attrs_no_custom_class (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_build_attrs_no_custom_class) ... ok 223s test_build_attrs_not_required_field (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_build_attrs_not_required_field) ... ok 223s test_build_attrs_required_field (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_build_attrs_required_field) ... ok 223s test_get_url (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_get_url) ... ok 224s test_media (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_media) ... ok 224s test_render_options (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_render_options) ... ok 224s test_render_options_fk_as_pk (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_render_options_fk_as_pk) ... ok 224s test_render_options_not_required_field (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_render_options_not_required_field) 224s Empty option isn't present if the field isn't required. ... ok 224s test_render_options_required_field (admin_widgets.test_autocomplete_widget.AutocompleteMixinTests.test_render_options_required_field) 224s Empty option is present if the field isn't required. ... ok 224s test_add_with_GET_args (admin_custom_urls.tests.AdminCustomUrlsTest.test_add_with_GET_args) 224s Ensure GET on the add_view plus specifying a field value in the query ... ok 224s test_admin_URLs_no_clash (admin_custom_urls.tests.AdminCustomUrlsTest.test_admin_URLs_no_clash) ... ok 224s test_basic_add_GET (admin_custom_urls.tests.AdminCustomUrlsTest.test_basic_add_GET) 224s Ensure GET on the add_view works. ... ok 224s test_basic_add_POST (admin_custom_urls.tests.AdminCustomUrlsTest.test_basic_add_POST) 224s Ensure POST on add_view works. ... ok 224s test_post_save_add_redirect (admin_custom_urls.tests.AdminCustomUrlsTest.test_post_save_add_redirect) 224s ModelAdmin.response_post_save_add() controls the redirection after ... ok 224s test_post_save_change_redirect (admin_custom_urls.tests.AdminCustomUrlsTest.test_post_save_change_redirect) 224s ModelAdmin.response_post_save_change() controls the redirection after ... ok 224s test_post_url_continue (admin_custom_urls.tests.AdminCustomUrlsTest.test_post_url_continue) 224s The ModelAdmin.response_add()'s parameter `post_url_continue` controls ... ok 224s test_readonly_fields (admin_widgets.tests.AdminFileWidgetTests.test_readonly_fields) 224s File widgets should render as a link when they're marked "read only." ... ok 224s test_render (admin_widgets.tests.AdminFileWidgetTests.test_render) ... ok 224s test_render_disabled (admin_widgets.tests.AdminFileWidgetTests.test_render_disabled) ... ok 224s test_render_required (admin_widgets.tests.AdminFileWidgetTests.test_render_required) ... ok 224s test_changelist_ForeignKey (admin_widgets.tests.AdminForeignKeyWidgetChangeList.test_changelist_ForeignKey) ... ok 224s test_filter_choices_by_request_user (admin_widgets.tests.AdminFormfieldForDBFieldWithRequestTests.test_filter_choices_by_request_user) 224s Ensure the user can only see their own cars in the foreign key dropdown. ... ok 224s test_invalid_target_id (admin_widgets.tests.AdminForeignKeyRawIdWidget.test_invalid_target_id) ... ok 224s test_label_and_url_for_value_invalid_uuid (admin_widgets.tests.AdminForeignKeyRawIdWidget.test_label_and_url_for_value_invalid_uuid) ... ok 224s test_nonexistent_target_id (admin_widgets.tests.AdminForeignKeyRawIdWidget.test_nonexistent_target_id) ... ok 224s test_url_params_from_lookup_dict_any_iterable (admin_widgets.tests.AdminForeignKeyRawIdWidget.test_url_params_from_lookup_dict_any_iterable) ... ok 224s test_url_params_from_lookup_dict_callable (admin_widgets.tests.AdminForeignKeyRawIdWidget.test_url_params_from_lookup_dict_callable) ... ok 224s test_m2m_related_model_not_in_admin (admin_widgets.tests.ManyToManyRawIdWidgetTest.test_m2m_related_model_not_in_admin) ... ok 224s test_render (admin_widgets.tests.ManyToManyRawIdWidgetTest.test_render) ... ok 224s test_fk_related_model_not_in_admin (admin_widgets.tests.ForeignKeyRawIdWidgetTest.test_fk_related_model_not_in_admin) ... ok 224s test_fk_to_self_model_not_in_admin (admin_widgets.tests.ForeignKeyRawIdWidgetTest.test_fk_to_self_model_not_in_admin) ... ok 224s test_proper_manager_for_label_lookup (admin_widgets.tests.ForeignKeyRawIdWidgetTest.test_proper_manager_for_label_lookup) ... ok 224s test_relations_to_non_primary_key (admin_widgets.tests.ForeignKeyRawIdWidgetTest.test_relations_to_non_primary_key) ... ok 224s test_render (admin_widgets.tests.ForeignKeyRawIdWidgetTest.test_render) ... ok 224s test_render_fk_as_pk_model (admin_widgets.tests.ForeignKeyRawIdWidgetTest.test_render_fk_as_pk_model) ... ok 224s test_render_unsafe_limit_choices_to (admin_widgets.tests.ForeignKeyRawIdWidgetTest.test_render_unsafe_limit_choices_to) ... ok 224s test_fast_delete_aggregation (delete.tests.FastDeleteTests.test_fast_delete_aggregation) ... ok 224s test_fast_delete_all (delete.tests.FastDeleteTests.test_fast_delete_all) ... ok 224s test_fast_delete_combined_relationships (delete.tests.FastDeleteTests.test_fast_delete_combined_relationships) ... ok 224s test_fast_delete_empty_no_update_can_self_select (delete.tests.FastDeleteTests.test_fast_delete_empty_no_update_can_self_select) 224s Fast deleting when DatabaseFeatures.update_can_self_select = False ... ok 224s test_fast_delete_fk (delete.tests.FastDeleteTests.test_fast_delete_fk) ... ok 224s test_fast_delete_full_match (delete.tests.FastDeleteTests.test_fast_delete_full_match) ... ok 224s test_fast_delete_inheritance (delete.tests.FastDeleteTests.test_fast_delete_inheritance) ... ok 224s test_fast_delete_instance_set_pk_none (delete.tests.FastDeleteTests.test_fast_delete_instance_set_pk_none) ... ok 224s test_fast_delete_joined_qs (delete.tests.FastDeleteTests.test_fast_delete_joined_qs) ... ok 224s test_fast_delete_large_batch (delete.tests.FastDeleteTests.test_fast_delete_large_batch) ... ok 224s test_fast_delete_m2m (delete.tests.FastDeleteTests.test_fast_delete_m2m) ... ok 224s test_fast_delete_qs (delete.tests.FastDeleteTests.test_fast_delete_qs) ... ok 224s test_fast_delete_revm2m (delete.tests.FastDeleteTests.test_fast_delete_revm2m) ... ok 225s test_bulk (delete.tests.DeletionTests.test_bulk) ... ok 225s test_can_defer_constraint_checks (delete.tests.DeletionTests.test_can_defer_constraint_checks) ... ok 225s test_cannot_defer_constraint_checks (delete.tests.DeletionTests.test_cannot_defer_constraint_checks) ... skipped 'Database has feature(s) can_defer_constraint_checks' 225s test_delete_with_keeping_parents (delete.tests.DeletionTests.test_delete_with_keeping_parents) ... ok 225s test_delete_with_keeping_parents_relationships (delete.tests.DeletionTests.test_delete_with_keeping_parents_relationships) ... ok 225s test_deletion_order (delete.tests.DeletionTests.test_deletion_order) ... ok 225s test_hidden_related (delete.tests.DeletionTests.test_hidden_related) ... ok 225s test_instance_update (delete.tests.DeletionTests.test_instance_update) ... ok 225s test_large_delete (delete.tests.DeletionTests.test_large_delete) ... ok 225s test_large_delete_related (delete.tests.DeletionTests.test_large_delete_related) ... ok 225s test_m2m (delete.tests.DeletionTests.test_m2m) ... ok 225s test_model_delete_returns_num_rows (delete.tests.DeletionTests.test_model_delete_returns_num_rows) 225s Model.delete() should return the number of deleted rows and a ... ok 225s test_only_referenced_fields_selected (delete.tests.DeletionTests.test_only_referenced_fields_selected) 225s Only referenced fields are selected during cascade deletion SELECT ... ok 225s test_pk_none (delete.tests.DeletionTests.test_pk_none) ... ok 225s test_proxied_model_duplicate_queries (delete.tests.DeletionTests.test_proxied_model_duplicate_queries) 225s #25685 - Deleting instances of a model with existing proxy ... ok 225s test_queryset_delete_returns_num_rows (delete.tests.DeletionTests.test_queryset_delete_returns_num_rows) 225s QuerySet.delete() should return the number of deleted rows and a ... ok 225s test_relational_post_delete_signals_happen_before_parent_object (delete.tests.DeletionTests.test_relational_post_delete_signals_happen_before_parent_object) ... ok 225s test_sliced_queryset (delete.tests.DeletionTests.test_sliced_queryset) ... ok 225s test_abstract_manager (managers_regress.tests.ManagersRegressionTests.test_abstract_manager) ... ok 225s test_custom_abstract_manager (managers_regress.tests.ManagersRegressionTests.test_custom_abstract_manager) ... ok 225s test_custom_swappable_manager (managers_regress.tests.ManagersRegressionTests.test_custom_swappable_manager) ... ok 225s test_explicit_abstract_manager (managers_regress.tests.ManagersRegressionTests.test_explicit_abstract_manager) ... ok 225s test_explicit_swappable_manager (managers_regress.tests.ManagersRegressionTests.test_explicit_swappable_manager) ... ok 225s test_field_can_be_called_exact (managers_regress.tests.ManagersRegressionTests.test_field_can_be_called_exact) ... ok 225s test_managers (managers_regress.tests.ManagersRegressionTests.test_managers) ... ok 225s test_regress_3871 (managers_regress.tests.ManagersRegressionTests.test_regress_3871) ... ok 225s test_swappable_manager (managers_regress.tests.ManagersRegressionTests.test_swappable_manager) ... ok 225s test_get (custom_pk.tests.BasicCustomPKTests.test_get) 225s Get can accept pk or the real attribute name ... ok 225s test_in_bulk (custom_pk.tests.BasicCustomPKTests.test_in_bulk) 225s Custom pks work with in_bulk, both for integer and non-integer types ... ok 225s test_pk_attributes (custom_pk.tests.BasicCustomPKTests.test_pk_attributes) 225s pk and attribute name are available on the model ... ok 225s test_querysets (custom_pk.tests.BasicCustomPKTests.test_querysets) 225s Both pk and custom attribute_name can be used in filter and friends ... ok 225s test_querysets_related_name (custom_pk.tests.BasicCustomPKTests.test_querysets_related_name) 225s Custom pk doesn't affect related_name based lookups ... ok 225s test_querysets_relational (custom_pk.tests.BasicCustomPKTests.test_querysets_relational) 225s Queries across tables, involving primary key ... ok 225s test_save (custom_pk.tests.BasicCustomPKTests.test_save) 225s custom pks do not affect save ... ok 225s test_auto (delete.tests.OnDeleteTests.test_auto) ... ok 225s test_auto_nullable (delete.tests.OnDeleteTests.test_auto_nullable) ... ok 225s test_cascade (delete.tests.OnDeleteTests.test_cascade) ... ok 225s test_cascade_from_child (delete.tests.OnDeleteTests.test_cascade_from_child) ... ok 225s test_cascade_from_parent (delete.tests.OnDeleteTests.test_cascade_from_parent) ... ok 225s test_cascade_nullable (delete.tests.OnDeleteTests.test_cascade_nullable) ... ok 225s test_do_nothing (delete.tests.OnDeleteTests.test_do_nothing) ... ok 225s test_do_nothing_qscount (delete.tests.OnDeleteTests.test_do_nothing_qscount) 225s A models.DO_NOTHING relation doesn't trigger a query. ... ok 225s test_inheritance_cascade_down (delete.tests.OnDeleteTests.test_inheritance_cascade_down) ... ok 225s test_inheritance_cascade_up (delete.tests.OnDeleteTests.test_inheritance_cascade_up) ... ok 225s test_non_callable (delete.tests.OnDeleteTests.test_non_callable) ... ok 225s test_o2o_setnull (delete.tests.OnDeleteTests.test_o2o_setnull) ... ok 225s test_protect (delete.tests.OnDeleteTests.test_protect) ... ok 225s test_protect_multiple (delete.tests.OnDeleteTests.test_protect_multiple) ... ok 225s test_protect_path (delete.tests.OnDeleteTests.test_protect_path) ... ok 225s test_restrict (delete.tests.OnDeleteTests.test_restrict) ... ok 225s test_restrict_gfk_no_fast_delete (delete.tests.OnDeleteTests.test_restrict_gfk_no_fast_delete) ... ok 225s test_restrict_multiple (delete.tests.OnDeleteTests.test_restrict_multiple) ... ok 225s test_restrict_path_cascade_direct (delete.tests.OnDeleteTests.test_restrict_path_cascade_direct) ... ok 225s test_restrict_path_cascade_indirect (delete.tests.OnDeleteTests.test_restrict_path_cascade_indirect) ... ok 225s test_restrict_path_cascade_indirect_diamond (delete.tests.OnDeleteTests.test_restrict_path_cascade_indirect_diamond) ... ok 225s test_setdefault (delete.tests.OnDeleteTests.test_setdefault) ... ok 225s test_setdefault_none (delete.tests.OnDeleteTests.test_setdefault_none) ... ok 225s test_setnull (delete.tests.OnDeleteTests.test_setnull) ... ok 225s test_setnull_from_child (delete.tests.OnDeleteTests.test_setnull_from_child) ... ok 225s test_setnull_from_parent (delete.tests.OnDeleteTests.test_setnull_from_parent) ... ok 225s test_setvalue (delete.tests.OnDeleteTests.test_setvalue) ... ok 225s test_auto_field_subclass_bulk_create (custom_pk.tests.CustomPKTests.test_auto_field_subclass_bulk_create) ... ok 225s test_auto_field_subclass_create (custom_pk.tests.CustomPKTests.test_auto_field_subclass_create) ... ok 225s test_custom_field_pk (custom_pk.tests.CustomPKTests.test_custom_field_pk) ... ok 225s test_custom_pk_create (custom_pk.tests.CustomPKTests.test_custom_pk_create) 225s New objects can be created both with pk and the custom name ... ok 225s test_required_pk (custom_pk.tests.CustomPKTests.test_required_pk) ... skipped 'Database has feature(s) supports_unspecified_pk' 225s test_unicode_pk (custom_pk.tests.CustomPKTests.test_unicode_pk) ... ok 225s test_unique_pk (custom_pk.tests.CustomPKTests.test_unique_pk) ... ok 225s test_zero_non_autoincrement_pk (custom_pk.tests.CustomPKTests.test_zero_non_autoincrement_pk) ... ok 226s test_actual_expiry (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_actual_expiry) ... ok 226s test_clear (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_clear) ... ok 226s test_custom_expiry_datetime (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_custom_expiry_datetime) ... ok 226s test_custom_expiry_reset (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_custom_expiry_reset) ... ok 226s test_custom_expiry_seconds (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_custom_expiry_seconds) ... ok 226s test_custom_expiry_timedelta (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_custom_expiry_timedelta) ... ok 226s test_cycle (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_cycle) ... ok 226s test_cycle_with_no_session_cache (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_cycle_with_no_session_cache) ... ok 226s test_decode (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_decode) ... ok 226s test_decode_failure_logged_to_security (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_decode_failure_logged_to_security) ... ok 226s test_decode_serializer_exception (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_decode_serializer_exception) ... ok 226s test_default_expiry (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_default_expiry) ... ok 226s test_delete (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_delete) ... ok 226s test_exists_searches_cache_first (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_exists_searches_cache_first) ... ok 226s test_flush (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_flush) ... ok 226s test_get_empty (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_get_empty) ... ok 226s test_get_expire_at_browser_close (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_get_expire_at_browser_close) ... ok 226s test_has_key (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_has_key) ... ok 226s test_invalid_key (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_invalid_key) ... ok 226s test_items (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_items) ... ok 226s test_keys (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_keys) ... ok 226s test_load_overlong_key (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_load_overlong_key) ... ok 226s test_new_session (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_new_session) ... ok 226s test_non_default_cache (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_non_default_cache) ... ok 226s test_pop (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_pop) ... ok 226s test_pop_default (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_pop_default) ... ok 226s test_pop_default_named_argument (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_pop_default_named_argument) ... ok 226s test_pop_no_default_keyerror_raised (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_pop_no_default_keyerror_raised) ... ok 226s test_save (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_save) ... ok 226s test_save_doesnt_clear_data (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_save_doesnt_clear_data) ... ok 226s test_session_key_empty_string_invalid (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_session_key_empty_string_invalid) 226s Falsey values (Such as an empty string) are rejected. ... ok 226s test_session_key_is_read_only (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_session_key_is_read_only) ... ok 226s test_session_key_too_short_invalid (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_session_key_too_short_invalid) 226s Strings shorter than 8 characters are rejected. ... ok 226s test_session_key_valid_string_saved (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_session_key_valid_string_saved) 226s Strings of length 8 and up are accepted and stored. ... ok 226s test_session_load_does_not_create_record (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_session_load_does_not_create_record) 226s Loading an unknown session key does not create a session record. ... ok 226s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 226s Sessions shouldn't be resurrected by a concurrent request. ... ok 226s test_setdefault (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_setdefault) ... ok 226s test_store (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_store) ... ok 226s test_update (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_update) ... ok 226s test_values (sessions_tests.tests.CacheDBSessionWithTimeZoneTests.test_values) ... ok 226s test_actual_expiry (sessions_tests.tests.CacheDBSessionTests.test_actual_expiry) ... ok 226s test_clear (sessions_tests.tests.CacheDBSessionTests.test_clear) ... ok 226s test_custom_expiry_datetime (sessions_tests.tests.CacheDBSessionTests.test_custom_expiry_datetime) ... ok 226s test_custom_expiry_reset (sessions_tests.tests.CacheDBSessionTests.test_custom_expiry_reset) ... ok 226s test_custom_expiry_seconds (sessions_tests.tests.CacheDBSessionTests.test_custom_expiry_seconds) ... ok 226s test_custom_expiry_timedelta (sessions_tests.tests.CacheDBSessionTests.test_custom_expiry_timedelta) ... ok 226s test_cycle (sessions_tests.tests.CacheDBSessionTests.test_cycle) ... ok 226s test_cycle_with_no_session_cache (sessions_tests.tests.CacheDBSessionTests.test_cycle_with_no_session_cache) ... ok 226s test_decode (sessions_tests.tests.CacheDBSessionTests.test_decode) ... ok 226s test_decode_failure_logged_to_security (sessions_tests.tests.CacheDBSessionTests.test_decode_failure_logged_to_security) ... ok 226s test_decode_serializer_exception (sessions_tests.tests.CacheDBSessionTests.test_decode_serializer_exception) ... ok 226s test_default_expiry (sessions_tests.tests.CacheDBSessionTests.test_default_expiry) ... ok 226s test_delete (sessions_tests.tests.CacheDBSessionTests.test_delete) ... ok 226s test_exists_searches_cache_first (sessions_tests.tests.CacheDBSessionTests.test_exists_searches_cache_first) ... ok 226s test_flush (sessions_tests.tests.CacheDBSessionTests.test_flush) ... ok 226s test_get_empty (sessions_tests.tests.CacheDBSessionTests.test_get_empty) ... ok 226s test_get_expire_at_browser_close (sessions_tests.tests.CacheDBSessionTests.test_get_expire_at_browser_close) ... ok 226s test_has_key (sessions_tests.tests.CacheDBSessionTests.test_has_key) ... ok 226s test_invalid_key (sessions_tests.tests.CacheDBSessionTests.test_invalid_key) ... ok 226s test_items (sessions_tests.tests.CacheDBSessionTests.test_items) ... ok 226s test_keys (sessions_tests.tests.CacheDBSessionTests.test_keys) ... ok 226s test_load_overlong_key (sessions_tests.tests.CacheDBSessionTests.test_load_overlong_key) ... ok 226s test_new_session (sessions_tests.tests.CacheDBSessionTests.test_new_session) ... ok 226s test_non_default_cache (sessions_tests.tests.CacheDBSessionTests.test_non_default_cache) ... ok 226s test_pop (sessions_tests.tests.CacheDBSessionTests.test_pop) ... ok 226s test_pop_default (sessions_tests.tests.CacheDBSessionTests.test_pop_default) ... ok 226s test_pop_default_named_argument (sessions_tests.tests.CacheDBSessionTests.test_pop_default_named_argument) ... ok 226s test_pop_no_default_keyerror_raised (sessions_tests.tests.CacheDBSessionTests.test_pop_no_default_keyerror_raised) ... ok 226s test_save (sessions_tests.tests.CacheDBSessionTests.test_save) ... ok 226s test_save_doesnt_clear_data (sessions_tests.tests.CacheDBSessionTests.test_save_doesnt_clear_data) ... ok 226s test_session_key_empty_string_invalid (sessions_tests.tests.CacheDBSessionTests.test_session_key_empty_string_invalid) 226s Falsey values (Such as an empty string) are rejected. ... ok 226s test_session_key_is_read_only (sessions_tests.tests.CacheDBSessionTests.test_session_key_is_read_only) ... ok 226s test_session_key_too_short_invalid (sessions_tests.tests.CacheDBSessionTests.test_session_key_too_short_invalid) 226s Strings shorter than 8 characters are rejected. ... ok 226s test_session_key_valid_string_saved (sessions_tests.tests.CacheDBSessionTests.test_session_key_valid_string_saved) 226s Strings of length 8 and up are accepted and stored. ... ok 226s test_session_load_does_not_create_record (sessions_tests.tests.CacheDBSessionTests.test_session_load_does_not_create_record) 226s Loading an unknown session key does not create a session record. ... ok 226s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.CacheDBSessionTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 226s Sessions shouldn't be resurrected by a concurrent request. ... ok 226s test_setdefault (sessions_tests.tests.CacheDBSessionTests.test_setdefault) ... ok 226s test_store (sessions_tests.tests.CacheDBSessionTests.test_store) ... ok 226s test_update (sessions_tests.tests.CacheDBSessionTests.test_update) ... ok 226s test_values (sessions_tests.tests.CacheDBSessionTests.test_values) ... ok 227s test_actual_expiry (sessions_tests.tests.DatabaseSessionTests.test_actual_expiry) ... ok 227s test_clear (sessions_tests.tests.DatabaseSessionTests.test_clear) ... ok 227s test_clearsessions_command (sessions_tests.tests.DatabaseSessionTests.test_clearsessions_command) 227s Test clearsessions command for clearing expired sessions. ... ok 227s test_custom_expiry_datetime (sessions_tests.tests.DatabaseSessionTests.test_custom_expiry_datetime) ... ok 227s test_custom_expiry_reset (sessions_tests.tests.DatabaseSessionTests.test_custom_expiry_reset) ... ok 227s test_custom_expiry_seconds (sessions_tests.tests.DatabaseSessionTests.test_custom_expiry_seconds) ... ok 227s test_custom_expiry_timedelta (sessions_tests.tests.DatabaseSessionTests.test_custom_expiry_timedelta) ... ok 227s test_cycle (sessions_tests.tests.DatabaseSessionTests.test_cycle) ... ok 227s test_cycle_with_no_session_cache (sessions_tests.tests.DatabaseSessionTests.test_cycle_with_no_session_cache) ... ok 227s test_decode (sessions_tests.tests.DatabaseSessionTests.test_decode) ... ok 227s test_decode_failure_logged_to_security (sessions_tests.tests.DatabaseSessionTests.test_decode_failure_logged_to_security) ... ok 227s test_decode_serializer_exception (sessions_tests.tests.DatabaseSessionTests.test_decode_serializer_exception) ... ok 227s test_default_expiry (sessions_tests.tests.DatabaseSessionTests.test_default_expiry) ... ok 227s test_delete (sessions_tests.tests.DatabaseSessionTests.test_delete) ... ok 227s test_flush (sessions_tests.tests.DatabaseSessionTests.test_flush) ... ok 227s test_get_empty (sessions_tests.tests.DatabaseSessionTests.test_get_empty) ... ok 227s test_get_expire_at_browser_close (sessions_tests.tests.DatabaseSessionTests.test_get_expire_at_browser_close) ... ok 227s test_has_key (sessions_tests.tests.DatabaseSessionTests.test_has_key) ... ok 227s test_invalid_key (sessions_tests.tests.DatabaseSessionTests.test_invalid_key) ... ok 227s test_items (sessions_tests.tests.DatabaseSessionTests.test_items) ... ok 227s test_keys (sessions_tests.tests.DatabaseSessionTests.test_keys) ... ok 227s test_new_session (sessions_tests.tests.DatabaseSessionTests.test_new_session) ... ok 227s test_pop (sessions_tests.tests.DatabaseSessionTests.test_pop) ... ok 227s test_pop_default (sessions_tests.tests.DatabaseSessionTests.test_pop_default) ... ok 227s test_pop_default_named_argument (sessions_tests.tests.DatabaseSessionTests.test_pop_default_named_argument) ... ok 227s test_pop_no_default_keyerror_raised (sessions_tests.tests.DatabaseSessionTests.test_pop_no_default_keyerror_raised) ... ok 227s test_save (sessions_tests.tests.DatabaseSessionTests.test_save) ... ok 227s test_save_doesnt_clear_data (sessions_tests.tests.DatabaseSessionTests.test_save_doesnt_clear_data) ... ok 227s test_session_get_decoded (sessions_tests.tests.DatabaseSessionTests.test_session_get_decoded) 227s Test we can use Session.get_decoded to retrieve data stored ... ok 227s test_session_key_empty_string_invalid (sessions_tests.tests.DatabaseSessionTests.test_session_key_empty_string_invalid) 227s Falsey values (Such as an empty string) are rejected. ... ok 227s test_session_key_is_read_only (sessions_tests.tests.DatabaseSessionTests.test_session_key_is_read_only) ... ok 227s test_session_key_too_short_invalid (sessions_tests.tests.DatabaseSessionTests.test_session_key_too_short_invalid) 227s Strings shorter than 8 characters are rejected. ... ok 227s test_session_key_valid_string_saved (sessions_tests.tests.DatabaseSessionTests.test_session_key_valid_string_saved) 227s Strings of length 8 and up are accepted and stored. ... ok 227s test_session_load_does_not_create_record (sessions_tests.tests.DatabaseSessionTests.test_session_load_does_not_create_record) 227s Loading an unknown session key does not create a session record. ... ok 227s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.DatabaseSessionTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 227s Sessions shouldn't be resurrected by a concurrent request. ... ok 227s test_session_str (sessions_tests.tests.DatabaseSessionTests.test_session_str) 227s Session repr should be the session key. ... ok 227s test_sessionmanager_save (sessions_tests.tests.DatabaseSessionTests.test_sessionmanager_save) 227s Test SessionManager.save method ... ok 227s test_setdefault (sessions_tests.tests.DatabaseSessionTests.test_setdefault) ... ok 227s test_store (sessions_tests.tests.DatabaseSessionTests.test_store) ... ok 227s test_update (sessions_tests.tests.DatabaseSessionTests.test_update) ... ok 227s test_values (sessions_tests.tests.DatabaseSessionTests.test_values) ... ok 227s test_actual_expiry (sessions_tests.tests.CustomDatabaseSessionTests.test_actual_expiry) ... ok 227s test_clear (sessions_tests.tests.CustomDatabaseSessionTests.test_clear) ... ok 227s test_clearsessions_command (sessions_tests.tests.CustomDatabaseSessionTests.test_clearsessions_command) 227s Test clearsessions command for clearing expired sessions. ... ok 227s test_custom_expiry_datetime (sessions_tests.tests.CustomDatabaseSessionTests.test_custom_expiry_datetime) ... ok 227s test_custom_expiry_reset (sessions_tests.tests.CustomDatabaseSessionTests.test_custom_expiry_reset) ... ok 227s test_custom_expiry_seconds (sessions_tests.tests.CustomDatabaseSessionTests.test_custom_expiry_seconds) ... ok 227s test_custom_expiry_timedelta (sessions_tests.tests.CustomDatabaseSessionTests.test_custom_expiry_timedelta) ... ok 227s test_cycle (sessions_tests.tests.CustomDatabaseSessionTests.test_cycle) ... ok 227s test_cycle_with_no_session_cache (sessions_tests.tests.CustomDatabaseSessionTests.test_cycle_with_no_session_cache) ... ok 227s test_decode (sessions_tests.tests.CustomDatabaseSessionTests.test_decode) ... ok 227s test_decode_failure_logged_to_security (sessions_tests.tests.CustomDatabaseSessionTests.test_decode_failure_logged_to_security) ... ok 227s test_decode_serializer_exception (sessions_tests.tests.CustomDatabaseSessionTests.test_decode_serializer_exception) ... ok 227s test_default_expiry (sessions_tests.tests.CustomDatabaseSessionTests.test_default_expiry) ... ok 227s test_delete (sessions_tests.tests.CustomDatabaseSessionTests.test_delete) ... ok 227s test_extra_session_field (sessions_tests.tests.CustomDatabaseSessionTests.test_extra_session_field) ... ok 227s test_flush (sessions_tests.tests.CustomDatabaseSessionTests.test_flush) ... ok 227s test_get_empty (sessions_tests.tests.CustomDatabaseSessionTests.test_get_empty) ... ok 227s test_get_expire_at_browser_close (sessions_tests.tests.CustomDatabaseSessionTests.test_get_expire_at_browser_close) ... ok 227s test_has_key (sessions_tests.tests.CustomDatabaseSessionTests.test_has_key) ... ok 227s test_invalid_key (sessions_tests.tests.CustomDatabaseSessionTests.test_invalid_key) ... ok 227s test_items (sessions_tests.tests.CustomDatabaseSessionTests.test_items) ... ok 227s test_keys (sessions_tests.tests.CustomDatabaseSessionTests.test_keys) ... ok 227s test_new_session (sessions_tests.tests.CustomDatabaseSessionTests.test_new_session) ... ok 227s test_pop (sessions_tests.tests.CustomDatabaseSessionTests.test_pop) ... ok 227s test_pop_default (sessions_tests.tests.CustomDatabaseSessionTests.test_pop_default) ... ok 227s test_pop_default_named_argument (sessions_tests.tests.CustomDatabaseSessionTests.test_pop_default_named_argument) ... ok 227s test_pop_no_default_keyerror_raised (sessions_tests.tests.CustomDatabaseSessionTests.test_pop_no_default_keyerror_raised) ... ok 227s test_save (sessions_tests.tests.CustomDatabaseSessionTests.test_save) ... ok 227s test_save_doesnt_clear_data (sessions_tests.tests.CustomDatabaseSessionTests.test_save_doesnt_clear_data) ... ok 227s test_session_get_decoded (sessions_tests.tests.CustomDatabaseSessionTests.test_session_get_decoded) 227s Test we can use Session.get_decoded to retrieve data stored ... ok 227s test_session_key_empty_string_invalid (sessions_tests.tests.CustomDatabaseSessionTests.test_session_key_empty_string_invalid) 227s Falsey values (Such as an empty string) are rejected. ... ok 227s test_session_key_is_read_only (sessions_tests.tests.CustomDatabaseSessionTests.test_session_key_is_read_only) ... ok 227s test_session_key_too_short_invalid (sessions_tests.tests.CustomDatabaseSessionTests.test_session_key_too_short_invalid) 227s Strings shorter than 8 characters are rejected. ... ok 227s test_session_key_valid_string_saved (sessions_tests.tests.CustomDatabaseSessionTests.test_session_key_valid_string_saved) 227s Strings of length 8 and up are accepted and stored. ... ok 227s test_session_load_does_not_create_record (sessions_tests.tests.CustomDatabaseSessionTests.test_session_load_does_not_create_record) 227s Loading an unknown session key does not create a session record. ... ok 227s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.CustomDatabaseSessionTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 227s Sessions shouldn't be resurrected by a concurrent request. ... ok 227s test_session_str (sessions_tests.tests.CustomDatabaseSessionTests.test_session_str) 227s Session repr should be the session key. ... ok 227s test_sessionmanager_save (sessions_tests.tests.CustomDatabaseSessionTests.test_sessionmanager_save) 227s Test SessionManager.save method ... ok 227s test_setdefault (sessions_tests.tests.CustomDatabaseSessionTests.test_setdefault) ... ok 227s test_store (sessions_tests.tests.CustomDatabaseSessionTests.test_store) ... ok 227s test_update (sessions_tests.tests.CustomDatabaseSessionTests.test_update) ... ok 227s test_values (sessions_tests.tests.CustomDatabaseSessionTests.test_values) ... ok 227s test_empty_session_saved (sessions_tests.tests.SessionMiddlewareTests.test_empty_session_saved) 227s If a session is emptied of data but still has a key, it should still ... ok 227s test_flush_empty_without_session_cookie_doesnt_set_cookie (sessions_tests.tests.SessionMiddlewareTests.test_flush_empty_without_session_cookie_doesnt_set_cookie) ... ok 227s test_httponly_session_cookie (sessions_tests.tests.SessionMiddlewareTests.test_httponly_session_cookie) ... ok 227s test_no_httponly_session_cookie (sessions_tests.tests.SessionMiddlewareTests.test_no_httponly_session_cookie) ... ok 227s test_samesite_session_cookie (sessions_tests.tests.SessionMiddlewareTests.test_samesite_session_cookie) ... ok 227s test_secure_session_cookie (sessions_tests.tests.SessionMiddlewareTests.test_secure_session_cookie) ... ok 227s test_session_delete_on_end (sessions_tests.tests.SessionMiddlewareTests.test_session_delete_on_end) ... ok 227s test_session_delete_on_end_with_custom_domain_and_path (sessions_tests.tests.SessionMiddlewareTests.test_session_delete_on_end_with_custom_domain_and_path) ... ok 227s test_session_save_on_500 (sessions_tests.tests.SessionMiddlewareTests.test_session_save_on_500) ... ok 227s test_session_save_on_5xx (sessions_tests.tests.SessionMiddlewareTests.test_session_save_on_5xx) ... ok 227s test_session_update_error_redirect (sessions_tests.tests.SessionMiddlewareTests.test_session_update_error_redirect) ... ok 227s test_empty_in (xor_lookups.tests.XorLookupsTests.test_empty_in) ... ok 227s test_exclude (xor_lookups.tests.XorLookupsTests.test_exclude) ... ok 227s test_filter (xor_lookups.tests.XorLookupsTests.test_filter) ... ok 227s test_filter_negated (xor_lookups.tests.XorLookupsTests.test_filter_negated) ... ok 227s test_pk_q (xor_lookups.tests.XorLookupsTests.test_pk_q) ... ok 227s test_stages (xor_lookups.tests.XorLookupsTests.test_stages) ... ok 227s test_getter (properties.tests.PropertyTests.test_getter) ... ok 227s test_setter (properties.tests.PropertyTests.test_setter) ... ok 227s test_array_agg_distinct_false (postgres_tests.test_aggregates.TestAggregateDistinct.test_array_agg_distinct_false) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_distinct_true (postgres_tests.test_aggregates.TestAggregateDistinct.test_array_agg_distinct_true) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_distinct_false (postgres_tests.test_aggregates.TestAggregateDistinct.test_jsonb_agg_distinct_false) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_distinct_true (postgres_tests.test_aggregates.TestAggregateDistinct.test_jsonb_agg_distinct_true) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_distinct_false (postgres_tests.test_aggregates.TestAggregateDistinct.test_string_agg_distinct_false) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_distinct_true (postgres_tests.test_aggregates.TestAggregateDistinct.test_string_agg_distinct_true) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_booleanfield (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_booleanfield) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_booleanfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_booleanfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_charfield (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_charfield) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_charfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_charfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_filter (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_filter) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_filter_index (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_filter_index) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_filter_slice (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_filter_slice) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_integerfield (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_integerfield) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_integerfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_integerfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_jsonfield (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_jsonfield) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_jsonfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_jsonfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_array_agg_lookups (postgres_tests.test_aggregates.TestGeneralAggregate.test_array_agg_lookups) ... skipped 'PostgreSQL specific tests' 227s test_bit_and_general (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_and_general) ... skipped 'PostgreSQL specific tests' 227s test_bit_and_on_only_false_values (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_and_on_only_false_values) ... skipped 'PostgreSQL specific tests' 227s test_bit_and_on_only_true_values (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_and_on_only_true_values) ... skipped 'PostgreSQL specific tests' 227s test_bit_or_general (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_or_general) ... skipped 'PostgreSQL specific tests' 227s test_bit_or_on_only_false_values (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_or_on_only_false_values) ... skipped 'PostgreSQL specific tests' 227s test_bit_or_on_only_true_values (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_or_on_only_true_values) ... skipped 'PostgreSQL specific tests' 227s test_bit_xor_general (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_xor_general) ... skipped 'PostgreSQL specific tests' 227s test_bit_xor_on_only_false_values (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_xor_on_only_false_values) ... skipped 'PostgreSQL specific tests' 227s test_bit_xor_on_only_true_values (postgres_tests.test_aggregates.TestGeneralAggregate.test_bit_xor_on_only_true_values) ... skipped 'PostgreSQL specific tests' 227s test_bool_and_general (postgres_tests.test_aggregates.TestGeneralAggregate.test_bool_and_general) ... skipped 'PostgreSQL specific tests' 227s test_bool_and_q_object (postgres_tests.test_aggregates.TestGeneralAggregate.test_bool_and_q_object) ... skipped 'PostgreSQL specific tests' 227s test_bool_or_general (postgres_tests.test_aggregates.TestGeneralAggregate.test_bool_or_general) ... skipped 'PostgreSQL specific tests' 227s test_bool_or_q_object (postgres_tests.test_aggregates.TestGeneralAggregate.test_bool_or_q_object) ... skipped 'PostgreSQL specific tests' 227s test_convert_value_deprecation (postgres_tests.test_aggregates.TestGeneralAggregate.test_convert_value_deprecation) ... skipped 'PostgreSQL specific tests' 227s test_default_argument (postgres_tests.test_aggregates.TestGeneralAggregate.test_default_argument) ... skipped 'PostgreSQL specific tests' 227s test_empty_result_set (postgres_tests.test_aggregates.TestGeneralAggregate.test_empty_result_set) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_booleanfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_booleanfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_charfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_charfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_default_encoded_json_string (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_default_encoded_json_string) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_default_encoded_json_string_deprecation (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_default_encoded_json_string_deprecation) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_default_str_value (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_default_str_value) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_default_str_value_deprecation (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_default_str_value_deprecation) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_integerfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_integerfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_jsonfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_jsonfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_jsonb_agg_key_index_transforms (postgres_tests.test_aggregates.TestGeneralAggregate.test_jsonb_agg_key_index_transforms) ... skipped 'PostgreSQL specific tests' 227s test_orderable_agg_alternative_fields (postgres_tests.test_aggregates.TestGeneralAggregate.test_orderable_agg_alternative_fields) ... skipped 'PostgreSQL specific tests' 227s test_ordering_isnt_cleared_for_array_subquery (postgres_tests.test_aggregates.TestGeneralAggregate.test_ordering_isnt_cleared_for_array_subquery) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_array_agg_filter_in_subquery (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_array_agg_filter_in_subquery) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_array_agg_ordering_in_subquery (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_array_agg_ordering_in_subquery) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_charfield (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_charfield) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_charfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_charfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_default_output_field (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_default_output_field) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_delimiter_escaping (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_delimiter_escaping) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_filter (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_filter) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_filter_in_subquery_with_exclude (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_filter_in_subquery_with_exclude) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_jsonfield_ordering (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_jsonfield_ordering) ... skipped 'PostgreSQL specific tests' 227s test_string_agg_requires_delimiter (postgres_tests.test_aggregates.TestGeneralAggregate.test_string_agg_requires_delimiter) ... skipped 'PostgreSQL specific tests' 227s test_values_list (postgres_tests.test_aggregates.TestGeneralAggregate.test_values_list) ... skipped 'PostgreSQL specific tests' 227s test_window (postgres_tests.test_aggregates.TestGeneralAggregate.test_window) ... skipped 'PostgreSQL specific tests' 227s test_alias_is_required (postgres_tests.test_aggregates.TestStatisticsAggregate.test_alias_is_required) ... skipped 'PostgreSQL specific tests' 227s test_corr_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_corr_general) ... skipped 'PostgreSQL specific tests' 227s test_correct_source_expressions (postgres_tests.test_aggregates.TestStatisticsAggregate.test_correct_source_expressions) ... skipped 'PostgreSQL specific tests' 227s test_covar_pop_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_covar_pop_general) ... skipped 'PostgreSQL specific tests' 227s test_covar_pop_sample (postgres_tests.test_aggregates.TestStatisticsAggregate.test_covar_pop_sample) ... skipped 'PostgreSQL specific tests' 227s test_default_argument (postgres_tests.test_aggregates.TestStatisticsAggregate.test_default_argument) ... skipped 'PostgreSQL specific tests' 227s test_empty_result_set (postgres_tests.test_aggregates.TestStatisticsAggregate.test_empty_result_set) ... skipped 'PostgreSQL specific tests' 227s test_missing_arguments_raises_exception (postgres_tests.test_aggregates.TestStatisticsAggregate.test_missing_arguments_raises_exception) ... skipped 'PostgreSQL specific tests' 227s test_regr_avgx_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_avgx_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_avgx_with_related_obj_and_number_as_argument (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_avgx_with_related_obj_and_number_as_argument) 227s This is more complex test to check if JOIN on field and ... skipped 'PostgreSQL specific tests' 227s test_regr_avgy_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_avgy_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_count_default (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_count_default) ... skipped 'PostgreSQL specific tests' 227s test_regr_count_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_count_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_intercept_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_intercept_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_r2_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_r2_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_slope_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_slope_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_sxx_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_sxx_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_sxy_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_sxy_general) ... skipped 'PostgreSQL specific tests' 227s test_regr_syy_general (postgres_tests.test_aggregates.TestStatisticsAggregate.test_regr_syy_general) ... skipped 'PostgreSQL specific tests' 227s test_register_serializer_for_migrations (postgres_tests.test_apps.PostgresConfigTests.test_register_serializer_for_migrations) ... skipped 'PostgreSQL specific tests' 227s test_register_type_handlers_connection (postgres_tests.test_apps.PostgresConfigTests.test_register_type_handlers_connection) ... skipped 'PostgreSQL specific tests' 227s test_array_display_for_field (postgres_tests.test_array.TestAdminUtils.test_array_display_for_field) ... skipped 'PostgreSQL specific tests' 227s test_array_with_choices_display_for_field (postgres_tests.test_array.TestAdminUtils.test_array_with_choices_display_for_field) ... skipped 'PostgreSQL specific tests' 227s test_exact_dates (postgres_tests.test_array.TestDateTimeExactQuerying.test_exact_dates) ... skipped 'PostgreSQL specific tests' 227s test_exact_datetimes (postgres_tests.test_array.TestDateTimeExactQuerying.test_exact_datetimes) ... skipped 'PostgreSQL specific tests' 227s test_exact_times (postgres_tests.test_array.TestDateTimeExactQuerying.test_exact_times) ... skipped 'PostgreSQL specific tests' 227s test_exact_decimals (postgres_tests.test_array.TestOtherTypesExactQuerying.test_exact_decimals) ... skipped 'PostgreSQL specific tests' 227s test_exact_ip_addresses (postgres_tests.test_array.TestOtherTypesExactQuerying.test_exact_ip_addresses) ... skipped 'PostgreSQL specific tests' 227s test_exact_tags (postgres_tests.test_array.TestOtherTypesExactQuerying.test_exact_tags) ... skipped 'PostgreSQL specific tests' 227s test_exact_uuids (postgres_tests.test_array.TestOtherTypesExactQuerying.test_exact_uuids) ... skipped 'PostgreSQL specific tests' 227s test_annotated_array_subquery (postgres_tests.test_array.TestQuerying.test_annotated_array_subquery) ... skipped 'PostgreSQL specific tests' 227s test_annotated_array_subquery_with_json_objects (postgres_tests.test_array.TestQuerying.test_annotated_array_subquery_with_json_objects) ... skipped 'PostgreSQL specific tests' 227s test_annotated_ordered_array_subquery (postgres_tests.test_array.TestQuerying.test_annotated_ordered_array_subquery) ... skipped 'PostgreSQL specific tests' 227s test_contained_by (postgres_tests.test_array.TestQuerying.test_contained_by) ... skipped 'PostgreSQL specific tests' 227s test_contained_by_charfield (postgres_tests.test_array.TestQuerying.test_contained_by_charfield) ... skipped 'PostgreSQL specific tests' 227s test_contained_by_including_F_object (postgres_tests.test_array.TestQuerying.test_contained_by_including_F_object) ... skipped 'PostgreSQL specific tests' 227s test_contains (postgres_tests.test_array.TestQuerying.test_contains) ... skipped 'PostgreSQL specific tests' 227s test_contains_charfield (postgres_tests.test_array.TestQuerying.test_contains_charfield) ... skipped 'PostgreSQL specific tests' 227s test_contains_including_expression (postgres_tests.test_array.TestQuerying.test_contains_including_expression) ... skipped 'PostgreSQL specific tests' 227s test_contains_subquery (postgres_tests.test_array.TestQuerying.test_contains_subquery) ... skipped 'PostgreSQL specific tests' 227s test_empty_list (postgres_tests.test_array.TestQuerying.test_empty_list) ... skipped 'PostgreSQL specific tests' 227s test_enum_lookup (postgres_tests.test_array.TestQuerying.test_enum_lookup) ... skipped 'PostgreSQL specific tests' 227s test_exact (postgres_tests.test_array.TestQuerying.test_exact) ... skipped 'PostgreSQL specific tests' 227s test_exact_charfield (postgres_tests.test_array.TestQuerying.test_exact_charfield) ... skipped 'PostgreSQL specific tests' 227s test_exact_nested (postgres_tests.test_array.TestQuerying.test_exact_nested) ... skipped 'PostgreSQL specific tests' 227s test_exact_null_only_array (postgres_tests.test_array.TestQuerying.test_exact_null_only_array) ... skipped 'PostgreSQL specific tests' 227s test_exact_null_only_nested_array (postgres_tests.test_array.TestQuerying.test_exact_null_only_nested_array) ... skipped 'PostgreSQL specific tests' 227s test_exact_with_expression (postgres_tests.test_array.TestQuerying.test_exact_with_expression) ... skipped 'PostgreSQL specific tests' 227s test_filter_by_array_subquery (postgres_tests.test_array.TestQuerying.test_filter_by_array_subquery) ... skipped 'PostgreSQL specific tests' 227s test_group_by_order_by_select_index (postgres_tests.test_array.TestQuerying.test_group_by_order_by_select_index) ... skipped 'PostgreSQL specific tests' 227s test_group_by_with_annotated_array_subquery (postgres_tests.test_array.TestQuerying.test_group_by_with_annotated_array_subquery) ... skipped 'PostgreSQL specific tests' 227s test_grouping_by_annotations_with_array_field_param (postgres_tests.test_array.TestQuerying.test_grouping_by_annotations_with_array_field_param) ... skipped 'PostgreSQL specific tests' 227s test_gt (postgres_tests.test_array.TestQuerying.test_gt) ... skipped 'PostgreSQL specific tests' 227s test_icontains (postgres_tests.test_array.TestQuerying.test_icontains) ... skipped 'PostgreSQL specific tests' 227s test_in (postgres_tests.test_array.TestQuerying.test_in) ... skipped 'PostgreSQL specific tests' 227s test_in_as_F_object (postgres_tests.test_array.TestQuerying.test_in_as_F_object) ... skipped 'PostgreSQL specific tests' 227s test_in_including_F_object (postgres_tests.test_array.TestQuerying.test_in_including_F_object) ... skipped 'PostgreSQL specific tests' 227s test_in_subquery (postgres_tests.test_array.TestQuerying.test_in_subquery) ... skipped 'PostgreSQL specific tests' 227s test_index (postgres_tests.test_array.TestQuerying.test_index) ... skipped 'PostgreSQL specific tests' 227s test_index_annotation (postgres_tests.test_array.TestQuerying.test_index_annotation) ... skipped 'PostgreSQL specific tests' 227s test_index_chained (postgres_tests.test_array.TestQuerying.test_index_chained) ... skipped 'PostgreSQL specific tests' 227s test_index_nested (postgres_tests.test_array.TestQuerying.test_index_nested) ... skipped 'PostgreSQL specific tests' 227s test_index_transform_expression (postgres_tests.test_array.TestQuerying.test_index_transform_expression) ... skipped 'PostgreSQL specific tests' 227s test_index_used_on_nested_data (postgres_tests.test_array.TestQuerying.test_index_used_on_nested_data) ... skipped 'PostgreSQL specific tests' 227s test_isnull (postgres_tests.test_array.TestQuerying.test_isnull) ... skipped 'PostgreSQL specific tests' 227s test_len (postgres_tests.test_array.TestQuerying.test_len) ... skipped 'PostgreSQL specific tests' 227s test_len_empty_array (postgres_tests.test_array.TestQuerying.test_len_empty_array) ... skipped 'PostgreSQL specific tests' 227s test_lookups_autofield_array (postgres_tests.test_array.TestQuerying.test_lookups_autofield_array) ... skipped 'PostgreSQL specific tests' 227s test_lt (postgres_tests.test_array.TestQuerying.test_lt) ... skipped 'PostgreSQL specific tests' 227s test_order_by_slice (postgres_tests.test_array.TestQuerying.test_order_by_slice) ... skipped 'PostgreSQL specific tests' 227s test_overlap (postgres_tests.test_array.TestQuerying.test_overlap) ... skipped 'PostgreSQL specific tests' 227s test_overlap_charfield (postgres_tests.test_array.TestQuerying.test_overlap_charfield) ... skipped 'PostgreSQL specific tests' 227s test_overlap_charfield_including_expression (postgres_tests.test_array.TestQuerying.test_overlap_charfield_including_expression) ... skipped 'PostgreSQL specific tests' 227s test_overlap_values (postgres_tests.test_array.TestQuerying.test_overlap_values) ... skipped 'PostgreSQL specific tests' 227s test_slice (postgres_tests.test_array.TestQuerying.test_slice) ... skipped 'PostgreSQL specific tests' 227s test_slice_annotation (postgres_tests.test_array.TestQuerying.test_slice_annotation) ... skipped 'PostgreSQL specific tests' 227s test_slice_nested (postgres_tests.test_array.TestQuerying.test_slice_nested) ... skipped 'PostgreSQL specific tests' 227s test_slice_transform_expression (postgres_tests.test_array.TestQuerying.test_slice_transform_expression) ... skipped 'PostgreSQL specific tests' 227s test_unsupported_lookup (postgres_tests.test_array.TestQuerying.test_unsupported_lookup) ... skipped 'PostgreSQL specific tests' 227s test_usage_in_subquery (postgres_tests.test_array.TestQuerying.test_usage_in_subquery) ... skipped 'PostgreSQL specific tests' 227s test_char (postgres_tests.test_array.TestSaveLoad.test_char) ... skipped 'PostgreSQL specific tests' 227s test_dates (postgres_tests.test_array.TestSaveLoad.test_dates) ... skipped 'PostgreSQL specific tests' 227s test_default_null (postgres_tests.test_array.TestSaveLoad.test_default_null) ... skipped 'PostgreSQL specific tests' 227s test_integer (postgres_tests.test_array.TestSaveLoad.test_integer) ... skipped 'PostgreSQL specific tests' 227s test_integers_passed_as_strings (postgres_tests.test_array.TestSaveLoad.test_integers_passed_as_strings) ... skipped 'PostgreSQL specific tests' 227s test_model_set_on_base_field (postgres_tests.test_array.TestSaveLoad.test_model_set_on_base_field) ... skipped 'PostgreSQL specific tests' 227s test_nested (postgres_tests.test_array.TestSaveLoad.test_nested) ... skipped 'PostgreSQL specific tests' 227s test_nested_nullable_base_field (postgres_tests.test_array.TestSaveLoad.test_nested_nullable_base_field) ... skipped 'PostgreSQL specific tests' 227s test_null_from_db_value_handling (postgres_tests.test_array.TestSaveLoad.test_null_from_db_value_handling) ... skipped 'PostgreSQL specific tests' 227s test_null_handling (postgres_tests.test_array.TestSaveLoad.test_null_handling) ... skipped 'PostgreSQL specific tests' 227s test_other_array_types (postgres_tests.test_array.TestSaveLoad.test_other_array_types) ... skipped 'PostgreSQL specific tests' 227s test_tuples (postgres_tests.test_array.TestSaveLoad.test_tuples) ... skipped 'PostgreSQL specific tests' 227s test_bulk_update (postgres_tests.test_bulk_update.BulkSaveTests.test_bulk_update) ... skipped 'PostgreSQL specific tests' 227s test_array_field (postgres_tests.test_citext.CITextTestCase.test_array_field) ... skipped 'PostgreSQL specific tests' 227s test_citext_deprecated (postgres_tests.test_citext.CITextTestCase.test_citext_deprecated) ... skipped 'PostgreSQL specific tests' 227s test_equal_lowercase (postgres_tests.test_citext.CITextTestCase.test_equal_lowercase) 227s citext removes the need for iexact as the index is case-insensitive. ... skipped 'PostgreSQL specific tests' 227s test_fail_citext_primary_key (postgres_tests.test_citext.CITextTestCase.test_fail_citext_primary_key) 227s Creating an entry for a citext field used as a primary key which ... skipped 'PostgreSQL specific tests' 227s test_lookups_description_text (postgres_tests.test_citext.CITextTestCase.test_lookups_description_text) ... skipped 'PostgreSQL specific tests' 227s test_lookups_email (postgres_tests.test_citext.CITextTestCase.test_lookups_email) ... skipped 'PostgreSQL specific tests' 227s test_lookups_name_char (postgres_tests.test_citext.CITextTestCase.test_lookups_name_char) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_gist_opclasses_include (postgres_tests.test_constraints.ExclusionConstraintOpclassesDepracationTests.test_range_adjacent_gist_opclasses_include) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_opclasses (postgres_tests.test_constraints.ExclusionConstraintOpclassesDepracationTests.test_range_adjacent_opclasses) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_opclasses_condition (postgres_tests.test_constraints.ExclusionConstraintOpclassesDepracationTests.test_range_adjacent_opclasses_condition) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_opclasses_deferrable (postgres_tests.test_constraints.ExclusionConstraintOpclassesDepracationTests.test_range_adjacent_opclasses_deferrable) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_spgist_opclasses_include (postgres_tests.test_constraints.ExclusionConstraintOpclassesDepracationTests.test_range_adjacent_spgist_opclasses_include) ... skipped 'PostgreSQL specific tests' 227s test_repr (postgres_tests.test_constraints.ExclusionConstraintOpclassesDepracationTests.test_repr) ... skipped 'PostgreSQL specific tests' 227s test_warning (postgres_tests.test_constraints.ExclusionConstraintOpclassesDepracationTests.test_warning) ... skipped 'PostgreSQL specific tests' 227s test_deconstruct (postgres_tests.test_constraints.ExclusionConstraintTests.test_deconstruct) ... skipped 'PostgreSQL specific tests' 227s test_deconstruct_condition (postgres_tests.test_constraints.ExclusionConstraintTests.test_deconstruct_condition) ... skipped 'PostgreSQL specific tests' 227s test_deconstruct_deferrable (postgres_tests.test_constraints.ExclusionConstraintTests.test_deconstruct_deferrable) ... skipped 'PostgreSQL specific tests' 227s test_deconstruct_include (postgres_tests.test_constraints.ExclusionConstraintTests.test_deconstruct_include) ... skipped 'PostgreSQL specific tests' 227s test_deconstruct_index_type (postgres_tests.test_constraints.ExclusionConstraintTests.test_deconstruct_index_type) ... skipped 'PostgreSQL specific tests' 227s test_deconstruct_opclasses (postgres_tests.test_constraints.ExclusionConstraintTests.test_deconstruct_opclasses) ... skipped 'PostgreSQL specific tests' 227s test_empty_expressions (postgres_tests.test_constraints.ExclusionConstraintTests.test_empty_expressions) ... skipped 'PostgreSQL specific tests' 227s test_eq (postgres_tests.test_constraints.ExclusionConstraintTests.test_eq) ... skipped 'PostgreSQL specific tests' 227s test_expressions_with_key_transform (postgres_tests.test_constraints.ExclusionConstraintTests.test_expressions_with_key_transform) ... skipped 'PostgreSQL specific tests' 227s test_expressions_with_params (postgres_tests.test_constraints.ExclusionConstraintTests.test_expressions_with_params) ... skipped 'PostgreSQL specific tests' 227s test_index_transform (postgres_tests.test_constraints.ExclusionConstraintTests.test_index_transform) ... skipped 'PostgreSQL specific tests' 227s test_invalid_condition (postgres_tests.test_constraints.ExclusionConstraintTests.test_invalid_condition) ... skipped 'PostgreSQL specific tests' 227s test_invalid_deferrable (postgres_tests.test_constraints.ExclusionConstraintTests.test_invalid_deferrable) ... skipped 'PostgreSQL specific tests' 227s test_invalid_expressions (postgres_tests.test_constraints.ExclusionConstraintTests.test_invalid_expressions) ... skipped 'PostgreSQL specific tests' 227s test_invalid_include_type (postgres_tests.test_constraints.ExclusionConstraintTests.test_invalid_include_type) ... skipped 'PostgreSQL specific tests' 227s test_invalid_index_type (postgres_tests.test_constraints.ExclusionConstraintTests.test_invalid_index_type) ... skipped 'PostgreSQL specific tests' 227s test_invalid_opclasses_type (postgres_tests.test_constraints.ExclusionConstraintTests.test_invalid_opclasses_type) ... skipped 'PostgreSQL specific tests' 227s test_opclasses_and_expressions_same_length (postgres_tests.test_constraints.ExclusionConstraintTests.test_opclasses_and_expressions_same_length) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_gist_include (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_gist_include) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_gist_include_condition (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_gist_include_condition) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_gist_include_deferrable (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_gist_include_deferrable) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_gist_opclass_include (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_gist_opclass_include) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_initially_deferred (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_initially_deferred) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_initially_deferred_with_condition (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_initially_deferred_with_condition) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_opclass (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_opclass) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_opclass_condition (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_opclass_condition) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_opclass_deferrable (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_opclass_deferrable) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_spgist_include (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_spgist_include) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_spgist_include_condition (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_spgist_include_condition) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_spgist_include_deferrable (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_spgist_include_deferrable) ... skipped 'PostgreSQL specific tests' 227s test_range_adjacent_spgist_opclass_include (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_adjacent_spgist_opclass_include) ... skipped 'PostgreSQL specific tests' 227s test_range_equal_cast (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_equal_cast) ... skipped 'PostgreSQL specific tests' 227s test_range_overlaps (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_overlaps) ... skipped 'PostgreSQL specific tests' 227s test_range_overlaps_custom (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_overlaps_custom) ... skipped 'PostgreSQL specific tests' 227s test_range_overlaps_custom_opclasses (postgres_tests.test_constraints.ExclusionConstraintTests.test_range_overlaps_custom_opclasses) ... skipped 'PostgreSQL specific tests' 227s test_repr (postgres_tests.test_constraints.ExclusionConstraintTests.test_repr) ... skipped 'PostgreSQL specific tests' 227s test_spgist_include_not_supported (postgres_tests.test_constraints.ExclusionConstraintTests.test_spgist_include_not_supported) ... skipped 'PostgreSQL specific tests' 227s test_table_create (postgres_tests.test_constraints.ExclusionConstraintTests.test_table_create) ... skipped 'PostgreSQL specific tests' 227s test_validate_range_adjacent (postgres_tests.test_constraints.ExclusionConstraintTests.test_validate_range_adjacent) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_array_contains (postgres_tests.test_constraints.SchemaTests.test_check_constraint_array_contains) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_array_length (postgres_tests.test_constraints.SchemaTests.test_check_constraint_array_length) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_daterange_contains (postgres_tests.test_constraints.SchemaTests.test_check_constraint_daterange_contains) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_datetimerange_contains (postgres_tests.test_constraints.SchemaTests.test_check_constraint_datetimerange_contains) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_range_contains (postgres_tests.test_constraints.SchemaTests.test_check_constraint_range_contains) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_range_lower_upper (postgres_tests.test_constraints.SchemaTests.test_check_constraint_range_lower_upper) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_range_lower_with_nulls (postgres_tests.test_constraints.SchemaTests.test_check_constraint_range_lower_with_nulls) ... skipped 'PostgreSQL specific tests' 227s test_check_constraint_range_value (postgres_tests.test_constraints.SchemaTests.test_check_constraint_range_value) ... skipped 'PostgreSQL specific tests' 227s test_opclass (postgres_tests.test_constraints.SchemaTests.test_opclass) ... skipped 'PostgreSQL specific tests' 227s test_opclass_func (postgres_tests.test_constraints.SchemaTests.test_opclass_func) ... skipped 'PostgreSQL specific tests' 227s test_opclass_include (postgres_tests.test_constraints.SchemaTests.test_opclass_include) ... skipped 'PostgreSQL specific tests' 227s test_opclass_multiple_columns (postgres_tests.test_constraints.SchemaTests.test_opclass_multiple_columns) ... skipped 'PostgreSQL specific tests' 227s test_opclass_partial (postgres_tests.test_constraints.SchemaTests.test_opclass_partial) ... skipped 'PostgreSQL specific tests' 227s test_random_uuid (postgres_tests.test_functions.TestRandomUUID.test_random_uuid) ... skipped 'PostgreSQL specific tests' 227s test_transaction_now (postgres_tests.test_functions.TestTransactionNow.test_transaction_now) 227s The test case puts everything under a transaction, so two models ... skipped 'PostgreSQL specific tests' 228s test_array_field (postgres_tests.test_hstore.SimpleTests.test_array_field) ... skipped 'PostgreSQL specific tests' 228s test_key_val_cast_to_string (postgres_tests.test_hstore.SimpleTests.test_key_val_cast_to_string) ... skipped 'PostgreSQL specific tests' 228s test_null (postgres_tests.test_hstore.SimpleTests.test_null) ... skipped 'PostgreSQL specific tests' 228s test_save_load_success (postgres_tests.test_hstore.SimpleTests.test_save_load_success) ... skipped 'PostgreSQL specific tests' 228s test_value_null (postgres_tests.test_hstore.SimpleTests.test_value_null) ... skipped 'PostgreSQL specific tests' 228s test_contained_by (postgres_tests.test_hstore.TestQuerying.test_contained_by) ... skipped 'PostgreSQL specific tests' 228s test_contains (postgres_tests.test_hstore.TestQuerying.test_contains) ... skipped 'PostgreSQL specific tests' 228s test_exact (postgres_tests.test_hstore.TestQuerying.test_exact) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_contains (postgres_tests.test_hstore.TestQuerying.test_field_chaining_contains) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_endswith (postgres_tests.test_hstore.TestQuerying.test_field_chaining_endswith) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_icontains (postgres_tests.test_hstore.TestQuerying.test_field_chaining_icontains) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_iendswith (postgres_tests.test_hstore.TestQuerying.test_field_chaining_iendswith) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_iexact (postgres_tests.test_hstore.TestQuerying.test_field_chaining_iexact) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_iregex (postgres_tests.test_hstore.TestQuerying.test_field_chaining_iregex) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_istartswith (postgres_tests.test_hstore.TestQuerying.test_field_chaining_istartswith) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_regex (postgres_tests.test_hstore.TestQuerying.test_field_chaining_regex) ... skipped 'PostgreSQL specific tests' 228s test_field_chaining_startswith (postgres_tests.test_hstore.TestQuerying.test_field_chaining_startswith) ... skipped 'PostgreSQL specific tests' 228s test_has_any_keys (postgres_tests.test_hstore.TestQuerying.test_has_any_keys) ... skipped 'PostgreSQL specific tests' 228s test_has_key (postgres_tests.test_hstore.TestQuerying.test_has_key) ... skipped 'PostgreSQL specific tests' 228s test_has_keys (postgres_tests.test_hstore.TestQuerying.test_has_keys) ... skipped 'PostgreSQL specific tests' 228s test_in_generator (postgres_tests.test_hstore.TestQuerying.test_in_generator) ... skipped 'PostgreSQL specific tests' 228s test_key_isnull (postgres_tests.test_hstore.TestQuerying.test_key_isnull) ... skipped 'PostgreSQL specific tests' 228s test_key_sql_injection (postgres_tests.test_hstore.TestQuerying.test_key_sql_injection) ... skipped 'PostgreSQL specific tests' 228s test_key_transform (postgres_tests.test_hstore.TestQuerying.test_key_transform) ... skipped 'PostgreSQL specific tests' 228s test_key_transform_annotation (postgres_tests.test_hstore.TestQuerying.test_key_transform_annotation) ... skipped 'PostgreSQL specific tests' 228s test_key_transform_raw_expression (postgres_tests.test_hstore.TestQuerying.test_key_transform_raw_expression) ... skipped 'PostgreSQL specific tests' 228s test_keys (postgres_tests.test_hstore.TestQuerying.test_keys) ... skipped 'PostgreSQL specific tests' 228s test_keys_contains (postgres_tests.test_hstore.TestQuerying.test_keys_contains) ... skipped 'PostgreSQL specific tests' 228s test_obj_subquery_lookup (postgres_tests.test_hstore.TestQuerying.test_obj_subquery_lookup) ... skipped 'PostgreSQL specific tests' 228s test_order_by_field (postgres_tests.test_hstore.TestQuerying.test_order_by_field) ... skipped 'PostgreSQL specific tests' 228s test_usage_in_subquery (postgres_tests.test_hstore.TestQuerying.test_usage_in_subquery) ... skipped 'PostgreSQL specific tests' 228s test_values (postgres_tests.test_hstore.TestQuerying.test_values) ... skipped 'PostgreSQL specific tests' 228s test_values_overlap (postgres_tests.test_hstore.TestQuerying.test_values_overlap) ... skipped 'PostgreSQL specific tests' 228s test_bloom_index (postgres_tests.test_indexes.SchemaTests.test_bloom_index) ... skipped 'PostgreSQL specific tests' 228s test_bloom_parameters (postgres_tests.test_indexes.SchemaTests.test_bloom_parameters) ... skipped 'PostgreSQL specific tests' 228s test_brin_index (postgres_tests.test_indexes.SchemaTests.test_brin_index) ... skipped 'PostgreSQL specific tests' 228s test_brin_parameters (postgres_tests.test_indexes.SchemaTests.test_brin_parameters) ... skipped 'PostgreSQL specific tests' 228s test_btree_index (postgres_tests.test_indexes.SchemaTests.test_btree_index) ... skipped 'PostgreSQL specific tests' 228s test_btree_parameters (postgres_tests.test_indexes.SchemaTests.test_btree_parameters) ... skipped 'PostgreSQL specific tests' 228s test_cast_search_vector_gin_index (postgres_tests.test_indexes.SchemaTests.test_cast_search_vector_gin_index) ... skipped 'PostgreSQL specific tests' 228s test_custom_suffix (postgres_tests.test_indexes.SchemaTests.test_custom_suffix) ... skipped 'PostgreSQL specific tests' 228s test_gin_fastupdate (postgres_tests.test_indexes.SchemaTests.test_gin_fastupdate) ... skipped 'PostgreSQL specific tests' 228s test_gin_index (postgres_tests.test_indexes.SchemaTests.test_gin_index) ... skipped 'PostgreSQL specific tests' 228s test_gin_parameters (postgres_tests.test_indexes.SchemaTests.test_gin_parameters) ... skipped 'PostgreSQL specific tests' 228s test_gist_include (postgres_tests.test_indexes.SchemaTests.test_gist_include) ... skipped 'PostgreSQL specific tests' 228s test_gist_index (postgres_tests.test_indexes.SchemaTests.test_gist_index) ... skipped 'PostgreSQL specific tests' 228s test_gist_parameters (postgres_tests.test_indexes.SchemaTests.test_gist_parameters) ... skipped 'PostgreSQL specific tests' 228s test_hash_index (postgres_tests.test_indexes.SchemaTests.test_hash_index) ... skipped 'PostgreSQL specific tests' 228s test_hash_parameters (postgres_tests.test_indexes.SchemaTests.test_hash_parameters) ... skipped 'PostgreSQL specific tests' 228s test_op_class (postgres_tests.test_indexes.SchemaTests.test_op_class) ... skipped 'PostgreSQL specific tests' 228s test_op_class_descending_collation (postgres_tests.test_indexes.SchemaTests.test_op_class_descending_collation) ... skipped 'PostgreSQL specific tests' 228s test_op_class_descending_partial (postgres_tests.test_indexes.SchemaTests.test_op_class_descending_partial) ... skipped 'PostgreSQL specific tests' 228s test_op_class_descending_partial_tablespace (postgres_tests.test_indexes.SchemaTests.test_op_class_descending_partial_tablespace) ... skipped 'PostgreSQL specific tests' 228s test_partial_gin_index (postgres_tests.test_indexes.SchemaTests.test_partial_gin_index) ... skipped 'PostgreSQL specific tests' 228s test_partial_gin_index_with_tablespace (postgres_tests.test_indexes.SchemaTests.test_partial_gin_index_with_tablespace) ... skipped 'PostgreSQL specific tests' 228s test_search_vector (postgres_tests.test_indexes.SchemaTests.test_search_vector) 228s SearchVector generates IMMUTABLE SQL in order to be indexable. ... skipped 'PostgreSQL specific tests' 228s test_spgist_include (postgres_tests.test_indexes.SchemaTests.test_spgist_include) ... skipped 'PostgreSQL specific tests' 228s test_spgist_include_not_supported (postgres_tests.test_indexes.SchemaTests.test_spgist_include_not_supported) ... skipped 'PostgreSQL specific tests' 228s test_spgist_index (postgres_tests.test_indexes.SchemaTests.test_spgist_index) ... skipped 'PostgreSQL specific tests' 228s test_spgist_parameters (postgres_tests.test_indexes.SchemaTests.test_spgist_parameters) ... skipped 'PostgreSQL specific tests' 228s test_trigram_op_class_gin_index (postgres_tests.test_indexes.SchemaTests.test_trigram_op_class_gin_index) ... skipped 'PostgreSQL specific tests' 228s test_tsvector_op_class_gist_index (postgres_tests.test_indexes.SchemaTests.test_tsvector_op_class_gist_index) ... skipped 'PostgreSQL specific tests' 228s test_range_fields (postgres_tests.test_introspection.InspectDBTests.test_range_fields) ... skipped 'PostgreSQL specific tests' 228s test_actual_expiry (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_actual_expiry) ... ok 228s test_clear (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_clear) ... ok 228s test_clearsessions_command (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_clearsessions_command) 228s Test clearsessions command for clearing expired sessions. ... ok 228s test_custom_expiry_datetime (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_custom_expiry_datetime) ... ok 228s test_custom_expiry_reset (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_custom_expiry_reset) ... ok 228s test_custom_expiry_seconds (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_custom_expiry_seconds) ... ok 228s test_custom_expiry_timedelta (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_custom_expiry_timedelta) ... ok 228s test_cycle (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_cycle) ... ok 228s test_cycle_with_no_session_cache (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_cycle_with_no_session_cache) ... ok 228s test_decode (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_decode) ... ok 228s test_decode_failure_logged_to_security (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_decode_failure_logged_to_security) ... ok 228s test_decode_serializer_exception (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_decode_serializer_exception) ... ok 228s test_default_expiry (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_default_expiry) ... ok 228s test_delete (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_delete) ... ok 228s test_flush (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_flush) ... ok 228s test_get_empty (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_get_empty) ... ok 228s test_get_expire_at_browser_close (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_get_expire_at_browser_close) ... ok 228s test_has_key (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_has_key) ... ok 228s test_invalid_key (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_invalid_key) ... ok 228s test_items (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_items) ... ok 228s test_keys (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_keys) ... ok 228s test_new_session (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_new_session) ... ok 228s test_pop (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_pop) ... ok 228s test_pop_default (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_pop_default) ... ok 228s test_pop_default_named_argument (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_pop_default_named_argument) ... ok 228s test_pop_no_default_keyerror_raised (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_pop_no_default_keyerror_raised) ... ok 228s test_save (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_save) ... ok 228s test_save_doesnt_clear_data (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_save_doesnt_clear_data) ... ok 228s test_session_get_decoded (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_get_decoded) 228s Test we can use Session.get_decoded to retrieve data stored ... ok 228s test_session_key_empty_string_invalid (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_key_empty_string_invalid) 228s Falsey values (Such as an empty string) are rejected. ... ok 228s test_session_key_is_read_only (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_key_is_read_only) ... ok 228s test_session_key_too_short_invalid (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_key_too_short_invalid) 228s Strings shorter than 8 characters are rejected. ... ok 228s test_session_key_valid_string_saved (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_key_valid_string_saved) 228s Strings of length 8 and up are accepted and stored. ... ok 228s test_session_load_does_not_create_record (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_load_does_not_create_record) 228s Loading an unknown session key does not create a session record. ... ok 228s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 228s Sessions shouldn't be resurrected by a concurrent request. ... ok 228s test_session_str (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_session_str) 228s Session repr should be the session key. ... ok 228s test_sessionmanager_save (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_sessionmanager_save) 228s Test SessionManager.save method ... ok 228s test_setdefault (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_setdefault) ... ok 228s test_store (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_store) ... ok 228s test_update (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_update) ... ok 228s test_values (sessions_tests.tests.DatabaseSessionWithTimeZoneTests.test_values) ... ok 228s test_create (postgres_tests.test_operations.CreateCollationTests.test_create) ... skipped 'PostgreSQL specific tests.' 228s test_create_collation_alternate_provider (postgres_tests.test_operations.CreateCollationTests.test_create_collation_alternate_provider) ... skipped 'PostgreSQL specific tests.' 228s test_create_non_deterministic_collation (postgres_tests.test_operations.CreateCollationTests.test_create_non_deterministic_collation) ... skipped 'PostgreSQL specific tests.' 228s test_no_allow_migrate (postgres_tests.test_operations.CreateCollationTests.test_no_allow_migrate) ... skipped 'PostgreSQL specific tests.' 228s test_no_allow_migrate (postgres_tests.test_operations.RemoveCollationTests.test_no_allow_migrate) ... skipped 'PostgreSQL specific tests.' 228s test_remove (postgres_tests.test_operations.RemoveCollationTests.test_remove) ... skipped 'PostgreSQL specific tests.' 228s test_allow_migrate (postgres_tests.test_operations.CreateExtensionTests.test_allow_migrate) ... skipped 'PostgreSQL specific tests.' 228s test_create_existing_extension (postgres_tests.test_operations.CreateExtensionTests.test_create_existing_extension) ... skipped 'PostgreSQL specific tests.' 228s test_drop_nonexistent_extension (postgres_tests.test_operations.CreateExtensionTests.test_drop_nonexistent_extension) ... skipped 'PostgreSQL specific tests.' 228s test_no_allow_migrate (postgres_tests.test_operations.CreateExtensionTests.test_no_allow_migrate) ... skipped 'PostgreSQL specific tests.' 228s test_adjacent_to (postgres_tests.test_ranges.TestQuerying.test_adjacent_to) ... skipped 'PostgreSQL specific tests' 228s test_bound_type (postgres_tests.test_ranges.TestQuerying.test_bound_type) ... skipped 'PostgreSQL specific tests' 228s test_contained_by (postgres_tests.test_ranges.TestQuerying.test_contained_by) ... skipped 'PostgreSQL specific tests' 228s test_contains (postgres_tests.test_ranges.TestQuerying.test_contains) ... skipped 'PostgreSQL specific tests' 228s test_contains_range (postgres_tests.test_ranges.TestQuerying.test_contains_range) ... skipped 'PostgreSQL specific tests' 228s test_endswith (postgres_tests.test_ranges.TestQuerying.test_endswith) ... skipped 'PostgreSQL specific tests' 228s test_exact (postgres_tests.test_ranges.TestQuerying.test_exact) ... skipped 'PostgreSQL specific tests' 228s test_fully_gt (postgres_tests.test_ranges.TestQuerying.test_fully_gt) ... skipped 'PostgreSQL specific tests' 228s test_fully_lt (postgres_tests.test_ranges.TestQuerying.test_fully_lt) ... skipped 'PostgreSQL specific tests' 228s test_isempty (postgres_tests.test_ranges.TestQuerying.test_isempty) ... skipped 'PostgreSQL specific tests' 228s test_isnull (postgres_tests.test_ranges.TestQuerying.test_isnull) ... skipped 'PostgreSQL specific tests' 228s test_not_gt (postgres_tests.test_ranges.TestQuerying.test_not_gt) ... skipped 'PostgreSQL specific tests' 228s test_not_lt (postgres_tests.test_ranges.TestQuerying.test_not_lt) ... skipped 'PostgreSQL specific tests' 228s test_overlap (postgres_tests.test_ranges.TestQuerying.test_overlap) ... skipped 'PostgreSQL specific tests' 228s test_startswith (postgres_tests.test_ranges.TestQuerying.test_startswith) ... skipped 'PostgreSQL specific tests' 228s test_startswith_chaining (postgres_tests.test_ranges.TestQuerying.test_startswith_chaining) ... skipped 'PostgreSQL specific tests' 228s test_auto_field_contained_by (postgres_tests.test_ranges.TestQueryingWithRanges.test_auto_field_contained_by) ... skipped 'PostgreSQL specific tests' 228s test_big_auto_field_contained_by (postgres_tests.test_ranges.TestQueryingWithRanges.test_big_auto_field_contained_by) ... skipped 'PostgreSQL specific tests' 228s test_biginteger_range (postgres_tests.test_ranges.TestQueryingWithRanges.test_biginteger_range) ... skipped 'PostgreSQL specific tests' 228s test_date_range (postgres_tests.test_ranges.TestQueryingWithRanges.test_date_range) ... skipped 'PostgreSQL specific tests' 228s test_date_range_datetime_field (postgres_tests.test_ranges.TestQueryingWithRanges.test_date_range_datetime_field) ... skipped 'PostgreSQL specific tests' 228s test_datetime_range (postgres_tests.test_ranges.TestQueryingWithRanges.test_datetime_range) ... skipped 'PostgreSQL specific tests' 228s test_decimal_field_contained_by (postgres_tests.test_ranges.TestQueryingWithRanges.test_decimal_field_contained_by) ... skipped 'PostgreSQL specific tests' 228s test_exclude (postgres_tests.test_ranges.TestQueryingWithRanges.test_exclude) ... skipped 'PostgreSQL specific tests' 228s test_f_ranges (postgres_tests.test_ranges.TestQueryingWithRanges.test_f_ranges) ... skipped 'PostgreSQL specific tests' 228s test_float_range (postgres_tests.test_ranges.TestQueryingWithRanges.test_float_range) ... skipped 'PostgreSQL specific tests' 228s test_integer_range (postgres_tests.test_ranges.TestQueryingWithRanges.test_integer_range) ... skipped 'PostgreSQL specific tests' 228s test_small_auto_field_contained_by (postgres_tests.test_ranges.TestQueryingWithRanges.test_small_auto_field_contained_by) ... skipped 'PostgreSQL specific tests' 228s test_small_integer_field_contained_by (postgres_tests.test_ranges.TestQueryingWithRanges.test_small_integer_field_contained_by) ... skipped 'PostgreSQL specific tests' 228s test_all_fields (postgres_tests.test_ranges.TestSaveLoad.test_all_fields) ... skipped 'PostgreSQL specific tests' 228s test_empty (postgres_tests.test_ranges.TestSaveLoad.test_empty) ... skipped 'PostgreSQL specific tests' 228s test_model_set_on_base_field (postgres_tests.test_ranges.TestSaveLoad.test_model_set_on_base_field) ... skipped 'PostgreSQL specific tests' 228s test_null (postgres_tests.test_ranges.TestSaveLoad.test_null) ... skipped 'PostgreSQL specific tests' 228s test_range_object (postgres_tests.test_ranges.TestSaveLoad.test_range_object) ... skipped 'PostgreSQL specific tests' 228s test_range_object_boundaries (postgres_tests.test_ranges.TestSaveLoad.test_range_object_boundaries) ... skipped 'PostgreSQL specific tests' 228s test_range_object_boundaries_range_with_default_bounds (postgres_tests.test_ranges.TestSaveLoad.test_range_object_boundaries_range_with_default_bounds) ... skipped 'PostgreSQL specific tests' 228s test_tuple (postgres_tests.test_ranges.TestSaveLoad.test_tuple) ... skipped 'PostgreSQL specific tests' 228s test_tuple_range_with_default_bounds (postgres_tests.test_ranges.TestSaveLoad.test_tuple_range_with_default_bounds) ... skipped 'PostgreSQL specific tests' 228s test_unbounded (postgres_tests.test_ranges.TestSaveLoad.test_unbounded) ... skipped 'PostgreSQL specific tests' 228s test_date_range_contains (postgres_tests.test_ranges.TestRangeContainsLookup.test_date_range_contains) ... skipped 'PostgreSQL specific tests' 228s test_datetime_range_contains (postgres_tests.test_ranges.TestRangeContainsLookup.test_datetime_range_contains) ... skipped 'PostgreSQL specific tests' 228s test_bad_search_type (postgres_tests.test_search.MultipleFieldsTest.test_bad_search_type) ... skipped 'PostgreSQL specific tests' 228s test_config_from_field_explicit (postgres_tests.test_search.MultipleFieldsTest.test_config_from_field_explicit) ... skipped 'PostgreSQL specific tests' 228s test_config_from_field_implicit (postgres_tests.test_search.MultipleFieldsTest.test_config_from_field_implicit) ... skipped 'PostgreSQL specific tests' 228s test_config_query_explicit (postgres_tests.test_search.MultipleFieldsTest.test_config_query_explicit) ... skipped 'PostgreSQL specific tests' 228s test_config_query_implicit (postgres_tests.test_search.MultipleFieldsTest.test_config_query_implicit) ... skipped 'PostgreSQL specific tests' 228s test_non_exact_match (postgres_tests.test_search.MultipleFieldsTest.test_non_exact_match) ... skipped 'PostgreSQL specific tests' 228s test_phrase_search (postgres_tests.test_search.MultipleFieldsTest.test_phrase_search) ... skipped 'PostgreSQL specific tests' 228s test_phrase_search_with_config (postgres_tests.test_search.MultipleFieldsTest.test_phrase_search_with_config) ... skipped 'PostgreSQL specific tests' 228s test_raw_search (postgres_tests.test_search.MultipleFieldsTest.test_raw_search) ... skipped 'PostgreSQL specific tests' 228s test_raw_search_with_config (postgres_tests.test_search.MultipleFieldsTest.test_raw_search_with_config) ... skipped 'PostgreSQL specific tests' 228s test_search_two_terms (postgres_tests.test_search.MultipleFieldsTest.test_search_two_terms) ... skipped 'PostgreSQL specific tests' 228s test_search_with_non_text (postgres_tests.test_search.MultipleFieldsTest.test_search_with_non_text) ... skipped 'PostgreSQL specific tests' 228s test_search_with_null (postgres_tests.test_search.MultipleFieldsTest.test_search_with_null) ... skipped 'PostgreSQL specific tests' 228s test_simple_on_dialogue (postgres_tests.test_search.MultipleFieldsTest.test_simple_on_dialogue) ... skipped 'PostgreSQL specific tests' 228s test_simple_on_scene (postgres_tests.test_search.MultipleFieldsTest.test_simple_on_scene) ... skipped 'PostgreSQL specific tests' 228s test_terms_adjacent (postgres_tests.test_search.MultipleFieldsTest.test_terms_adjacent) ... skipped 'PostgreSQL specific tests' 228s test_web_search (postgres_tests.test_search.MultipleFieldsTest.test_web_search) ... skipped 'PostgreSQL specific tests' 228s test_web_search_with_config (postgres_tests.test_search.MultipleFieldsTest.test_web_search_with_config) ... skipped 'PostgreSQL specific tests' 228s test_headline (postgres_tests.test_search.SearchHeadlineTests.test_headline) ... skipped 'PostgreSQL specific tests' 228s test_headline_fragments_words_options (postgres_tests.test_search.SearchHeadlineTests.test_headline_fragments_words_options) ... skipped 'PostgreSQL specific tests' 228s test_headline_highlight_all_option (postgres_tests.test_search.SearchHeadlineTests.test_headline_highlight_all_option) ... skipped 'PostgreSQL specific tests' 228s test_headline_separator_options (postgres_tests.test_search.SearchHeadlineTests.test_headline_separator_options) ... skipped 'PostgreSQL specific tests' 228s test_headline_short_word_option (postgres_tests.test_search.SearchHeadlineTests.test_headline_short_word_option) ... skipped 'PostgreSQL specific tests' 228s test_headline_untyped_args (postgres_tests.test_search.SearchHeadlineTests.test_headline_untyped_args) ... skipped 'PostgreSQL specific tests' 228s test_headline_with_config (postgres_tests.test_search.SearchHeadlineTests.test_headline_with_config) ... skipped 'PostgreSQL specific tests' 228s test_headline_with_config_from_field (postgres_tests.test_search.SearchHeadlineTests.test_headline_with_config_from_field) ... skipped 'PostgreSQL specific tests' 228s test_existing_vector (postgres_tests.test_search.SearchVectorFieldTest.test_existing_vector) ... skipped 'PostgreSQL specific tests' 228s test_existing_vector_config_explicit (postgres_tests.test_search.SearchVectorFieldTest.test_existing_vector_config_explicit) ... skipped 'PostgreSQL specific tests' 228s test_single_coalesce_expression (postgres_tests.test_search.SearchVectorFieldTest.test_single_coalesce_expression) ... skipped 'PostgreSQL specific tests' 228s test_values_with_percent (postgres_tests.test_search.SearchVectorFieldTest.test_values_with_percent) ... skipped 'PostgreSQL specific tests' 228s test_non_exact_match (postgres_tests.test_search.SimpleSearchTest.test_non_exact_match) ... skipped 'PostgreSQL specific tests' 228s test_search_query_config (postgres_tests.test_search.SimpleSearchTest.test_search_query_config) ... skipped 'PostgreSQL specific tests' 228s test_search_two_terms (postgres_tests.test_search.SimpleSearchTest.test_search_two_terms) ... skipped 'PostgreSQL specific tests' 228s test_search_two_terms_with_partial_match (postgres_tests.test_search.SimpleSearchTest.test_search_two_terms_with_partial_match) ... skipped 'PostgreSQL specific tests' 228s test_search_with_F_expression (postgres_tests.test_search.SimpleSearchTest.test_search_with_F_expression) ... skipped 'PostgreSQL specific tests' 228s test_simple (postgres_tests.test_search.SimpleSearchTest.test_simple) ... skipped 'PostgreSQL specific tests' 228s test_combine_different_configs (postgres_tests.test_search.TestCombinations.test_combine_different_configs) ... skipped 'PostgreSQL specific tests' 228s test_combine_different_vector_configs (postgres_tests.test_search.TestCombinations.test_combine_different_vector_configs) ... skipped 'PostgreSQL specific tests' 228s test_combine_raw_phrase (postgres_tests.test_search.TestCombinations.test_combine_raw_phrase) ... skipped 'PostgreSQL specific tests' 228s test_combined_configs (postgres_tests.test_search.TestCombinations.test_combined_configs) ... skipped 'PostgreSQL specific tests' 228s test_query_and (postgres_tests.test_search.TestCombinations.test_query_and) ... skipped 'PostgreSQL specific tests' 228s test_query_combined_mismatch (postgres_tests.test_search.TestCombinations.test_query_combined_mismatch) ... skipped 'PostgreSQL specific tests' 228s test_query_invert (postgres_tests.test_search.TestCombinations.test_query_invert) ... skipped 'PostgreSQL specific tests' 228s test_query_multiple_and (postgres_tests.test_search.TestCombinations.test_query_multiple_and) ... skipped 'PostgreSQL specific tests' 228s test_query_multiple_or (postgres_tests.test_search.TestCombinations.test_query_multiple_or) ... skipped 'PostgreSQL specific tests' 228s test_query_or (postgres_tests.test_search.TestCombinations.test_query_or) ... skipped 'PostgreSQL specific tests' 228s test_vector_add (postgres_tests.test_search.TestCombinations.test_vector_add) ... skipped 'PostgreSQL specific tests' 228s test_vector_add_multi (postgres_tests.test_search.TestCombinations.test_vector_add_multi) ... skipped 'PostgreSQL specific tests' 228s test_vector_combined_mismatch (postgres_tests.test_search.TestCombinations.test_vector_combined_mismatch) ... skipped 'PostgreSQL specific tests' 228s test_cover_density_ranking (postgres_tests.test_search.TestRankingAndWeights.test_cover_density_ranking) ... skipped 'PostgreSQL specific tests' 228s test_rank_passing_untyped_args (postgres_tests.test_search.TestRankingAndWeights.test_rank_passing_untyped_args) ... skipped 'PostgreSQL specific tests' 228s test_ranked_custom_weights (postgres_tests.test_search.TestRankingAndWeights.test_ranked_custom_weights) ... skipped 'PostgreSQL specific tests' 228s test_ranking (postgres_tests.test_search.TestRankingAndWeights.test_ranking) ... skipped 'PostgreSQL specific tests' 228s test_ranking_chaining (postgres_tests.test_search.TestRankingAndWeights.test_ranking_chaining) ... skipped 'PostgreSQL specific tests' 228s test_ranking_with_masked_normalization (postgres_tests.test_search.TestRankingAndWeights.test_ranking_with_masked_normalization) ... skipped 'PostgreSQL specific tests' 228s test_ranking_with_normalization (postgres_tests.test_search.TestRankingAndWeights.test_ranking_with_normalization) ... skipped 'PostgreSQL specific tests' 228s test_weights_in_vector (postgres_tests.test_search.TestRankingAndWeights.test_weights_in_vector) ... skipped 'PostgreSQL specific tests' 228s test_citext_cache (postgres_tests.test_signals.OIDTests.test_citext_cache) ... skipped 'PostgreSQL specific tests' 228s test_citext_values (postgres_tests.test_signals.OIDTests.test_citext_values) ... skipped 'PostgreSQL specific tests' 228s test_hstore_cache (postgres_tests.test_signals.OIDTests.test_hstore_cache) ... skipped 'PostgreSQL specific tests' 228s test_hstore_values (postgres_tests.test_signals.OIDTests.test_hstore_values) ... skipped 'PostgreSQL specific tests' 228s test_register_type_handlers_no_db (postgres_tests.test_signals.OIDTests.test_register_type_handlers_no_db) 228s Registering type handlers for the nodb connection does nothing. ... skipped 'PostgreSQL specific tests' 228s test_trigram_search (postgres_tests.test_trigram.TrigramTest.test_trigram_search) ... skipped 'PostgreSQL specific tests' 228s test_trigram_similarity (postgres_tests.test_trigram.TrigramTest.test_trigram_similarity) ... skipped 'PostgreSQL specific tests' 228s test_trigram_similarity_alternate (postgres_tests.test_trigram.TrigramTest.test_trigram_similarity_alternate) ... skipped 'PostgreSQL specific tests' 228s test_trigram_strict_word_distance (postgres_tests.test_trigram.TrigramTest.test_trigram_strict_word_distance) ... skipped 'PostgreSQL specific tests' 228s test_trigram_strict_word_search_matched (postgres_tests.test_trigram.TrigramTest.test_trigram_strict_word_search_matched) ... skipped 'PostgreSQL specific tests' 228s test_trigram_strict_word_similarity (postgres_tests.test_trigram.TrigramTest.test_trigram_strict_word_similarity) ... skipped 'PostgreSQL specific tests' 228s test_trigram_word_search (postgres_tests.test_trigram.TrigramTest.test_trigram_word_search) ... skipped 'PostgreSQL specific tests' 228s test_trigram_word_similarity (postgres_tests.test_trigram.TrigramTest.test_trigram_word_similarity) ... skipped 'PostgreSQL specific tests' 228s test_trigram_word_similarity_alternate (postgres_tests.test_trigram.TrigramTest.test_trigram_word_similarity_alternate) ... skipped 'PostgreSQL specific tests' 228s test_trigram_search (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_search) ... skipped 'PostgreSQL specific tests' 228s test_trigram_similarity (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_similarity) ... skipped 'PostgreSQL specific tests' 228s test_trigram_similarity_alternate (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_similarity_alternate) ... skipped 'PostgreSQL specific tests' 228s test_trigram_strict_word_distance (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_strict_word_distance) ... skipped 'PostgreSQL specific tests' 228s test_trigram_strict_word_search_matched (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_strict_word_search_matched) ... skipped 'PostgreSQL specific tests' 228s test_trigram_strict_word_similarity (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_strict_word_similarity) ... skipped 'PostgreSQL specific tests' 228s test_trigram_word_search (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_word_search) ... skipped 'PostgreSQL specific tests' 228s test_trigram_word_similarity (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_word_similarity) ... skipped 'PostgreSQL specific tests' 228s test_trigram_word_similarity_alternate (postgres_tests.test_trigram.TrigramTextFieldTest.test_trigram_word_similarity_alternate) ... skipped 'PostgreSQL specific tests' 228s test_unaccent (postgres_tests.test_unaccent.UnaccentTextFieldTest.test_unaccent) ... skipped 'PostgreSQL specific tests' 228s test_unaccent_accentuated_needle (postgres_tests.test_unaccent.UnaccentTextFieldTest.test_unaccent_accentuated_needle) ... skipped 'PostgreSQL specific tests' 228s test_unaccent_chained (postgres_tests.test_unaccent.UnaccentTextFieldTest.test_unaccent_chained) 228s Unaccent can be used chained with a lookup (which should be the case ... skipped 'PostgreSQL specific tests' 228s test_unaccent_with_conforming_strings_off (postgres_tests.test_unaccent.UnaccentTextFieldTest.test_unaccent_with_conforming_strings_off) 228s SQL is valid when standard_conforming_strings is off. ... skipped 'PostgreSQL specific tests' 228s test_unaccent (postgres_tests.test_unaccent.UnaccentTest.test_unaccent) ... skipped 'PostgreSQL specific tests' 228s test_unaccent_accentuated_needle (postgres_tests.test_unaccent.UnaccentTest.test_unaccent_accentuated_needle) ... skipped 'PostgreSQL specific tests' 228s test_unaccent_chained (postgres_tests.test_unaccent.UnaccentTest.test_unaccent_chained) 228s Unaccent can be used chained with a lookup (which should be the case ... skipped 'PostgreSQL specific tests' 228s test_unaccent_with_conforming_strings_off (postgres_tests.test_unaccent.UnaccentTest.test_unaccent_with_conforming_strings_off) 228s SQL is valid when standard_conforming_strings is off. ... skipped 'PostgreSQL specific tests' 228s test_inlineformset_custom_callback (model_formsets_regress.tests.FormfieldCallbackTests.test_inlineformset_custom_callback) ... ok 228s test_inlineformset_factory_default (model_formsets_regress.tests.FormfieldCallbackTests.test_inlineformset_factory_default) ... ok 228s test_modelformset_custom_callback (model_formsets_regress.tests.FormfieldCallbackTests.test_modelformset_custom_callback) ... ok 228s test_modelformset_factory_default (model_formsets_regress.tests.FormfieldCallbackTests.test_modelformset_factory_default) ... ok 228s test_all_delete (model_formsets_regress.tests.FormfieldShouldDeleteFormTests.test_all_delete) 228s Verify base formset honors DELETE field ... ok 228s test_custom_delete (model_formsets_regress.tests.FormfieldShouldDeleteFormTests.test_custom_delete) 228s Verify DeleteFormset ignores DELETE field and uses form method ... ok 228s test_init_database (model_formsets_regress.tests.FormfieldShouldDeleteFormTests.test_init_database) 228s Add test data to database via formset ... ok 228s test_no_delete (model_formsets_regress.tests.FormfieldShouldDeleteFormTests.test_no_delete) 228s Verify base formset doesn't modify database ... ok 228s test_error_class (model_formsets_regress.tests.FormsetTests.test_error_class) 228s Test the type of Formset and Form error attributes ... ok 228s test_extraneous_query_is_not_run (model_formsets_regress.tests.FormsetTests.test_extraneous_query_is_not_run) ... ok 228s test_initial_data (model_formsets_regress.tests.FormsetTests.test_initial_data) ... ok 228s test_delete_already_deleted (model_formsets_regress.tests.RedeleteTests.test_delete_already_deleted) ... ok 228s test_resubmit (model_formsets_regress.tests.RedeleteTests.test_resubmit) ... ok 228s test_empty_fields_on_modelformset (model_formsets_regress.tests.InlineFormsetTests.test_empty_fields_on_modelformset) 228s No fields passed to modelformset_factory() should result in no fields ... ok 228s test_formset_over_inherited_model (model_formsets_regress.tests.InlineFormsetTests.test_formset_over_inherited_model) 228s A formset over a ForeignKey with a to_field can be saved. ... ok 228s test_formset_over_to_field (model_formsets_regress.tests.InlineFormsetTests.test_formset_over_to_field) 228s A formset over a ForeignKey with a to_field can be saved. ... ok 228s test_formset_with_none_instance (model_formsets_regress.tests.InlineFormsetTests.test_formset_with_none_instance) 228s A formset with instance=None can be created. Regression for #11872 ... ok 228s test_initial_data (model_formsets_regress.tests.InlineFormsetTests.test_initial_data) ... ok 228s test_inline_model_with_primary_to_field (model_formsets_regress.tests.InlineFormsetTests.test_inline_model_with_primary_to_field) 228s An inline model with a OneToOneField with to_field & primary key. ... ok 228s test_inline_model_with_to_field (model_formsets_regress.tests.InlineFormsetTests.test_inline_model_with_to_field) 228s #13794 --- An inline model with a to_field of a formset with instance ... ok 228s test_inline_model_with_to_field_to_rel (model_formsets_regress.tests.InlineFormsetTests.test_inline_model_with_to_field_to_rel) 228s #13794 --- An inline model with a to_field to a related field of a ... ok 228s test_save_as_new_with_new_inlines (model_formsets_regress.tests.InlineFormsetTests.test_save_as_new_with_new_inlines) 228s Existing and new inlines are saved with save_as_new. ... ok 228s test_change_editable (timezones.tests.AdminTests.test_change_editable) ... ok 228s test_change_editable_in_other_timezone (timezones.tests.AdminTests.test_change_editable_in_other_timezone) ... ok 228s test_change_readonly (timezones.tests.AdminTests.test_change_readonly) ... ok 228s test_change_readonly_in_other_timezone (timezones.tests.AdminTests.test_change_readonly_in_other_timezone) ... ok 228s test_changelist (timezones.tests.AdminTests.test_changelist) ... ok 228s test_changelist_in_other_timezone (timezones.tests.AdminTests.test_changelist_in_other_timezone) ... ok 228s test_form (timezones.tests.LegacyFormsTests.test_form) ... ok 228s test_form_with_ambiguous_time (timezones.tests.LegacyFormsTests.test_form_with_ambiguous_time) ... ok 228s test_form_with_non_existent_time (timezones.tests.LegacyFormsTests.test_form_with_non_existent_time) ... ok 228s test_model_form (timezones.tests.LegacyFormsTests.test_model_form) ... ok 228s test_split_form (timezones.tests.LegacyFormsTests.test_split_form) ... ok 228s test_auto_now_and_auto_now_add (timezones.tests.LegacyDatabaseTests.test_auto_now_and_auto_now_add) ... ok 228s test_aware_datetime_in_local_timezone (timezones.tests.LegacyDatabaseTests.test_aware_datetime_in_local_timezone) ... skipped "Database doesn't support feature(s): supports_timezones" 228s test_aware_datetime_in_local_timezone_with_microsecond (timezones.tests.LegacyDatabaseTests.test_aware_datetime_in_local_timezone_with_microsecond) ... skipped "Database doesn't support feature(s): supports_timezones" 228s test_aware_datetime_in_other_timezone (timezones.tests.LegacyDatabaseTests.test_aware_datetime_in_other_timezone) ... skipped "Database doesn't support feature(s): supports_timezones" 228s test_aware_datetime_in_utc (timezones.tests.LegacyDatabaseTests.test_aware_datetime_in_utc) ... skipped "Database doesn't support feature(s): supports_timezones" 228s test_aware_datetime_unsupported (timezones.tests.LegacyDatabaseTests.test_aware_datetime_unsupported) ... ok 228s test_cursor_execute_accepts_naive_datetime (timezones.tests.LegacyDatabaseTests.test_cursor_execute_accepts_naive_datetime) ... ok 228s test_cursor_execute_returns_naive_datetime (timezones.tests.LegacyDatabaseTests.test_cursor_execute_returns_naive_datetime) ... ok 228s test_filter_date_field_with_aware_datetime (timezones.tests.LegacyDatabaseTests.test_filter_date_field_with_aware_datetime) ... ok 228s test_naive_datetime (timezones.tests.LegacyDatabaseTests.test_naive_datetime) ... ok 228s test_naive_datetime_with_microsecond (timezones.tests.LegacyDatabaseTests.test_naive_datetime_with_microsecond) ... ok 228s test_query_aggregation (timezones.tests.LegacyDatabaseTests.test_query_aggregation) ... ok 228s test_query_annotation (timezones.tests.LegacyDatabaseTests.test_query_annotation) ... ok 228s test_query_datetime_lookups (timezones.tests.LegacyDatabaseTests.test_query_datetime_lookups) ... ok 228s test_query_datetimes (timezones.tests.LegacyDatabaseTests.test_query_datetimes) ... ok 228s test_query_filter (timezones.tests.LegacyDatabaseTests.test_query_filter) ... ok 228s test_raw_sql (timezones.tests.LegacyDatabaseTests.test_raw_sql) ... ok 229s test_form (timezones.tests.NewFormsTests.test_form) ... ok 229s test_form_with_ambiguous_time (timezones.tests.NewFormsTests.test_form_with_ambiguous_time) ... ok 229s test_form_with_non_existent_time (timezones.tests.NewFormsTests.test_form_with_non_existent_time) ... ok 229s test_form_with_other_timezone (timezones.tests.NewFormsTests.test_form_with_other_timezone) ... ok 229s test_localized_form (timezones.tests.NewFormsTests.test_localized_form) ... ok 229s test_localized_model_form (timezones.tests.NewFormsTests.test_localized_model_form) ... ok 229s test_model_form (timezones.tests.NewFormsTests.test_model_form) ... ok 229s test_split_form (timezones.tests.NewFormsTests.test_split_form) ... ok 229s test_migration_warning_multiple_apps (admin_scripts.tests.ManageRunserverMigrationWarning.test_migration_warning_multiple_apps) ... ok 229s test_migration_warning_one_app (admin_scripts.tests.ManageRunserverMigrationWarning.test_migration_warning_one_app) ... ok 229s test_book_name_deutsh (test_utils.test_testcase.SetupTestDataIsolationTests.test_book_name_deutsh) ... ok 229s test_book_name_french (test_utils.test_testcase.SetupTestDataIsolationTests.test_book_name_french) ... ok 229s test_auto_now_and_auto_now_add (timezones.tests.NewDatabaseTests.test_auto_now_and_auto_now_add) ... ok 229s test_aware_datetime_in_local_timezone (timezones.tests.NewDatabaseTests.test_aware_datetime_in_local_timezone) ... ok 229s test_aware_datetime_in_local_timezone_with_microsecond (timezones.tests.NewDatabaseTests.test_aware_datetime_in_local_timezone_with_microsecond) ... ok 229s test_aware_datetime_in_other_timezone (timezones.tests.NewDatabaseTests.test_aware_datetime_in_other_timezone) ... ok 229s test_aware_datetime_in_utc (timezones.tests.NewDatabaseTests.test_aware_datetime_in_utc) ... ok 229s test_aware_time_unsupported (timezones.tests.NewDatabaseTests.test_aware_time_unsupported) ... ok 229s test_connection_timezone (timezones.tests.NewDatabaseTests.test_connection_timezone) ... ok 229s test_cursor_execute_accepts_aware_datetime (timezones.tests.NewDatabaseTests.test_cursor_execute_accepts_aware_datetime) ... skipped "Database doesn't support feature(s): supports_timezones" 229s test_cursor_execute_accepts_naive_datetime (timezones.tests.NewDatabaseTests.test_cursor_execute_accepts_naive_datetime) ... ok 229s test_cursor_execute_returns_aware_datetime (timezones.tests.NewDatabaseTests.test_cursor_execute_returns_aware_datetime) ... skipped "Database doesn't support feature(s): supports_timezones" 229s test_cursor_execute_returns_naive_datetime (timezones.tests.NewDatabaseTests.test_cursor_execute_returns_naive_datetime) ... ok 229s test_cursor_explicit_time_zone (timezones.tests.NewDatabaseTests.test_cursor_explicit_time_zone) ... skipped "Database doesn't support feature(s): supports_timezones" 229s test_datetime_from_date (timezones.tests.NewDatabaseTests.test_datetime_from_date) ... ok 229s test_filter_date_field_with_aware_datetime (timezones.tests.NewDatabaseTests.test_filter_date_field_with_aware_datetime) ... ok 229s test_naive_datetime (timezones.tests.NewDatabaseTests.test_naive_datetime) ... ok 229s test_naive_datetime_with_microsecond (timezones.tests.NewDatabaseTests.test_naive_datetime_with_microsecond) ... ok 229s test_null_datetime (timezones.tests.NewDatabaseTests.test_null_datetime) ... ok 229s test_query_aggregation (timezones.tests.NewDatabaseTests.test_query_aggregation) ... ok 229s test_query_annotation (timezones.tests.NewDatabaseTests.test_query_annotation) ... ok 229s test_query_convert_timezones (timezones.tests.NewDatabaseTests.test_query_convert_timezones) ... ok 229s test_query_datetime_lookups (timezones.tests.NewDatabaseTests.test_query_datetime_lookups) ... ok 229s test_query_datetime_lookups_in_other_timezone (timezones.tests.NewDatabaseTests.test_query_datetime_lookups_in_other_timezone) ... ok 229s test_query_datetimes (timezones.tests.NewDatabaseTests.test_query_datetimes) ... ok 229s test_query_datetimes_in_other_timezone (timezones.tests.NewDatabaseTests.test_query_datetimes_in_other_timezone) ... ok 229s test_query_filter (timezones.tests.NewDatabaseTests.test_query_filter) ... ok 229s test_query_filter_with_naive_datetime (timezones.tests.NewDatabaseTests.test_query_filter_with_naive_datetime) ... ok 229s test_query_filter_with_pytz_timezones (timezones.tests.NewDatabaseTests.test_query_filter_with_pytz_timezones) ... ok 229s test_raw_sql (timezones.tests.NewDatabaseTests.test_raw_sql) ... ok 229s test_update_with_timedelta (timezones.tests.NewDatabaseTests.test_update_with_timedelta) ... ok 229s test_binaryfield_data_type (test_utils.test_testcase.TestDataTests.test_binaryfield_data_type) ... ok 229s test_class_attribute_equality (test_utils.test_testcase.TestDataTests.test_class_attribute_equality) 229s Class level test data is equal to instance level test data. ... ok 229s test_class_attribute_identity (test_utils.test_testcase.TestDataTests.test_class_attribute_identity) 229s Class level test data is not identical to instance level test data. ... ok 229s test_identity_preservation (test_utils.test_testcase.TestDataTests.test_identity_preservation) 229s Identity of test data is preserved between accesses. ... ok 229s test_known_related_objects_identity_preservation (test_utils.test_testcase.TestDataTests.test_known_related_objects_identity_preservation) 229s Known related objects identity is preserved. ... ok 229s test_repr (test_utils.test_testcase.TestDataTests.test_repr) ... ok 229s test_queries_cleared (test_utils.test_transactiontestcase.TransactionTestCaseDatabasesTests.test_queries_cleared) 229s TransactionTestCase._pre_setup() clears the connections' queries_log ... ok 229s test_failure (test_utils.tests.AssertNumQueriesContextManagerTests.test_failure) ... ok 229s test_simple (test_utils.tests.AssertNumQueriesContextManagerTests.test_simple) ... ok 229s test_with_client (test_utils.tests.AssertNumQueriesContextManagerTests.test_with_client) ... ok 229s test_disallowed_database_connection (test_utils.test_testcase.TestTestCase.test_disallowed_database_connection) ... ok 229s test_disallowed_database_queries (test_utils.test_testcase.TestTestCase.test_disallowed_database_queries) ... ok 229s test_fixture_teardown_checks_constraints (test_utils.test_testcase.TestTestCase.test_fixture_teardown_checks_constraints) ... ok 229s test_reset_sequences (test_utils.test_testcase.TestTestCase.test_reset_sequences) ... ok 229s test_assert_num_queries (test_utils.tests.AssertNumQueriesTests.test_assert_num_queries) ... ok 229s test_assert_num_queries_with_client (test_utils.tests.AssertNumQueriesTests.test_assert_num_queries_with_client) ... ok 229s test_deprecated_assertquerysetequal (test_utils.tests.AssertQuerySetEqualTests.test_deprecated_assertquerysetequal) ... ok 229s test_empty (test_utils.tests.AssertQuerySetEqualTests.test_empty) ... ok 229s test_flat_values_list (test_utils.tests.AssertQuerySetEqualTests.test_flat_values_list) ... ok 229s test_maxdiff (test_utils.tests.AssertQuerySetEqualTests.test_maxdiff) ... ok 229s test_ordered (test_utils.tests.AssertQuerySetEqualTests.test_ordered) ... ok 229s test_queryset (test_utils.tests.AssertQuerySetEqualTests.test_queryset) ... ok 229s test_rename_assertquerysetequal_deprecation_warning (test_utils.tests.AssertQuerySetEqualTests.test_rename_assertquerysetequal_deprecation_warning) ... ok 229s test_repeated_values (test_utils.tests.AssertQuerySetEqualTests.test_repeated_values) 229s assertQuerySetEqual checks the number of appearance of each item ... ok 229s test_repr_transform (test_utils.tests.AssertQuerySetEqualTests.test_repr_transform) ... ok 229s test_transform (test_utils.tests.AssertQuerySetEqualTests.test_transform) ... ok 229s test_undefined_order (test_utils.tests.AssertQuerySetEqualTests.test_undefined_order) ... ok 229s test_unordered (test_utils.tests.AssertQuerySetEqualTests.test_unordered) ... ok 230s test_failure (test_utils.tests.CaptureQueriesContextManagerTests.test_failure) ... ok 230s test_nested (test_utils.tests.CaptureQueriesContextManagerTests.test_nested) ... ok 230s test_simple (test_utils.tests.CaptureQueriesContextManagerTests.test_simple) ... ok 230s test_with_client (test_utils.tests.CaptureQueriesContextManagerTests.test_with_client) ... ok 230s test_within (test_utils.tests.CaptureQueriesContextManagerTests.test_within) ... ok 230s test_different_using (test_utils.tests.CaptureOnCommitCallbacksTests.test_different_using) ... ok 230s test_execute (test_utils.tests.CaptureOnCommitCallbacksTests.test_execute) ... ok 230s test_execute_recursive (test_utils.tests.CaptureOnCommitCallbacksTests.test_execute_recursive) ... ok 230s test_execute_robust (test_utils.tests.CaptureOnCommitCallbacksTests.test_execute_robust) ... ok 230s test_execute_tree (test_utils.tests.CaptureOnCommitCallbacksTests.test_execute_tree) 230s A visualisation of the callback tree tested. Each node is expected to ... ok 230s test_no_arguments (test_utils.tests.CaptureOnCommitCallbacksTests.test_no_arguments) ... ok 230s test_pre_callback (test_utils.tests.CaptureOnCommitCallbacksTests.test_pre_callback) ... ok 230s test_using (test_utils.tests.CaptureOnCommitCallbacksTests.test_using) ... ok 230s test_with_rolled_back_savepoint (test_utils.tests.CaptureOnCommitCallbacksTests.test_with_rolled_back_savepoint) ... ok 230s test_fixtures_are_skipped (test_utils.tests.SkippingExtraTests.test_fixtures_are_skipped) ... skipped 'Fixture loading should not be performed for skipped tests.' 230s test_missing_default_databases (test_utils.tests.SkippingClassTestCase.test_missing_default_databases) ... ok 230s test_skip_class_unless_db_feature (test_utils.tests.SkippingClassTestCase.test_skip_class_unless_db_feature) ... ok 230s test_failure_in_setUpTestData_should_rollback_transaction (test_utils.tests.TestBadSetUpTestData.test_failure_in_setUpTestData_should_rollback_transaction) ... ok 230s test_empty (empty.tests.EmptyModelTests.test_empty) ... ok 230s test_override_settings_inheritance (settings_tests.tests.ChildDecoratedTestCase.test_override_settings_inheritance) ... ok 230s test_max_recursion_error (settings_tests.tests.ClassDecoratedTestCaseSuper.test_max_recursion_error) ... ok 230s test_method_override (settings_tests.tests.FullyDecoratedTestCase.test_method_override) ... ok 230s test_override (settings_tests.tests.FullyDecoratedTestCase.test_override) ... ok 230s test_max_recursion_error (settings_tests.tests.ClassDecoratedTestCase.test_max_recursion_error) 230s Overriding a method on a super class and then calling that method on ... ok 230s test_method_override (settings_tests.tests.ClassDecoratedTestCase.test_method_override) ... ok 230s test_override (settings_tests.tests.ClassDecoratedTestCase.test_override) ... ok 230s test_setupclass_override (settings_tests.tests.ClassDecoratedTestCase.test_setupclass_override) 230s Settings are overridden within setUpClass (#21281). ... ok 230s test_create_save_error (model_forms.test_uuid.ModelFormBaseTest.test_create_save_error) ... ok 230s test_model_multiple_choice_field_uuid_pk (model_forms.test_uuid.ModelFormBaseTest.test_model_multiple_choice_field_uuid_pk) ... ok 230s test_update_save_error (model_forms.test_uuid.ModelFormBaseTest.test_update_save_error) ... ok 230s test_model_form_clean_applies_to_model (model_forms.tests.CustomCleanTests.test_model_form_clean_applies_to_model) 230s Regression test for #12960. Make sure the cleaned_data returned from ... ok 230s test_override_clean (model_forms.tests.CustomCleanTests.test_override_clean) 230s Regression for #12596: Calling super from ModelForm.clean() should be ... ok 230s test_basics (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_basics) ... ok 230s test_choice_iterator_passes_model_to_widget (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choice_iterator_passes_model_to_widget) ... ok 230s test_choice_value_hash (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choice_value_hash) ... ok 230s test_choices (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choices) ... ok 230s test_choices_bool (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choices_bool) ... ok 230s test_choices_bool_empty_label (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choices_bool_empty_label) ... ok 230s test_choices_freshness (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choices_freshness) ... ok 230s test_choices_not_fetched_when_not_rendering (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choices_not_fetched_when_not_rendering) ... ok 230s test_choices_radio_blank (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_choices_radio_blank) ... ok 230s test_clean_model_instance (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_clean_model_instance) ... ok 230s test_clean_to_field_name (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_clean_to_field_name) ... ok 230s test_custom_choice_iterator_passes_model_to_widget (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_custom_choice_iterator_passes_model_to_widget) ... ok 230s test_deepcopies_widget (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_deepcopies_widget) ... ok 230s test_disabled_modelchoicefield (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_disabled_modelchoicefield) ... ok 230s test_disabled_modelchoicefield_has_changed (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_disabled_modelchoicefield_has_changed) ... ok 230s test_disabled_modelchoicefield_initial_model_instance (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_disabled_modelchoicefield_initial_model_instance) ... ok 230s test_disabled_modelmultiplechoicefield_has_changed (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_disabled_modelmultiplechoicefield_has_changed) ... ok 230s test_disabled_multiplemodelchoicefield (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_disabled_multiplemodelchoicefield) ... ok 230s test_no_extra_query_when_accessing_attrs (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_no_extra_query_when_accessing_attrs) 230s ModelChoiceField with RadioSelect widget doesn't produce unnecessary ... ok 230s test_num_queries (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_num_queries) 230s Widgets that render multiple subwidgets shouldn't make more than one ... ok 230s test_overridable_choice_iterator (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_overridable_choice_iterator) 230s Iterator defaults to ModelChoiceIterator and can be overridden with ... ok 230s test_queryset_manager (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_queryset_manager) ... ok 230s test_queryset_none (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_queryset_none) ... ok 230s test_result_cache_not_shared (model_forms.test_modelchoicefield.ModelChoiceFieldTests.test_result_cache_not_shared) ... ok 230s test_clean_false (model_forms.tests.FileAndImageFieldTests.test_clean_false) 230s If the ``clean`` method on a non-required FileField receives False as ... ok 230s test_clean_false_required (model_forms.tests.FileAndImageFieldTests.test_clean_false_required) 230s If the ``clean`` method on a required FileField receives False as the ... ok 230s test_clear_and_file_contradiction (model_forms.tests.FileAndImageFieldTests.test_clear_and_file_contradiction) 230s If the user submits a new file upload AND checks the clear checkbox, ... ok 230s test_custom_file_field_save (model_forms.tests.FileAndImageFieldTests.test_custom_file_field_save) 230s Regression for #11149: save_form_data should be called only once ... ok 230s test_file_field_data (model_forms.tests.FileAndImageFieldTests.test_file_field_data) ... ok 230s test_file_field_multiple_save (model_forms.tests.FileAndImageFieldTests.test_file_field_multiple_save) 230s Simulate a file upload and check how many times Model.save() gets ... ok 230s test_file_path_field_blank (model_forms.tests.FileAndImageFieldTests.test_file_path_field_blank) 230s FilePathField(blank=True) includes the empty option. ... ok 230s test_filefield_required_false (model_forms.tests.FileAndImageFieldTests.test_filefield_required_false) ... ok 230s test_full_clear (model_forms.tests.FileAndImageFieldTests.test_full_clear) 230s Integration happy-path test that a model FileField can actually be set ... ok 230s test_image_field (model_forms.tests.FileAndImageFieldTests.test_image_field) ... ok 230s test_render_empty_file_field (model_forms.tests.FileAndImageFieldTests.test_render_empty_file_field) ... ok 230s test_callable_called_each_time_form_is_instantiated (model_forms.tests.LimitChoicesToTests.test_callable_called_each_time_form_is_instantiated) ... ok 230s test_custom_field_with_queryset_but_no_limit_choices_to (model_forms.tests.LimitChoicesToTests.test_custom_field_with_queryset_but_no_limit_choices_to) 230s A custom field with a `queryset` attribute but no `limit_choices_to` ... ok 230s test_fields_for_model_applies_limit_choices_to (model_forms.tests.LimitChoicesToTests.test_fields_for_model_applies_limit_choices_to) ... ok 230s test_limit_choices_to_callable_for_fk_rel (model_forms.tests.LimitChoicesToTests.test_limit_choices_to_callable_for_fk_rel) 230s A ForeignKey can use limit_choices_to as a callable (#2554). ... ok 230s test_limit_choices_to_callable_for_m2m_rel (model_forms.tests.LimitChoicesToTests.test_limit_choices_to_callable_for_m2m_rel) 230s A ManyToManyField can use limit_choices_to as a callable (#2554). ... ok 230s test_limit_choices_to_m2m_through (model_forms.tests.LimitChoicesToTests.test_limit_choices_to_m2m_through) ... ok 230s test_limit_choices_to_no_duplicates (model_forms.tests.LimitChoicesToTests.test_limit_choices_to_no_duplicates) ... ok 230s test_model_form_applies_localize_to_all_fields (model_forms.tests.LocalizedModelFormTest.test_model_form_applies_localize_to_all_fields) ... ok 230s test_model_form_applies_localize_to_some_fields (model_forms.tests.LocalizedModelFormTest.test_model_form_applies_localize_to_some_fields) ... ok 230s test_model_form_refuses_arbitrary_string (model_forms.tests.LocalizedModelFormTest.test_model_form_refuses_arbitrary_string) ... ok 231s test_auto_id (model_forms.tests.ModelFormBasicTests.test_auto_id) ... ok 231s test_base_form (model_forms.tests.ModelFormBasicTests.test_base_form) ... ok 231s test_basic_creation (model_forms.tests.ModelFormBasicTests.test_basic_creation) ... ok 231s test_custom_form_fields (model_forms.tests.ModelFormBasicTests.test_custom_form_fields) ... ok 231s test_initial_values (model_forms.tests.ModelFormBasicTests.test_initial_values) ... ok 231s test_m2m_editing (model_forms.tests.ModelFormBasicTests.test_m2m_editing) ... ok 231s test_m2m_initial_callable (model_forms.tests.ModelFormBasicTests.test_m2m_initial_callable) 231s A callable can be provided as the initial value for an m2m field. ... ok 231s test_multi_fields (model_forms.tests.ModelFormBasicTests.test_multi_fields) ... ok 231s test_recleaning_model_form_instance (model_forms.tests.ModelFormBasicTests.test_recleaning_model_form_instance) 231s Re-cleaning an instance that was added via a ModelForm shouldn't raise ... ok 231s test_runtime_choicefield_populated (model_forms.tests.ModelFormBasicTests.test_runtime_choicefield_populated) ... ok 231s test_save_commit_false (model_forms.tests.ModelFormBasicTests.test_save_commit_false) ... ok 231s test_save_with_data_errors (model_forms.tests.ModelFormBasicTests.test_save_with_data_errors) ... ok 231s test_subset_fields (model_forms.tests.ModelFormBasicTests.test_subset_fields) ... ok 231s test_validate_foreign_key_to_model_with_overridden_manager (model_forms.tests.ModelFormBasicTests.test_validate_foreign_key_to_model_with_overridden_manager) ... ok 231s test_validate_foreign_key_uses_default_manager (model_forms.tests.ModelFormBasicTests.test_validate_foreign_key_uses_default_manager) ... ok 231s test_clean_does_deduplicate_values (model_forms.tests.ModelMultipleChoiceFieldTests.test_clean_does_deduplicate_values) ... ok 231s test_model_multiple_choice_field (model_forms.tests.ModelMultipleChoiceFieldTests.test_model_multiple_choice_field) ... ok 231s test_model_multiple_choice_field_22745 (model_forms.tests.ModelMultipleChoiceFieldTests.test_model_multiple_choice_field_22745) 231s #22745 -- Make sure that ModelMultipleChoiceField with ... ok 231s test_model_multiple_choice_number_of_queries (model_forms.tests.ModelMultipleChoiceFieldTests.test_model_multiple_choice_number_of_queries) 231s ModelMultipleChoiceField does O(1) queries instead of O(n) (#10156). ... ok 231s test_model_multiple_choice_required_false (model_forms.tests.ModelMultipleChoiceFieldTests.test_model_multiple_choice_required_false) ... ok 231s test_model_multiple_choice_run_validators (model_forms.tests.ModelMultipleChoiceFieldTests.test_model_multiple_choice_run_validators) 231s ModelMultipleChoiceField run given validators (#14144). ... ok 231s test_model_multiple_choice_show_hidden_initial (model_forms.tests.ModelMultipleChoiceFieldTests.test_model_multiple_choice_show_hidden_initial) 231s Test support of show_hidden_initial by ModelMultipleChoiceField. ... ok 231s test_show_hidden_initial_changed_queries_efficiently (model_forms.tests.ModelMultipleChoiceFieldTests.test_show_hidden_initial_changed_queries_efficiently) ... ok 231s test_to_field_name_with_initial_data (model_forms.tests.ModelMultipleChoiceFieldTests.test_to_field_name_with_initial_data) ... ok 231s test_article_form (model_forms.tests.ModelFormBaseTest.test_article_form) ... ok 231s test_bad_form (model_forms.tests.ModelFormBaseTest.test_bad_form) ... ok 231s test_base_form (model_forms.tests.ModelFormBaseTest.test_base_form) ... ok 231s test_blank_false_with_null_true_foreign_key_field (model_forms.tests.ModelFormBaseTest.test_blank_false_with_null_true_foreign_key_field) 231s A ModelForm with a model having ForeignKey(blank=False, null=True) ... ok 231s test_blank_foreign_key_with_radio (model_forms.tests.ModelFormBaseTest.test_blank_foreign_key_with_radio) ... ok 231s test_blank_with_null_foreign_key_field (model_forms.tests.ModelFormBaseTest.test_blank_with_null_foreign_key_field) 231s #13776 -- ModelForm's with models having a FK set to null=False and ... ok 231s test_confused_form (model_forms.tests.ModelFormBaseTest.test_confused_form) ... ok 231s test_default_filefield (model_forms.tests.ModelFormBaseTest.test_default_filefield) ... ok 231s test_default_not_populated_on_checkboxselectmultiple (model_forms.tests.ModelFormBaseTest.test_default_not_populated_on_checkboxselectmultiple) ... ok 231s test_default_not_populated_on_non_empty_value_in_cleaned_data (model_forms.tests.ModelFormBaseTest.test_default_not_populated_on_non_empty_value_in_cleaned_data) ... ok 231s test_default_not_populated_on_optional_checkbox_input (model_forms.tests.ModelFormBaseTest.test_default_not_populated_on_optional_checkbox_input) ... ok 231s test_default_not_populated_on_selectmultiple (model_forms.tests.ModelFormBaseTest.test_default_not_populated_on_selectmultiple) ... ok 231s test_default_populated_on_optional_field (model_forms.tests.ModelFormBaseTest.test_default_populated_on_optional_field) ... ok 231s test_default_selectdatewidget (model_forms.tests.ModelFormBaseTest.test_default_selectdatewidget) ... ok 231s test_default_splitdatetime_field (model_forms.tests.ModelFormBaseTest.test_default_splitdatetime_field) ... ok 231s test_empty_fields_on_modelform (model_forms.tests.ModelFormBaseTest.test_empty_fields_on_modelform) 231s No fields on a ModelForm should actually result in no fields. ... ok 231s test_empty_fields_to_construct_instance (model_forms.tests.ModelFormBaseTest.test_empty_fields_to_construct_instance) 231s No fields should be set on a model instance if construct_instance ... ok 231s test_empty_fields_to_fields_for_model (model_forms.tests.ModelFormBaseTest.test_empty_fields_to_fields_for_model) 231s An argument of fields=() to fields_for_model should return an empty dictionary ... ok 231s test_exclude_and_validation (model_forms.tests.ModelFormBaseTest.test_exclude_and_validation) ... ok 231s test_exclude_fields (model_forms.tests.ModelFormBaseTest.test_exclude_fields) ... ok 231s test_exclude_fields_with_string (model_forms.tests.ModelFormBaseTest.test_exclude_fields_with_string) ... ok 231s test_exclude_nonexistent_field (model_forms.tests.ModelFormBaseTest.test_exclude_nonexistent_field) ... ok 231s test_extra_declared_field_model_form (model_forms.tests.ModelFormBaseTest.test_extra_declared_field_model_form) ... ok 231s test_extra_field_model_form (model_forms.tests.ModelFormBaseTest.test_extra_field_model_form) ... ok 231s test_extra_field_modelform_factory (model_forms.tests.ModelFormBaseTest.test_extra_field_modelform_factory) ... ok 231s test_extra_fields (model_forms.tests.ModelFormBaseTest.test_extra_fields) ... ok 231s test_invalid_meta_model (model_forms.tests.ModelFormBaseTest.test_invalid_meta_model) ... ok 231s test_limit_fields_with_string (model_forms.tests.ModelFormBaseTest.test_limit_fields_with_string) ... ok 231s test_limit_nonexistent_field (model_forms.tests.ModelFormBaseTest.test_limit_nonexistent_field) ... ok 231s test_missing_fields_attribute (model_forms.tests.ModelFormBaseTest.test_missing_fields_attribute) ... ok 231s test_mixmodel_form (model_forms.tests.ModelFormBaseTest.test_mixmodel_form) ... ok 231s test_no_model_class (model_forms.tests.ModelFormBaseTest.test_no_model_class) ... ok 231s test_non_blank_foreign_key_with_radio (model_forms.tests.ModelFormBaseTest.test_non_blank_foreign_key_with_radio) ... ok 231s test_orderfields2_form (model_forms.tests.ModelFormBaseTest.test_orderfields2_form) ... ok 231s test_orderfields_form (model_forms.tests.ModelFormBaseTest.test_orderfields_form) ... ok 231s test_override_field (model_forms.tests.ModelFormBaseTest.test_override_field) ... ok 231s test_prefixed_form_with_default_field (model_forms.tests.ModelFormBaseTest.test_prefixed_form_with_default_field) ... ok 231s test_renderer_kwarg (model_forms.tests.ModelFormBaseTest.test_renderer_kwarg) ... ok 231s test_replace_field (model_forms.tests.ModelFormBaseTest.test_replace_field) ... ok 231s test_replace_field_variant_2 (model_forms.tests.ModelFormBaseTest.test_replace_field_variant_2) ... ok 231s test_replace_field_variant_3 (model_forms.tests.ModelFormBaseTest.test_replace_field_variant_3) ... ok 231s test_save_blank_false_with_required_false (model_forms.tests.ModelFormBaseTest.test_save_blank_false_with_required_false) 231s A ModelForm with a model with a field set to blank=False and the form ... ok 231s test_save_blank_null_unique_charfield_saves_null (model_forms.tests.ModelFormBaseTest.test_save_blank_null_unique_charfield_saves_null) ... ok 231s test_subcategory_form (model_forms.tests.ModelFormBaseTest.test_subcategory_form) ... ok 231s test_subclassmeta_form (model_forms.tests.ModelFormBaseTest.test_subclassmeta_form) ... ok 231s test_assignment_of_none (model_forms.tests.ModelOneToOneFieldTests.test_assignment_of_none) ... ok 231s test_assignment_of_none_null_false (model_forms.tests.ModelOneToOneFieldTests.test_assignment_of_none_null_false) ... ok 231s test_modelform_onetoonefield (model_forms.tests.ModelOneToOneFieldTests.test_modelform_onetoonefield) ... ok 231s test_modelform_subclassed_model (model_forms.tests.ModelOneToOneFieldTests.test_modelform_subclassed_model) ... ok 231s test_onetoonefield (model_forms.tests.ModelOneToOneFieldTests.test_onetoonefield) ... ok 231s test_many_to_many (model_forms.tests.ModelToDictTests.test_many_to_many) 231s Data for a ManyToManyField is a list rather than a lazy QuerySet. ... ok 232s test_callable_field_default (model_forms.tests.OtherModelFormTests.test_callable_field_default) ... ok 232s test_choices_type (model_forms.tests.OtherModelFormTests.test_choices_type) ... ok 232s test_foreignkeys_which_use_to_field (model_forms.tests.OtherModelFormTests.test_foreignkeys_which_use_to_field) ... ok 232s test_iterable_model_m2m (model_forms.tests.OtherModelFormTests.test_iterable_model_m2m) ... ok 232s test_media_on_modelform (model_forms.tests.OtherModelFormTests.test_media_on_modelform) ... ok 232s test_model_field_that_returns_none_to_exclude_itself_with_explicit_fields (model_forms.tests.OtherModelFormTests.test_model_field_that_returns_none_to_exclude_itself_with_explicit_fields) ... ok 232s test_prefetch_related_queryset (model_forms.tests.OtherModelFormTests.test_prefetch_related_queryset) 232s ModelChoiceField should respect a prefetch_related() on its queryset. ... ok 232s test_conditional_aggregation_example (expressions_case.tests.CaseDocumentationExamples.test_conditional_aggregation_example) ... ok 232s test_conditional_update_example (expressions_case.tests.CaseDocumentationExamples.test_conditional_update_example) ... ok 232s test_filter_example (expressions_case.tests.CaseDocumentationExamples.test_filter_example) ... ok 232s test_hash (expressions_case.tests.CaseDocumentationExamples.test_hash) ... ok 232s test_lookup_example (expressions_case.tests.CaseDocumentationExamples.test_lookup_example) ... ok 232s test_simple_example (expressions_case.tests.CaseDocumentationExamples.test_simple_example) ... ok 232s test_abstract_inherited_unique (model_forms.tests.UniqueTest.test_abstract_inherited_unique) ... ok 232s test_abstract_inherited_unique_together (model_forms.tests.UniqueTest.test_abstract_inherited_unique_together) ... ok 232s test_explicitpk_unique (model_forms.tests.UniqueTest.test_explicitpk_unique) 232s Ensure keys and blank character strings are tested for uniqueness. ... ok 232s test_explicitpk_unspecified (model_forms.tests.UniqueTest.test_explicitpk_unspecified) 232s Test for primary_key being in the form and failing validation. ... ok 232s test_inherited_unique (model_forms.tests.UniqueTest.test_inherited_unique) ... ok 232s test_inherited_unique_for_date (model_forms.tests.UniqueTest.test_inherited_unique_for_date) ... ok 232s test_inherited_unique_together (model_forms.tests.UniqueTest.test_inherited_unique_together) ... ok 232s test_multiple_field_unique_together (model_forms.tests.UniqueTest.test_multiple_field_unique_together) 232s When the same field is involved in multiple unique_together ... ok 232s test_override_unique_for_date_message (model_forms.tests.UniqueTest.test_override_unique_for_date_message) ... ok 232s test_override_unique_message (model_forms.tests.UniqueTest.test_override_unique_message) ... ok 232s test_override_unique_together_message (model_forms.tests.UniqueTest.test_override_unique_together_message) ... ok 232s test_simple_unique (model_forms.tests.UniqueTest.test_simple_unique) ... ok 232s test_unique_for_date (model_forms.tests.UniqueTest.test_unique_for_date) ... ok 232s test_unique_for_date_in_exclude (model_forms.tests.UniqueTest.test_unique_for_date_in_exclude) 232s If the date for unique_for_* constraints is excluded from the ... ok 232s test_unique_for_date_with_nullable_date (model_forms.tests.UniqueTest.test_unique_for_date_with_nullable_date) ... ok 232s test_unique_null (model_forms.tests.UniqueTest.test_unique_null) ... ok 232s test_unique_together (model_forms.tests.UniqueTest.test_unique_together) 232s ModelForm test of unique_together constraint ... ok 232s test_unique_together_exclusion (model_forms.tests.UniqueTest.test_unique_together_exclusion) 232s Forms don't validate unique_together constraints when only part of the ... ok 232s test_bounded_params (admin_changelist.test_date_hierarchy.DateHierarchyTests.test_bounded_params) ... ok 232s test_bounded_params_with_dst_time_zone (admin_changelist.test_date_hierarchy.DateHierarchyTests.test_bounded_params_with_dst_time_zone) ... ok 232s test_bounded_params_with_time_zone (admin_changelist.test_date_hierarchy.DateHierarchyTests.test_bounded_params_with_time_zone) ... ok 232s test_invalid_params (admin_changelist.test_date_hierarchy.DateHierarchyTests.test_invalid_params) ... ok 233s test_aggregate (expressions_case.tests.CaseExpressionTests.test_aggregate) ... ok 233s test_aggregate_with_expression_as_condition (expressions_case.tests.CaseExpressionTests.test_aggregate_with_expression_as_condition) ... ok 233s test_aggregate_with_expression_as_value (expressions_case.tests.CaseExpressionTests.test_aggregate_with_expression_as_value) ... ok 233s test_aggregation_empty_cases (expressions_case.tests.CaseExpressionTests.test_aggregation_empty_cases) ... ok 233s test_annotate (expressions_case.tests.CaseExpressionTests.test_annotate) ... ok 233s test_annotate_exclude (expressions_case.tests.CaseExpressionTests.test_annotate_exclude) ... ok 233s test_annotate_filter_decimal (expressions_case.tests.CaseExpressionTests.test_annotate_filter_decimal) ... ok 233s test_annotate_values_not_in_order_by (expressions_case.tests.CaseExpressionTests.test_annotate_values_not_in_order_by) ... ok 233s test_annotate_with_aggregation_in_condition (expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_condition) ... ok 233s test_annotate_with_aggregation_in_predicate (expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_predicate) ... ok 233s test_annotate_with_aggregation_in_value (expressions_case.tests.CaseExpressionTests.test_annotate_with_aggregation_in_value) ... ok 233s test_annotate_with_annotation_in_condition (expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_condition) ... ok 233s test_annotate_with_annotation_in_predicate (expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_predicate) ... ok 233s test_annotate_with_annotation_in_value (expressions_case.tests.CaseExpressionTests.test_annotate_with_annotation_in_value) ... ok 233s test_annotate_with_empty_when (expressions_case.tests.CaseExpressionTests.test_annotate_with_empty_when) ... ok 233s test_annotate_with_expression_as_condition (expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_condition) ... ok 233s test_annotate_with_expression_as_value (expressions_case.tests.CaseExpressionTests.test_annotate_with_expression_as_value) ... ok 233s test_annotate_with_full_when (expressions_case.tests.CaseExpressionTests.test_annotate_with_full_when) ... ok 233s test_annotate_with_in_clause (expressions_case.tests.CaseExpressionTests.test_annotate_with_in_clause) ... ok 233s test_annotate_with_join_in_condition (expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_condition) ... ok 233s test_annotate_with_join_in_predicate (expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_predicate) ... ok 233s test_annotate_with_join_in_value (expressions_case.tests.CaseExpressionTests.test_annotate_with_join_in_value) ... ok 233s test_annotate_without_default (expressions_case.tests.CaseExpressionTests.test_annotate_without_default) ... ok 233s test_case_reuse (expressions_case.tests.CaseExpressionTests.test_case_reuse) ... ok 233s test_combined_expression (expressions_case.tests.CaseExpressionTests.test_combined_expression) ... ok 233s test_combined_q_object (expressions_case.tests.CaseExpressionTests.test_combined_q_object) ... ok 233s test_condition_with_lookups (expressions_case.tests.CaseExpressionTests.test_condition_with_lookups) ... ok 233s test_filter (expressions_case.tests.CaseExpressionTests.test_filter) ... ok 233s test_filter_with_aggregation_in_condition (expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_condition) ... ok 233s test_filter_with_aggregation_in_predicate (expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_predicate) ... ok 233s test_filter_with_aggregation_in_value (expressions_case.tests.CaseExpressionTests.test_filter_with_aggregation_in_value) ... ok 233s test_filter_with_annotation_in_condition (expressions_case.tests.CaseExpressionTests.test_filter_with_annotation_in_condition) ... ok 233s test_filter_with_annotation_in_predicate (expressions_case.tests.CaseExpressionTests.test_filter_with_annotation_in_predicate) ... ok 233s test_filter_with_annotation_in_value (expressions_case.tests.CaseExpressionTests.test_filter_with_annotation_in_value) ... ok 233s test_filter_with_expression_as_condition (expressions_case.tests.CaseExpressionTests.test_filter_with_expression_as_condition) ... ok 233s test_filter_with_expression_as_value (expressions_case.tests.CaseExpressionTests.test_filter_with_expression_as_value) ... ok 233s test_filter_with_join_in_condition (expressions_case.tests.CaseExpressionTests.test_filter_with_join_in_condition) ... ok 233s test_filter_with_join_in_predicate (expressions_case.tests.CaseExpressionTests.test_filter_with_join_in_predicate) ... ok 233s test_filter_with_join_in_value (expressions_case.tests.CaseExpressionTests.test_filter_with_join_in_value) ... ok 233s test_filter_without_default (expressions_case.tests.CaseExpressionTests.test_filter_without_default) ... ok 233s test_in_subquery (expressions_case.tests.CaseExpressionTests.test_in_subquery) ... ok 233s test_join_promotion (expressions_case.tests.CaseExpressionTests.test_join_promotion) ... ok 233s test_join_promotion_multiple_annotations (expressions_case.tests.CaseExpressionTests.test_join_promotion_multiple_annotations) ... ok 233s test_lookup_different_fields (expressions_case.tests.CaseExpressionTests.test_lookup_different_fields) ... ok 233s test_lookup_in_condition (expressions_case.tests.CaseExpressionTests.test_lookup_in_condition) ... ok 233s test_m2m_exclude (expressions_case.tests.CaseExpressionTests.test_m2m_exclude) ... ok 233s test_m2m_reuse (expressions_case.tests.CaseExpressionTests.test_m2m_reuse) ... ok 233s test_order_by_conditional_explicit (expressions_case.tests.CaseExpressionTests.test_order_by_conditional_explicit) ... ok 233s test_order_by_conditional_implicit (expressions_case.tests.CaseExpressionTests.test_order_by_conditional_implicit) ... ok 233s test_update (expressions_case.tests.CaseExpressionTests.test_update) ... ok 233s test_update_big_integer (expressions_case.tests.CaseExpressionTests.test_update_big_integer) ... ok 233s test_update_binary (expressions_case.tests.CaseExpressionTests.test_update_binary) ... ok 233s test_update_boolean (expressions_case.tests.CaseExpressionTests.test_update_boolean) ... ok 233s test_update_date (expressions_case.tests.CaseExpressionTests.test_update_date) ... ok 233s test_update_date_time (expressions_case.tests.CaseExpressionTests.test_update_date_time) ... ok 233s test_update_decimal (expressions_case.tests.CaseExpressionTests.test_update_decimal) ... ok 233s test_update_duration (expressions_case.tests.CaseExpressionTests.test_update_duration) ... ok 233s test_update_email (expressions_case.tests.CaseExpressionTests.test_update_email) ... ok 233s test_update_file (expressions_case.tests.CaseExpressionTests.test_update_file) ... ok 233s test_update_file_path (expressions_case.tests.CaseExpressionTests.test_update_file_path) ... ok 233s test_update_fk (expressions_case.tests.CaseExpressionTests.test_update_fk) ... ok 233s test_update_float (expressions_case.tests.CaseExpressionTests.test_update_float) ... ok 233s test_update_generic_ip_address (expressions_case.tests.CaseExpressionTests.test_update_generic_ip_address) ... ok 233s test_update_image (expressions_case.tests.CaseExpressionTests.test_update_image) ... ok 233s test_update_null_boolean (expressions_case.tests.CaseExpressionTests.test_update_null_boolean) ... ok 233s test_update_positive_big_integer (expressions_case.tests.CaseExpressionTests.test_update_positive_big_integer) ... ok 233s test_update_positive_integer (expressions_case.tests.CaseExpressionTests.test_update_positive_integer) ... ok 233s test_update_positive_small_integer (expressions_case.tests.CaseExpressionTests.test_update_positive_small_integer) ... ok 233s test_update_slug (expressions_case.tests.CaseExpressionTests.test_update_slug) ... ok 233s test_update_small_integer (expressions_case.tests.CaseExpressionTests.test_update_small_integer) ... ok 233s test_update_string (expressions_case.tests.CaseExpressionTests.test_update_string) ... ok 233s test_update_text (expressions_case.tests.CaseExpressionTests.test_update_text) ... ok 233s test_update_time (expressions_case.tests.CaseExpressionTests.test_update_time) ... ok 233s test_update_url (expressions_case.tests.CaseExpressionTests.test_update_url) ... ok 233s test_update_uuid (expressions_case.tests.CaseExpressionTests.test_update_uuid) ... ok 233s test_update_with_expression_as_condition (expressions_case.tests.CaseExpressionTests.test_update_with_expression_as_condition) ... ok 233s test_update_with_expression_as_value (expressions_case.tests.CaseExpressionTests.test_update_with_expression_as_value) ... ok 233s test_update_with_join_in_condition_raise_field_error (expressions_case.tests.CaseExpressionTests.test_update_with_join_in_condition_raise_field_error) ... ok 233s test_update_with_join_in_predicate_raise_field_error (expressions_case.tests.CaseExpressionTests.test_update_with_join_in_predicate_raise_field_error) ... ok 233s test_update_without_default (expressions_case.tests.CaseExpressionTests.test_update_without_default) ... ok 233s test_custom_user_pk_not_named_id (admin_changelist.tests.GetAdminLogTests.test_custom_user_pk_not_named_id) 233s {% get_admin_log %} works if the user model's primary key isn't named ... ok 233s test_missing_args (admin_changelist.tests.GetAdminLogTests.test_missing_args) ... ok 233s test_no_user (admin_changelist.tests.GetAdminLogTests.test_no_user) 233s {% get_admin_log %} works without specifying a user. ... ok 233s test_non_integer_limit (admin_changelist.tests.GetAdminLogTests.test_non_integer_limit) ... ok 233s test_without_as (admin_changelist.tests.GetAdminLogTests.test_without_as) ... ok 233s test_without_for_user (admin_changelist.tests.GetAdminLogTests.test_without_for_user) ... ok 233s test_add_efficiency (many_to_one_null.tests.ManyToOneNullTests.test_add_efficiency) ... ok 233s test_assign_clear_related_set (many_to_one_null.tests.ManyToOneNullTests.test_assign_clear_related_set) ... ok 233s test_assign_with_queryset (many_to_one_null.tests.ManyToOneNullTests.test_assign_with_queryset) ... ok 233s test_clear_efficiency (many_to_one_null.tests.ManyToOneNullTests.test_clear_efficiency) ... ok 233s test_created_via_related_set (many_to_one_null.tests.ManyToOneNullTests.test_created_via_related_set) ... ok 233s test_created_without_related (many_to_one_null.tests.ManyToOneNullTests.test_created_without_related) ... ok 233s test_get_related (many_to_one_null.tests.ManyToOneNullTests.test_get_related) ... ok 233s test_related_null_to_field (many_to_one_null.tests.ManyToOneNullTests.test_related_null_to_field) ... ok 233s test_related_null_to_field_related_managers (many_to_one_null.tests.ManyToOneNullTests.test_related_null_to_field_related_managers) ... ok 233s test_related_set (many_to_one_null.tests.ManyToOneNullTests.test_related_set) ... ok 233s test_remove_from_wrong_set (many_to_one_null.tests.ManyToOneNullTests.test_remove_from_wrong_set) ... ok 233s test_set (many_to_one_null.tests.ManyToOneNullTests.test_set) ... ok 233s test_set_clear_non_bulk (many_to_one_null.tests.ManyToOneNullTests.test_set_clear_non_bulk) ... ok 233s test_unsaved (many_to_one_null.tests.ManyToOneNullTests.test_unsaved) ... ok 234s test_builtin_lookup_in_search_fields (admin_changelist.tests.ChangeListTests.test_builtin_lookup_in_search_fields) ... ok 234s test_changelist_search_form_validation (admin_changelist.tests.ChangeListTests.test_changelist_search_form_validation) ... ok 234s test_changelist_view_list_editable_changed_objects_uses_filter (admin_changelist.tests.ChangeListTests.test_changelist_view_list_editable_changed_objects_uses_filter) 234s list_editable edits use a filtered queryset to limit memory usage. ... ok 234s test_clear_all_filters_link (admin_changelist.tests.ChangeListTests.test_clear_all_filters_link) ... ok 234s test_clear_all_filters_link_callable_filter (admin_changelist.tests.ChangeListTests.test_clear_all_filters_link_callable_filter) ... ok 234s test_computed_list_display_localization (admin_changelist.tests.ChangeListTests.test_computed_list_display_localization) 234s Regression test for #13196: output of functions should be localized ... ok 234s test_custom_lookup_in_search_fields (admin_changelist.tests.ChangeListTests.test_custom_lookup_in_search_fields) ... ok 234s test_custom_lookup_with_pk_shortcut (admin_changelist.tests.ChangeListTests.test_custom_lookup_with_pk_shortcut) ... ok 234s test_custom_paginator (admin_changelist.tests.ChangeListTests.test_custom_paginator) ... ok 234s test_deterministic_order_for_model_ordered_by_its_manager (admin_changelist.tests.ChangeListTests.test_deterministic_order_for_model_ordered_by_its_manager) 234s The primary key is used in the ordering of the changelist's results to ... ok 234s test_deterministic_order_for_unordered_model (admin_changelist.tests.ChangeListTests.test_deterministic_order_for_unordered_model) 234s The primary key is used in the ordering of the changelist's results to ... ok 234s test_dynamic_list_display (admin_changelist.tests.ChangeListTests.test_dynamic_list_display) 234s Regression tests for #14206: dynamic list_display support. ... ok 234s test_dynamic_list_display_links (admin_changelist.tests.ChangeListTests.test_dynamic_list_display_links) 234s Regression tests for #16257: dynamic list_display_links support. ... ok 234s test_dynamic_list_filter (admin_changelist.tests.ChangeListTests.test_dynamic_list_filter) 234s Regression tests for ticket #17646: dynamic list_filter support. ... ok 234s test_dynamic_search_fields (admin_changelist.tests.ChangeListTests.test_dynamic_search_fields) ... ok 234s test_get_edited_object_ids (admin_changelist.tests.ChangeListTests.test_get_edited_object_ids) ... ok 234s test_get_list_editable_queryset (admin_changelist.tests.ChangeListTests.test_get_list_editable_queryset) ... ok 234s test_get_list_editable_queryset_with_regex_chars_in_prefix (admin_changelist.tests.ChangeListTests.test_get_list_editable_queryset_with_regex_chars_in_prefix) ... ok 234s test_get_select_related_custom_method (admin_changelist.tests.ChangeListTests.test_get_select_related_custom_method) ... ok 234s test_list_editable_atomicity (admin_changelist.tests.ChangeListTests.test_list_editable_atomicity) ... ok 234s test_many_search_terms (admin_changelist.tests.ChangeListTests.test_many_search_terms) ... ok 234s test_multiple_search_fields (admin_changelist.tests.ChangeListTests.test_multiple_search_fields) 234s All rows containing each of the searched words are returned, where each ... ok 234s test_multiuser_edit (admin_changelist.tests.ChangeListTests.test_multiuser_edit) 234s Simultaneous edits of list_editable fields on the changelist by ... ok 234s test_no_clear_all_filters_link (admin_changelist.tests.ChangeListTests.test_no_clear_all_filters_link) ... ok 234s test_no_duplicates_for_inherited_m2m_in_list_filter (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_inherited_m2m_in_list_filter) 234s Regression test for #13902: When using a ManyToMany in list_filter, ... ok 234s test_no_duplicates_for_m2m_in_list_filter (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_m2m_in_list_filter) 234s Regression test for #13902: When using a ManyToMany in list_filter, ... ok 234s test_no_duplicates_for_m2m_to_inherited_in_list_filter (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_m2m_to_inherited_in_list_filter) 234s Regression test for #13902: When using a ManyToMany in list_filter, ... ok 234s test_no_duplicates_for_many_to_many_at_second_level_in_search_fields (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_many_to_many_at_second_level_in_search_fields) 234s When using a ManyToMany in search_fields at the second level behind a ... ok 234s test_no_duplicates_for_non_unique_related_object_in_list_filter (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_non_unique_related_object_in_list_filter) 234s Regressions tests for #15819: If a field listed in list_filters is a ... ok 234s test_no_duplicates_for_non_unique_related_object_in_search_fields (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_non_unique_related_object_in_search_fields) 234s Regressions tests for #15819: If a field listed in search_fields ... ok 234s test_no_duplicates_for_through_m2m_at_second_level_in_list_filter (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_through_m2m_at_second_level_in_list_filter) 234s When using a ManyToMany in list_filter at the second level behind a ... ok 234s test_no_duplicates_for_through_m2m_in_list_filter (admin_changelist.tests.ChangeListTests.test_no_duplicates_for_through_m2m_in_list_filter) 234s Regression test for #13902: When using a ManyToMany in list_filter, ... ok 234s test_no_exists_for_m2m_in_list_filter_without_params (admin_changelist.tests.ChangeListTests.test_no_exists_for_m2m_in_list_filter_without_params) 234s If a ManyToManyField is in list_filter but isn't in any lookup params, ... ok 234s test_no_list_display_links (admin_changelist.tests.ChangeListTests.test_no_list_display_links) 234s #15185 -- Allow no links from the 'change list' view grid. ... ok 234s test_object_tools_displayed_no_add_permission (admin_changelist.tests.ChangeListTests.test_object_tools_displayed_no_add_permission) 234s When ModelAdmin.has_add_permission() returns False, the object-tools ... ok 234s test_pagination (admin_changelist.tests.ChangeListTests.test_pagination) 234s Regression tests for #12893: Pagination in admins changelist doesn't ... ok 234s test_pagination_page_range (admin_changelist.tests.ChangeListTests.test_pagination_page_range) 234s Regression tests for ticket #15653: ensure the number of pages ... ok 234s test_pk_in_search_fields (admin_changelist.tests.ChangeListTests.test_pk_in_search_fields) ... ok 234s test_related_field_multiple_search_terms (admin_changelist.tests.ChangeListTests.test_related_field_multiple_search_terms) 234s Searches over multi-valued relationships return rows from related ... ok 234s test_repr (admin_changelist.tests.ChangeListTests.test_repr) ... ok 234s test_result_list_editable (admin_changelist.tests.ChangeListTests.test_result_list_editable) 234s Regression test for #14312: list_editable with pagination ... ok 234s test_result_list_editable_html (admin_changelist.tests.ChangeListTests.test_result_list_editable_html) 234s Regression tests for #11791: Inclusion tag result_list generates a ... ok 234s test_result_list_empty_changelist_value (admin_changelist.tests.ChangeListTests.test_result_list_empty_changelist_value) 234s Regression test for #14982: EMPTY_CHANGELIST_VALUE should be honored ... ok 234s test_result_list_html (admin_changelist.tests.ChangeListTests.test_result_list_html) 234s Inclusion tag result_list generates a table when with default ... ok 234s test_result_list_set_empty_value_display_in_model_admin (admin_changelist.tests.ChangeListTests.test_result_list_set_empty_value_display_in_model_admin) 234s Empty value display can be set in ModelAdmin or individual fields. ... ok 234s test_result_list_set_empty_value_display_on_admin_site (admin_changelist.tests.ChangeListTests.test_result_list_set_empty_value_display_on_admin_site) 234s Empty value display can be set on AdminSite. ... ok 234s test_search_help_text (admin_changelist.tests.ChangeListTests.test_search_help_text) ... ok 234s test_select_related_as_empty_tuple (admin_changelist.tests.ChangeListTests.test_select_related_as_empty_tuple) ... ok 234s test_select_related_as_tuple (admin_changelist.tests.ChangeListTests.test_select_related_as_tuple) ... ok 234s test_select_related_preserved (admin_changelist.tests.ChangeListTests.test_select_related_preserved) 234s Regression test for #10348: ChangeList.get_queryset() shouldn't ... ok 234s test_select_related_preserved_when_multi_valued_in_search_fields (admin_changelist.tests.ChangeListTests.test_select_related_preserved_when_multi_valued_in_search_fields) ... ok 234s test_show_all (admin_changelist.tests.ChangeListTests.test_show_all) ... ok 234s test_spanning_relations_with_custom_lookup_in_search_fields (admin_changelist.tests.ChangeListTests.test_spanning_relations_with_custom_lookup_in_search_fields) ... ok 234s test_specified_ordering_by_f_expression (admin_changelist.tests.ChangeListTests.test_specified_ordering_by_f_expression) ... ok 234s test_specified_ordering_by_f_expression_without_asc_desc (admin_changelist.tests.ChangeListTests.test_specified_ordering_by_f_expression_without_asc_desc) ... ok 234s test_total_ordering_optimization (admin_changelist.tests.ChangeListTests.test_total_ordering_optimization) ... ok 234s test_total_ordering_optimization_meta_constraints (admin_changelist.tests.ChangeListTests.test_total_ordering_optimization_meta_constraints) ... ok 234s test_tuple_list_display (admin_changelist.tests.ChangeListTests.test_tuple_list_display) ... ok 234s test_abstract_base_class_m2m_relation_inheritance (model_inheritance_regress.tests.ModelInheritanceTest.test_abstract_base_class_m2m_relation_inheritance) ... ok 234s test_abstract_verbose_name_plural_inheritance (model_inheritance_regress.tests.ModelInheritanceTest.test_abstract_verbose_name_plural_inheritance) 234s verbose_name_plural correctly inherited from ABC if inheritance chain ... ok 234s test_all_fields_from_abstract_base_class (model_inheritance_regress.tests.ModelInheritanceTest.test_all_fields_from_abstract_base_class) 234s Regression tests for #7588 ... ok 234s test_concrete_abstract_concrete_pk (model_inheritance_regress.tests.ModelInheritanceTest.test_concrete_abstract_concrete_pk) 234s Primary key set correctly with concrete->abstract->concrete inheritance. ... ok 234s test_create_new_instance_with_pk_equals_none (model_inheritance_regress.tests.ModelInheritanceTest.test_create_new_instance_with_pk_equals_none) ... ok 234s test_create_new_instance_with_pk_equals_none_multi_inheritance (model_inheritance_regress.tests.ModelInheritanceTest.test_create_new_instance_with_pk_equals_none_multi_inheritance) ... ok 234s test_filter_with_parent_fk (model_inheritance_regress.tests.ModelInheritanceTest.test_filter_with_parent_fk) ... ok 234s test_get_next_previous_by_date (model_inheritance_regress.tests.ModelInheritanceTest.test_get_next_previous_by_date) 234s Regression tests for #8076 ... ok 234s test_id_field_update_on_ancestor_change (model_inheritance_regress.tests.ModelInheritanceTest.test_id_field_update_on_ancestor_change) ... ok 234s test_inheritance_joins (model_inheritance_regress.tests.ModelInheritanceTest.test_inheritance_joins) ... ok 234s test_inheritance_resolve_columns (model_inheritance_regress.tests.ModelInheritanceTest.test_inheritance_resolve_columns) ... ok 234s test_inheritance_select_related (model_inheritance_regress.tests.ModelInheritanceTest.test_inheritance_select_related) ... ok 234s test_inheritance_values_joins (model_inheritance_regress.tests.ModelInheritanceTest.test_inheritance_values_joins) ... expected failure 234s test_inherited_fields (model_inheritance_regress.tests.ModelInheritanceTest.test_inherited_fields) 234s Regression test for #8825 and #9390 ... ok 234s test_inherited_nullable_exclude (model_inheritance_regress.tests.ModelInheritanceTest.test_inherited_nullable_exclude) ... ok 234s test_inherited_unique_field_with_form (model_inheritance_regress.tests.ModelInheritanceTest.test_inherited_unique_field_with_form) 234s A model which has different primary key for the parent model passes ... ok 234s test_issue_11764 (model_inheritance_regress.tests.ModelInheritanceTest.test_issue_11764) 234s Regression test for #11764 ... ok 234s test_issue_21554 (model_inheritance_regress.tests.ModelInheritanceTest.test_issue_21554) ... ok 234s test_issue_6755 (model_inheritance_regress.tests.ModelInheritanceTest.test_issue_6755) 234s Regression test for #6755 ... ok 234s test_issue_7105 (model_inheritance_regress.tests.ModelInheritanceTest.test_issue_7105) ... ok 234s test_issue_7276 (model_inheritance_regress.tests.ModelInheritanceTest.test_issue_7276) ... ok 234s test_issue_7853 (model_inheritance_regress.tests.ModelInheritanceTest.test_issue_7853) 234s Regression test for #7853 ... ok 234s test_model_inheritance (model_inheritance_regress.tests.ModelInheritanceTest.test_model_inheritance) ... ok 234s test_mti_update_grand_parent_through_child (model_inheritance_regress.tests.ModelInheritanceTest.test_mti_update_grand_parent_through_child) ... ok 234s test_mti_update_parent_through_child (model_inheritance_regress.tests.ModelInheritanceTest.test_mti_update_parent_through_child) ... ok 234s test_ptr_accessor_assigns_state (model_inheritance_regress.tests.ModelInheritanceTest.test_ptr_accessor_assigns_state) ... ok 234s test_queries_on_parent_access (model_inheritance_regress.tests.ModelInheritanceTest.test_queries_on_parent_access) ... ok 234s test_queryset_update_on_parent_model (model_inheritance_regress.tests.ModelInheritanceTest.test_queryset_update_on_parent_model) 234s Regression test for #10362 ... ok 234s test_related_filtering_query_efficiency_ticket_15844 (model_inheritance_regress.tests.ModelInheritanceTest.test_related_filtering_query_efficiency_ticket_15844) ... ok 234s test_use_explicit_o2o_to_parent_as_pk (model_inheritance_regress.tests.ModelInheritanceTest.test_use_explicit_o2o_to_parent_as_pk) 234s The connector from child to parent need not be the pk on the child. ... ok 234s test_use_explicit_o2o_to_parent_from_abstract_model (model_inheritance_regress.tests.ModelInheritanceTest.test_use_explicit_o2o_to_parent_from_abstract_model) ... ok 234s test_commit (transactions.tests.DurableTests.test_commit) ... ok 234s test_nested_both_durable (transactions.tests.DurableTests.test_nested_both_durable) ... ok 234s test_nested_inner_durable (transactions.tests.DurableTests.test_nested_inner_durable) ... ok 234s test_nested_outer_durable (transactions.tests.DurableTests.test_nested_outer_durable) ... ok 234s test_sequence_of_durables (transactions.tests.DurableTests.test_sequence_of_durables) ... ok 235s test_batch_same_vals (bulk_create.tests.BulkCreateTests.test_batch_same_vals) ... ok 235s test_bulk_insert_expressions (bulk_create.tests.BulkCreateTests.test_bulk_insert_expressions) ... ok 235s test_bulk_insert_nullable_fields (bulk_create.tests.BulkCreateTests.test_bulk_insert_nullable_fields) ... ok 235s test_efficiency (bulk_create.tests.BulkCreateTests.test_efficiency) ... ok 235s test_empty_model (bulk_create.tests.BulkCreateTests.test_empty_model) ... ok 235s test_explicit_batch_size (bulk_create.tests.BulkCreateTests.test_explicit_batch_size) ... ok 235s test_explicit_batch_size_efficiency (bulk_create.tests.BulkCreateTests.test_explicit_batch_size_efficiency) ... ok 235s test_explicit_batch_size_respects_max_batch_size (bulk_create.tests.BulkCreateTests.test_explicit_batch_size_respects_max_batch_size) ... ok 235s test_ignore_conflicts_ignore (bulk_create.tests.BulkCreateTests.test_ignore_conflicts_ignore) ... ok 235s test_ignore_conflicts_value_error (bulk_create.tests.BulkCreateTests.test_ignore_conflicts_value_error) ... skipped 'Database has feature(s) supports_ignore_conflicts' 235s test_ignore_update_conflicts_exclusive (bulk_create.tests.BulkCreateTests.test_ignore_update_conflicts_exclusive) ... ok 235s test_invalid_batch_size_exception (bulk_create.tests.BulkCreateTests.test_invalid_batch_size_exception) ... ok 235s test_large_batch (bulk_create.tests.BulkCreateTests.test_large_batch) ... ok 235s test_large_batch_efficiency (bulk_create.tests.BulkCreateTests.test_large_batch_efficiency) ... ok 235s test_large_batch_mixed (bulk_create.tests.BulkCreateTests.test_large_batch_mixed) 235s Test inserting a large batch with objects having primary key set ... ok 235s test_large_batch_mixed_efficiency (bulk_create.tests.BulkCreateTests.test_large_batch_mixed_efficiency) 235s Test inserting a large batch with objects having primary key set ... ok 235s test_large_single_field_batch (bulk_create.tests.BulkCreateTests.test_large_single_field_batch) ... ok 235s test_long_and_short_text (bulk_create.tests.BulkCreateTests.test_long_and_short_text) ... ok 235s test_long_non_ascii_text (bulk_create.tests.BulkCreateTests.test_long_non_ascii_text) 235s Inserting non-ASCII values with a length in the range 2001 to 4000 ... ok 235s test_multi_table_inheritance_unsupported (bulk_create.tests.BulkCreateTests.test_multi_table_inheritance_unsupported) ... ok 235s test_non_auto_increment_pk (bulk_create.tests.BulkCreateTests.test_non_auto_increment_pk) ... ok 235s test_non_auto_increment_pk_efficiency (bulk_create.tests.BulkCreateTests.test_non_auto_increment_pk_efficiency) ... ok 235s test_nullable_fk_after_parent (bulk_create.tests.BulkCreateTests.test_nullable_fk_after_parent) ... ok 235s test_nullable_fk_after_parent_bulk_create (bulk_create.tests.BulkCreateTests.test_nullable_fk_after_parent_bulk_create) ... ok 235s test_proxy_inheritance_supported (bulk_create.tests.BulkCreateTests.test_proxy_inheritance_supported) ... ok 235s test_set_pk_and_insert_single_item (bulk_create.tests.BulkCreateTests.test_set_pk_and_insert_single_item) ... ok 235s test_set_pk_and_query_efficiency (bulk_create.tests.BulkCreateTests.test_set_pk_and_query_efficiency) ... ok 235s test_set_state (bulk_create.tests.BulkCreateTests.test_set_state) ... ok 235s test_set_state_with_pk_specified (bulk_create.tests.BulkCreateTests.test_set_state_with_pk_specified) ... ok 235s test_simple (bulk_create.tests.BulkCreateTests.test_simple) ... ok 235s test_unsaved_parent (bulk_create.tests.BulkCreateTests.test_unsaved_parent) ... ok 235s test_update_conflicts_invalid_unique_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_invalid_unique_fields) ... ok 235s test_update_conflicts_invalid_update_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_invalid_update_fields) ... ok 235s test_update_conflicts_no_unique_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_no_unique_fields) ... skipped 'Database has feature(s) supports_update_conflicts_with_target' 235s test_update_conflicts_no_update_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_no_update_fields) ... ok 235s test_update_conflicts_nonexistent_update_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_nonexistent_update_fields) ... ok 235s test_update_conflicts_pk_in_update_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_pk_in_update_fields) ... ok 235s test_update_conflicts_two_fields_no_unique_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_two_fields_no_unique_fields) ... skipped 'Database has feature(s) supports_update_conflicts_with_target' 235s test_update_conflicts_two_fields_unique_fields_both (bulk_create.tests.BulkCreateTests.test_update_conflicts_two_fields_unique_fields_both) ... ok 235s test_update_conflicts_two_fields_unique_fields_first (bulk_create.tests.BulkCreateTests.test_update_conflicts_two_fields_unique_fields_first) ... ok 235s test_update_conflicts_two_fields_unique_fields_second (bulk_create.tests.BulkCreateTests.test_update_conflicts_two_fields_unique_fields_second) ... ok 235s test_update_conflicts_unique_field_unsupported (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_field_unsupported) ... skipped 'Database has feature(s) supports_update_conflicts_with_target' 235s test_update_conflicts_unique_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_fields) ... ok 235s test_update_conflicts_unique_fields_pk (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_fields_pk) ... ok 235s test_update_conflicts_unique_fields_required (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_fields_required) ... ok 235s test_update_conflicts_unique_fields_update_fields_db_column (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_fields_update_fields_db_column) ... ok 235s test_update_conflicts_unique_two_fields_unique_fields_both (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_two_fields_unique_fields_both) ... ok 235s test_update_conflicts_unique_two_fields_unique_fields_one (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_two_fields_unique_fields_one) ... ok 235s test_update_conflicts_unique_two_fields_unique_no_unique_fields (bulk_create.tests.BulkCreateTests.test_update_conflicts_unique_two_fields_unique_no_unique_fields) ... skipped 'Database has feature(s) supports_update_conflicts_with_target' 235s test_update_conflicts_unsupported (bulk_create.tests.BulkCreateTests.test_update_conflicts_unsupported) ... skipped 'Database has feature(s) supports_update_conflicts' 235s test_zero_as_autoval (bulk_create.tests.BulkCreateTests.test_zero_as_autoval) 235s Zero as id for AutoField should raise exception in MySQL, because MySQL ... skipped 'Database has feature(s) allows_auto_pk_0' 235s test_immutable_content_type (admin_inlines.tests.TestInlineAdminForm.test_immutable_content_type) 235s Regression for #9362 ... ok 236s test_all_inline_media (admin_inlines.tests.TestInlineMedia.test_all_inline_media) ... ok 236s test_inline_media_only_base (admin_inlines.tests.TestInlineMedia.test_inline_media_only_base) ... ok 236s test_inline_media_only_inline (admin_inlines.tests.TestInlineMedia.test_inline_media_only_inline) ... ok 237s test_inline_add_fk_add_perm (admin_inlines.tests.TestInlinePermissions.test_inline_add_fk_add_perm) ... ok 237s test_inline_add_fk_noperm (admin_inlines.tests.TestInlinePermissions.test_inline_add_fk_noperm) ... ok 237s test_inline_add_m2m_add_perm (admin_inlines.tests.TestInlinePermissions.test_inline_add_m2m_add_perm) ... ok 237s test_inline_add_m2m_noperm (admin_inlines.tests.TestInlinePermissions.test_inline_add_m2m_noperm) ... ok 237s test_inline_add_m2m_view_only_perm (admin_inlines.tests.TestInlinePermissions.test_inline_add_m2m_view_only_perm) ... ok 237s test_inline_change_fk_add_change_perm (admin_inlines.tests.TestInlinePermissions.test_inline_change_fk_add_change_perm) ... ok 237s test_inline_change_fk_add_perm (admin_inlines.tests.TestInlinePermissions.test_inline_change_fk_add_perm) ... ok 237s test_inline_change_fk_all_perms (admin_inlines.tests.TestInlinePermissions.test_inline_change_fk_all_perms) ... ok 237s test_inline_change_fk_change_del_perm (admin_inlines.tests.TestInlinePermissions.test_inline_change_fk_change_del_perm) ... ok 237s test_inline_change_fk_change_perm (admin_inlines.tests.TestInlinePermissions.test_inline_change_fk_change_perm) ... ok 237s test_inline_change_fk_noperm (admin_inlines.tests.TestInlinePermissions.test_inline_change_fk_noperm) ... ok 237s test_inline_change_m2m_add_perm (admin_inlines.tests.TestInlinePermissions.test_inline_change_m2m_add_perm) ... ok 237s test_inline_change_m2m_change_perm (admin_inlines.tests.TestInlinePermissions.test_inline_change_m2m_change_perm) ... ok 237s test_inline_change_m2m_noperm (admin_inlines.tests.TestInlinePermissions.test_inline_change_m2m_noperm) ... ok 237s test_inline_change_m2m_view_only_perm (admin_inlines.tests.TestInlinePermissions.test_inline_change_m2m_view_only_perm) ... ok 237s test_callable_lookup (admin_inlines.tests.TestInline.test_callable_lookup) 237s Admin inline should invoke local callable when its name is listed in ... ok 237s test_can_delete (admin_inlines.tests.TestInline.test_can_delete) 237s can_delete should be passed to inlineformset factory. ... ok 237s test_create_inlines_on_inherited_model (admin_inlines.tests.TestInline.test_create_inlines_on_inherited_model) 237s An object can be created with inlines when it inherits another class. ... ok 237s test_custom_form_tabular_inline_extra_field_label (admin_inlines.tests.TestInline.test_custom_form_tabular_inline_extra_field_label) ... ok 237s test_custom_form_tabular_inline_label (admin_inlines.tests.TestInline.test_custom_form_tabular_inline_label) 237s A model form with a form field specified (TitleForm.title1) should have ... ok 237s test_custom_form_tabular_inline_overridden_label (admin_inlines.tests.TestInline.test_custom_form_tabular_inline_overridden_label) 237s SomeChildModelForm.__init__() overrides the label of a form field. ... ok 237s test_custom_get_extra_form (admin_inlines.tests.TestInline.test_custom_get_extra_form) ... ok 237s test_custom_min_num (admin_inlines.tests.TestInline.test_custom_min_num) ... ok 237s test_custom_pk_shortcut (admin_inlines.tests.TestInline.test_custom_pk_shortcut) 237s The "View on Site" link is correct for models with a custom primary key ... ok 237s test_help_text (admin_inlines.tests.TestInline.test_help_text) 237s The inlines' model field help texts are displayed when using both the ... ok 237s test_inline_editable_pk (admin_inlines.tests.TestInline.test_inline_editable_pk) ... ok 237s test_inline_hidden_field_no_column (admin_inlines.tests.TestInline.test_inline_hidden_field_no_column) 237s #18263 -- Make sure hidden fields don't get a column in tabular inlines ... ok 237s test_inline_nonauto_noneditable_inherited_pk (admin_inlines.tests.TestInline.test_inline_nonauto_noneditable_inherited_pk) ... ok 237s test_inline_nonauto_noneditable_pk (admin_inlines.tests.TestInline.test_inline_nonauto_noneditable_pk) ... ok 237s test_inline_primary (admin_inlines.tests.TestInline.test_inline_primary) ... ok 237s test_inlines_based_on_model_state (admin_inlines.tests.TestInline.test_inlines_based_on_model_state) ... ok 237s test_inlines_plural_heading_foreign_key (admin_inlines.tests.TestInline.test_inlines_plural_heading_foreign_key) ... ok 237s test_inlines_show_change_link_registered (admin_inlines.tests.TestInline.test_inlines_show_change_link_registered) 237s Inlines `show_change_link` for registered models when enabled. ... ok 237s test_inlines_show_change_link_unregistered (admin_inlines.tests.TestInline.test_inlines_show_change_link_unregistered) 237s Inlines `show_change_link` disabled for unregistered models. ... ok 237s test_inlines_singular_heading_one_to_one (admin_inlines.tests.TestInline.test_inlines_singular_heading_one_to_one) ... ok 237s test_localize_pk_shortcut (admin_inlines.tests.TestInline.test_localize_pk_shortcut) 237s The "View on Site" link is correct for locales that use thousand ... ok 237s test_many_to_many_inlines (admin_inlines.tests.TestInline.test_many_to_many_inlines) 237s Autogenerated many-to-many inlines are displayed correctly (#13407) ... ok 237s test_min_num (admin_inlines.tests.TestInline.test_min_num) 237s min_num and extra determine number of forms. ... ok 237s test_model_error_inline_with_readonly_field (admin_inlines.tests.TestInline.test_model_error_inline_with_readonly_field) ... ok 237s test_no_parent_callable_lookup (admin_inlines.tests.TestInline.test_no_parent_callable_lookup) 237s Admin inline `readonly_field` shouldn't invoke parent ModelAdmin callable ... ok 237s test_non_editable_custom_form_tabular_inline_extra_field_label (admin_inlines.tests.TestInline.test_non_editable_custom_form_tabular_inline_extra_field_label) ... ok 237s test_non_related_name_inline (admin_inlines.tests.TestInline.test_non_related_name_inline) 237s Multiple inlines with related_name='+' have correct form prefixes. ... ok 237s test_noneditable_inline_has_field_inputs (admin_inlines.tests.TestInline.test_noneditable_inline_has_field_inputs) 237s Inlines without change permission shows field inputs on add form. ... ok 237s test_readonly_stacked_inline_label (admin_inlines.tests.TestInline.test_readonly_stacked_inline_label) 237s Bug #13174. ... ok 237s test_stacked_inline_edit_form_contains_has_original_class (admin_inlines.tests.TestInline.test_stacked_inline_edit_form_contains_has_original_class) ... ok 237s test_stacked_inline_hidden_field_with_view_only_permissions (admin_inlines.tests.TestInline.test_stacked_inline_hidden_field_with_view_only_permissions) 237s Content of hidden field is not visible in stacked inline when user has ... ok 237s test_stacked_inline_single_hidden_field_in_line_with_view_only_permissions (admin_inlines.tests.TestInline.test_stacked_inline_single_hidden_field_in_line_with_view_only_permissions) 237s Content of hidden field is not visible in stacked inline when user has ... ok 237s test_tabular_inline_column_css_class (admin_inlines.tests.TestInline.test_tabular_inline_column_css_class) 237s Field names are included in the context to output a field-specific ... ok 237s test_tabular_inline_hidden_field_with_view_only_permissions (admin_inlines.tests.TestInline.test_tabular_inline_hidden_field_with_view_only_permissions) 237s Content of hidden field is not visible in tabular inline when user has ... ok 237s test_tabular_inline_show_change_link_false_registered (admin_inlines.tests.TestInline.test_tabular_inline_show_change_link_false_registered) 237s Inlines `show_change_link` disabled by default. ... ok 237s test_tabular_inline_with_hidden_field_non_field_errors_has_correct_colspan (admin_inlines.tests.TestInline.test_tabular_inline_with_hidden_field_non_field_errors_has_correct_colspan) 237s In tabular inlines, when a form has non-field errors, those errors ... ok 237s test_tabular_model_form_meta_readonly_field (admin_inlines.tests.TestInline.test_tabular_model_form_meta_readonly_field) 237s Tabular inlines use ModelForm.Meta.help_texts and labels for read-only ... ok 237s test_tabular_non_field_errors (admin_inlines.tests.TestInline.test_tabular_non_field_errors) 237s non_field_errors are displayed correctly, including the correct value ... ok 237s test_deleting_inline_with_protected_delete_does_not_validate (admin_inlines.tests.TestInlineProtectedOnDelete.test_deleting_inline_with_protected_delete_does_not_validate) ... ok 237s test_both_verbose_names_inline (admin_inlines.tests.TestVerboseNameInlineForms.test_both_verbose_names_inline) ... ok 237s test_verbose_name_inline (admin_inlines.tests.TestVerboseNameInlineForms.test_verbose_name_inline) ... ok 237s test_verbose_name_plural_inline (admin_inlines.tests.TestVerboseNameInlineForms.test_verbose_name_plural_inline) ... ok 237s test_add_url_not_allowed (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_add_url_not_allowed) ... ok 237s test_extra_inlines_are_not_shown (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_extra_inlines_are_not_shown) ... ok 237s test_get_to_change_url_is_allowed (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_get_to_change_url_is_allowed) ... ok 237s test_inline_delete_buttons_are_not_shown (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_inline_delete_buttons_are_not_shown) ... ok 237s test_inlines_are_rendered_as_read_only (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_inlines_are_rendered_as_read_only) ... ok 237s test_main_model_is_rendered_as_read_only (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_main_model_is_rendered_as_read_only) ... ok 237s test_post_to_change_url_not_allowed (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_post_to_change_url_not_allowed) ... ok 237s test_submit_line_shows_only_close_button (admin_inlines.tests.TestReadOnlyChangeViewInlinePermissions.test_submit_line_shows_only_close_button) ... ok 237s test_template_detail_path_traversal (admin_docs.test_views.AdminDocViewDefaultEngineOnly.test_template_detail_path_traversal) ... ok 237s test_callable_object_view (admin_docs.test_middleware.XViewMiddlewareTest.test_callable_object_view) ... ok 237s test_no_auth_middleware (admin_docs.test_middleware.XViewMiddlewareTest.test_no_auth_middleware) ... ok 237s test_xview_class (admin_docs.test_middleware.XViewMiddlewareTest.test_xview_class) ... ok 237s test_xview_func (admin_docs.test_middleware.XViewMiddlewareTest.test_xview_func) ... ok 239s test_bookmarklets (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_bookmarklets) ... ok 239s test_callable_urlconf (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_callable_urlconf) 239s Index view should correctly resolve view patterns when ROOT_URLCONF is ... ok 239s test_index (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_index) ... ok 239s test_missing_docutils (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_missing_docutils) ... ok 239s test_model_index (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_model_index) ... ok 239s test_namespaced_view_detail (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_namespaced_view_detail) ... ok 239s test_no_sites_framework (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_no_sites_framework) 239s Without the sites framework, should not access SITE_ID or Site ... ok 239s test_template_detail (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_template_detail) ... ok 239s test_templatefilter_index (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_templatefilter_index) ... ok 239s test_templatetag_index (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_templatetag_index) ... ok 239s test_view_detail (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_view_detail) ... ok 239s test_view_detail_as_method (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_view_detail_as_method) 239s Views that are methods can be displayed. ... ok 239s test_view_detail_illegal_import (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_view_detail_illegal_import) ... ok 239s test_view_index (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_view_index) ... ok 239s test_view_index_with_method (admin_docs.test_views.AdminDocViewWithMultipleEngines.test_view_index_with_method) 239s Views that are methods are listed correctly. ... ok 240s test_bookmarklets (admin_docs.test_views.AdminDocViewTests.test_bookmarklets) ... ok 240s test_callable_urlconf (admin_docs.test_views.AdminDocViewTests.test_callable_urlconf) 240s Index view should correctly resolve view patterns when ROOT_URLCONF is ... ok 240s test_index (admin_docs.test_views.AdminDocViewTests.test_index) ... ok 240s test_missing_docutils (admin_docs.test_views.AdminDocViewTests.test_missing_docutils) ... ok 240s test_model_index (admin_docs.test_views.AdminDocViewTests.test_model_index) ... ok 240s test_namespaced_view_detail (admin_docs.test_views.AdminDocViewTests.test_namespaced_view_detail) ... ok 240s test_no_sites_framework (admin_docs.test_views.AdminDocViewTests.test_no_sites_framework) 240s Without the sites framework, should not access SITE_ID or Site ... ok 240s test_template_detail (admin_docs.test_views.AdminDocViewTests.test_template_detail) ... ok 240s test_templatefilter_index (admin_docs.test_views.AdminDocViewTests.test_templatefilter_index) ... ok 240s test_templatetag_index (admin_docs.test_views.AdminDocViewTests.test_templatetag_index) ... ok 240s test_view_detail (admin_docs.test_views.AdminDocViewTests.test_view_detail) ... ok 240s test_view_detail_as_method (admin_docs.test_views.AdminDocViewTests.test_view_detail_as_method) 240s Views that are methods can be displayed. ... ok 240s test_view_detail_illegal_import (admin_docs.test_views.AdminDocViewTests.test_view_detail_illegal_import) ... ok 240s test_view_index (admin_docs.test_views.AdminDocViewTests.test_view_index) ... ok 240s test_view_index_with_method (admin_docs.test_views.AdminDocViewTests.test_view_index_with_method) 240s Views that are methods are listed correctly. ... ok 240s test_backend_range_save (model_fields.test_autofield.AutoFieldTests.test_backend_range_save) 240s Backend specific ranges can be saved without corruption. ... ok 240s test_backend_range_validation (model_fields.test_autofield.AutoFieldTests.test_backend_range_validation) 240s Backend specific ranges are enforced at the model validation level ... ok 240s test_coercing (model_fields.test_autofield.AutoFieldTests.test_coercing) ... ok 240s test_documented_range (model_fields.test_autofield.AutoFieldTests.test_documented_range) 240s Values within the documented safe range pass validation, and can be ... ok 240s test_invalid_value (model_fields.test_autofield.AutoFieldTests.test_invalid_value) ... ok 240s test_redundant_backend_range_validators (model_fields.test_autofield.AutoFieldTests.test_redundant_backend_range_validators) 240s If there are stricter validators than the ones from the database ... ok 240s test_rel_db_type (model_fields.test_autofield.AutoFieldTests.test_rel_db_type) ... ok 240s test_types (model_fields.test_autofield.AutoFieldTests.test_types) ... ok 240s test_backend_range_save (model_fields.test_autofield.BigAutoFieldTests.test_backend_range_save) 240s Backend specific ranges can be saved without corruption. ... ok 240s test_backend_range_validation (model_fields.test_autofield.BigAutoFieldTests.test_backend_range_validation) 240s Backend specific ranges are enforced at the model validation level ... ok 240s test_coercing (model_fields.test_autofield.BigAutoFieldTests.test_coercing) ... ok 240s test_documented_range (model_fields.test_autofield.BigAutoFieldTests.test_documented_range) 240s Values within the documented safe range pass validation, and can be ... ok 240s test_invalid_value (model_fields.test_autofield.BigAutoFieldTests.test_invalid_value) ... ok 240s test_redundant_backend_range_validators (model_fields.test_autofield.BigAutoFieldTests.test_redundant_backend_range_validators) 240s If there are stricter validators than the ones from the database ... ok 240s test_rel_db_type (model_fields.test_autofield.BigAutoFieldTests.test_rel_db_type) ... ok 240s test_types (model_fields.test_autofield.BigAutoFieldTests.test_types) ... ok 240s test_backend_range_save (model_fields.test_integerfield.BigIntegerFieldTests.test_backend_range_save) 240s Backend specific ranges can be saved without corruption. ... ok 240s test_backend_range_validation (model_fields.test_integerfield.BigIntegerFieldTests.test_backend_range_validation) 240s Backend specific ranges are enforced at the model validation level ... ok 240s test_coercing (model_fields.test_integerfield.BigIntegerFieldTests.test_coercing) ... ok 240s test_documented_range (model_fields.test_integerfield.BigIntegerFieldTests.test_documented_range) 240s Values within the documented safe range pass validation, and can be ... ok 240s test_invalid_value (model_fields.test_integerfield.BigIntegerFieldTests.test_invalid_value) ... ok 240s test_redundant_backend_range_validators (model_fields.test_integerfield.BigIntegerFieldTests.test_redundant_backend_range_validators) 240s If there are stricter validators than the ones from the database ... ok 240s test_rel_db_type (model_fields.test_integerfield.BigIntegerFieldTests.test_rel_db_type) ... ok 240s test_types (model_fields.test_integerfield.BigIntegerFieldTests.test_types) ... ok 240s test_backend_range_save (model_fields.test_integerfield.IntegerFieldTests.test_backend_range_save) 240s Backend specific ranges can be saved without corruption. ... ok 240s test_backend_range_validation (model_fields.test_integerfield.IntegerFieldTests.test_backend_range_validation) 240s Backend specific ranges are enforced at the model validation level ... ok 240s test_coercing (model_fields.test_integerfield.IntegerFieldTests.test_coercing) ... ok 240s test_documented_range (model_fields.test_integerfield.IntegerFieldTests.test_documented_range) 240s Values within the documented safe range pass validation, and can be ... ok 240s test_invalid_value (model_fields.test_integerfield.IntegerFieldTests.test_invalid_value) ... ok 240s test_redundant_backend_range_validators (model_fields.test_integerfield.IntegerFieldTests.test_redundant_backend_range_validators) 240s If there are stricter validators than the ones from the database ... ok 240s test_rel_db_type (model_fields.test_integerfield.IntegerFieldTests.test_rel_db_type) ... ok 240s test_types (model_fields.test_integerfield.IntegerFieldTests.test_types) ... ok 241s test_backend_range_save (model_fields.test_autofield.SmallAutoFieldTests.test_backend_range_save) 241s Backend specific ranges can be saved without corruption. ... ok 241s test_backend_range_validation (model_fields.test_autofield.SmallAutoFieldTests.test_backend_range_validation) 241s Backend specific ranges are enforced at the model validation level ... ok 241s test_coercing (model_fields.test_autofield.SmallAutoFieldTests.test_coercing) ... ok 241s test_documented_range (model_fields.test_autofield.SmallAutoFieldTests.test_documented_range) 241s Values within the documented safe range pass validation, and can be ... ok 241s test_invalid_value (model_fields.test_autofield.SmallAutoFieldTests.test_invalid_value) ... ok 241s test_redundant_backend_range_validators (model_fields.test_autofield.SmallAutoFieldTests.test_redundant_backend_range_validators) 241s If there are stricter validators than the ones from the database ... ok 241s test_rel_db_type (model_fields.test_autofield.SmallAutoFieldTests.test_rel_db_type) ... ok 241s test_types (model_fields.test_autofield.SmallAutoFieldTests.test_types) ... ok 241s test_app_not_found (admin_docs.test_views.TestModelDetailView.test_app_not_found) ... ok 241s test_descriptions_render_correctly (admin_docs.test_views.TestModelDetailView.test_descriptions_render_correctly) 241s The ``description`` field should render correctly for each field type. ... ok 241s test_instance_of_cached_property_methods_are_displayed (admin_docs.test_views.TestModelDetailView.test_instance_of_cached_property_methods_are_displayed) 241s Model cached properties are displayed as fields. ... ok 241s test_instance_of_property_methods_are_displayed (admin_docs.test_views.TestModelDetailView.test_instance_of_property_methods_are_displayed) 241s Model properties are displayed as fields. ... ok 241s test_method_data_types (admin_docs.test_views.TestModelDetailView.test_method_data_types) ... ok 241s test_method_excludes (admin_docs.test_views.TestModelDetailView.test_method_excludes) 241s Methods that begin with strings defined in ... ok 241s test_methods_with_arguments (admin_docs.test_views.TestModelDetailView.test_methods_with_arguments) 241s Methods that take arguments should also displayed. ... ok 241s test_methods_with_arguments_display_arguments (admin_docs.test_views.TestModelDetailView.test_methods_with_arguments_display_arguments) 241s Methods with arguments should have their arguments displayed. ... ok 241s test_methods_with_arguments_display_arguments_default_value (admin_docs.test_views.TestModelDetailView.test_methods_with_arguments_display_arguments_default_value) 241s Methods with keyword arguments should have their arguments displayed. ... ok 241s test_methods_with_multiple_arguments_display_arguments (admin_docs.test_views.TestModelDetailView.test_methods_with_multiple_arguments_display_arguments) 241s Methods with multiple arguments should have all their arguments ... ok 241s test_model_detail_title (admin_docs.test_views.TestModelDetailView.test_model_detail_title) ... ok 241s test_model_docstring_renders_correctly (admin_docs.test_views.TestModelDetailView.test_model_docstring_renders_correctly) ... ok 241s test_model_not_found (admin_docs.test_views.TestModelDetailView.test_model_not_found) ... ok 241s test_model_with_many_to_one (admin_docs.test_views.TestModelDetailView.test_model_with_many_to_one) ... ok 241s test_model_with_no_backward_relations_render_only_relevant_fields (admin_docs.test_views.TestModelDetailView.test_model_with_no_backward_relations_render_only_relevant_fields) 241s A model with ``related_name`` of `+` shouldn't show backward ... ok 241s test_backend_range_save (model_fields.test_integerfield.SmallIntegerFieldTests.test_backend_range_save) 241s Backend specific ranges can be saved without corruption. ... ok 241s test_backend_range_validation (model_fields.test_integerfield.SmallIntegerFieldTests.test_backend_range_validation) 241s Backend specific ranges are enforced at the model validation level ... ok 241s test_coercing (model_fields.test_integerfield.SmallIntegerFieldTests.test_coercing) ... ok 241s test_documented_range (model_fields.test_integerfield.SmallIntegerFieldTests.test_documented_range) 241s Values within the documented safe range pass validation, and can be ... ok 241s test_invalid_value (model_fields.test_integerfield.SmallIntegerFieldTests.test_invalid_value) ... ok 241s test_redundant_backend_range_validators (model_fields.test_integerfield.SmallIntegerFieldTests.test_redundant_backend_range_validators) 241s If there are stricter validators than the ones from the database ... ok 241s test_rel_db_type (model_fields.test_integerfield.SmallIntegerFieldTests.test_rel_db_type) ... ok 241s test_types (model_fields.test_integerfield.SmallIntegerFieldTests.test_types) ... ok 241s test_editable (model_fields.test_binaryfield.BinaryFieldTests.test_editable) ... ok 241s test_filter (model_fields.test_binaryfield.BinaryFieldTests.test_filter) ... ok 241s test_filter_bytearray (model_fields.test_binaryfield.BinaryFieldTests.test_filter_bytearray) ... ok 241s test_filter_memoryview (model_fields.test_binaryfield.BinaryFieldTests.test_filter_memoryview) ... ok 241s test_max_length (model_fields.test_binaryfield.BinaryFieldTests.test_max_length) ... ok 241s test_set_and_retrieve (model_fields.test_binaryfield.BinaryFieldTests.test_set_and_retrieve) ... ok 241s test_booleanfield_choices_blank (model_fields.test_booleanfield.BooleanFieldTests.test_booleanfield_choices_blank) 241s BooleanField with choices and defaults doesn't generate a formfield ... ok 241s test_booleanfield_choices_blank_desired (model_fields.test_booleanfield.BooleanFieldTests.test_booleanfield_choices_blank_desired) 241s BooleanField with choices and no default should generated a formfield ... ok 241s test_booleanfield_get_prep_value (model_fields.test_booleanfield.BooleanFieldTests.test_booleanfield_get_prep_value) ... ok 241s test_booleanfield_to_python (model_fields.test_booleanfield.BooleanFieldTests.test_booleanfield_to_python) ... ok 241s test_null_default (model_fields.test_booleanfield.BooleanFieldTests.test_null_default) 241s A BooleanField defaults to None, which isn't a valid value (#15124). ... ok 241s test_nullbooleanfield_formfield (model_fields.test_booleanfield.BooleanFieldTests.test_nullbooleanfield_formfield) ... ok 241s test_nullbooleanfield_get_prep_value (model_fields.test_booleanfield.BooleanFieldTests.test_nullbooleanfield_get_prep_value) ... ok 241s test_nullbooleanfield_to_python (model_fields.test_booleanfield.BooleanFieldTests.test_nullbooleanfield_to_python) ... ok 241s test_return_type (model_fields.test_booleanfield.BooleanFieldTests.test_return_type) ... ok 241s test_select_related (model_fields.test_booleanfield.BooleanFieldTests.test_select_related) 241s Boolean fields retrieved via select_related() should return booleans. ... ok 241s test_assignment_from_choice_enum (model_fields.test_charfield.TestCharField.test_assignment_from_choice_enum) ... ok 241s test_emoji (model_fields.test_charfield.TestCharField.test_emoji) ... ok 241s test_lookup_integer_in_charfield (model_fields.test_charfield.TestCharField.test_lookup_integer_in_charfield) ... ok 241s test_max_length_passed_to_formfield (model_fields.test_charfield.TestCharField.test_max_length_passed_to_formfield) 241s CharField passes its max_length attribute to form fields created using ... ok 241s test_datetimefield_to_python_microseconds (model_fields.test_datetimefield.DateTimeFieldTests.test_datetimefield_to_python_microseconds) 241s DateTimeField.to_python() supports microseconds. ... ok 241s test_datetimes_save_completely (model_fields.test_datetimefield.DateTimeFieldTests.test_datetimes_save_completely) ... ok 241s test_lookup_date_with_use_tz (model_fields.test_datetimefield.DateTimeFieldTests.test_lookup_date_with_use_tz) ... ok 241s test_lookup_date_without_use_tz (model_fields.test_datetimefield.DateTimeFieldTests.test_lookup_date_without_use_tz) ... ok 241s test_timefield_to_python_microseconds (model_fields.test_datetimefield.DateTimeFieldTests.test_timefield_to_python_microseconds) 241s TimeField.to_python() supports microseconds. ... ok 241s test_exact (model_fields.test_durationfield.TestQuerying.test_exact) ... ok 241s test_gt (model_fields.test_durationfield.TestQuerying.test_gt) ... ok 241s test_create_empty (model_fields.test_durationfield.TestSaveLoad.test_create_empty) ... ok 241s test_fractional_seconds (model_fields.test_durationfield.TestSaveLoad.test_fractional_seconds) ... ok 241s test_simple_roundtrip (model_fields.test_durationfield.TestSaveLoad.test_simple_roundtrip) ... ok 241s test_default (model_fields.test_decimalfield.DecimalFieldTests.test_default) ... ok 241s test_fetch_from_db_without_float_rounding (model_fields.test_decimalfield.DecimalFieldTests.test_fetch_from_db_without_float_rounding) ... skipped 'SQLite stores values rounded to 15 significant digits.' 241s test_filter_with_strings (model_fields.test_decimalfield.DecimalFieldTests.test_filter_with_strings) 241s Should be able to filter decimal fields using strings (#8023). ... ok 241s test_get_prep_value (model_fields.test_decimalfield.DecimalFieldTests.test_get_prep_value) ... ok 241s test_invalid_value (model_fields.test_decimalfield.DecimalFieldTests.test_invalid_value) ... ok 241s test_lookup_decimal_larger_than_max_digits (model_fields.test_decimalfield.DecimalFieldTests.test_lookup_decimal_larger_than_max_digits) ... ok 241s test_lookup_really_big_value (model_fields.test_decimalfield.DecimalFieldTests.test_lookup_really_big_value) 241s Really big values can be used in a filter statement. ... ok 241s test_max_decimal_places_validation (model_fields.test_decimalfield.DecimalFieldTests.test_max_decimal_places_validation) ... ok 241s test_max_digits_validation (model_fields.test_decimalfield.DecimalFieldTests.test_max_digits_validation) ... ok 241s test_max_whole_digits_validation (model_fields.test_decimalfield.DecimalFieldTests.test_max_whole_digits_validation) ... ok 241s test_roundtrip_with_trailing_zeros (model_fields.test_decimalfield.DecimalFieldTests.test_roundtrip_with_trailing_zeros) 241s Trailing zeros in the fractional part aren't truncated. ... ok 241s test_save_inf_invalid (model_fields.test_decimalfield.DecimalFieldTests.test_save_inf_invalid) ... ok 241s test_save_nan_invalid (model_fields.test_decimalfield.DecimalFieldTests.test_save_nan_invalid) ... ok 241s test_save_without_float_conversion (model_fields.test_decimalfield.DecimalFieldTests.test_save_without_float_conversion) 241s Ensure decimals don't go through a corrupting float conversion during ... ok 241s test_to_python (model_fields.test_decimalfield.DecimalFieldTests.test_to_python) ... ok 241s test_float_validates_object (model_fields.test_floatfield.TestFloatField.test_float_validates_object) ... ok 241s test_invalid_value (model_fields.test_floatfield.TestFloatField.test_invalid_value) ... ok 241s test_abstract_filefield_model (model_fields.test_filefield.FileFieldTests.test_abstract_filefield_model) 241s FileField.model returns the concrete model for fields defined in an ... ok 241s test_changed (model_fields.test_filefield.FileFieldTests.test_changed) 241s FileField.save_form_data(), if passed a truthy value, updates its ... ok 241s test_clearable (model_fields.test_filefield.FileFieldTests.test_clearable) 241s FileField.save_form_data() will clear its instance attribute value if ... ok 241s test_defer (model_fields.test_filefield.FileFieldTests.test_defer) ... ok 241s test_delete_when_file_unset (model_fields.test_filefield.FileFieldTests.test_delete_when_file_unset) 241s Calling delete on an unset FileField should not call the file deletion ... ok 241s test_media_root_pathlib (model_fields.test_filefield.FileFieldTests.test_media_root_pathlib) ... ok 241s test_move_temporary_file (model_fields.test_filefield.FileFieldTests.test_move_temporary_file) 241s The temporary uploaded file is moved rather than copied to the ... ok 241s test_open_returns_self (model_fields.test_filefield.FileFieldTests.test_open_returns_self) 241s FieldField.open() returns self so it can be used as a context manager. ... ok 241s test_pickle (model_fields.test_filefield.FileFieldTests.test_pickle) ... ok 241s test_refresh_from_db (model_fields.test_filefield.FileFieldTests.test_refresh_from_db) ... ok 241s test_save_without_name (model_fields.test_filefield.FileFieldTests.test_save_without_name) ... ok 241s test_unchanged (model_fields.test_filefield.FileFieldTests.test_unchanged) 241s FileField.save_form_data() considers None to mean "no change" rather ... ok 241s test_unique_when_same_filename (model_fields.test_filefield.FileFieldTests.test_unique_when_same_filename) 241s A FileField with unique=True shouldn't allow two instances with the ... ok 241s test_blank_string_saved_as_null (model_fields.test_genericipaddressfield.GenericIPAddressFieldTests.test_blank_string_saved_as_null) ... ok 241s test_genericipaddressfield_formfield_protocol (model_fields.test_genericipaddressfield.GenericIPAddressFieldTests.test_genericipaddressfield_formfield_protocol) 241s GenericIPAddressField with a specified protocol does not generate a ... ok 241s test_null_value (model_fields.test_genericipaddressfield.GenericIPAddressFieldTests.test_null_value) 241s Null values should be resolved to None. ... ok 241s test_save_load (model_fields.test_genericipaddressfield.GenericIPAddressFieldTests.test_save_load) ... ok 242s test_abstract_model_app_relative_foreign_key (model_fields.test_foreignkey.ForeignKeyTests.test_abstract_model_app_relative_foreign_key) ... ok 242s test_abstract_model_pending_operations (model_fields.test_foreignkey.ForeignKeyTests.test_abstract_model_pending_operations) 242s Foreign key fields declared on abstract models should not add lazy ... ok 242s test_callable_default (model_fields.test_foreignkey.ForeignKeyTests.test_callable_default) 242s A lazy callable may be used for ForeignKey.default. ... ok 242s test_empty_string_fk (model_fields.test_foreignkey.ForeignKeyTests.test_empty_string_fk) 242s Empty strings foreign key values don't get converted to None (#19299). ... ok 242s test_fk_to_fk_get_col_output_field (model_fields.test_foreignkey.ForeignKeyTests.test_fk_to_fk_get_col_output_field) ... ok 242s test_invalid_to_parameter (model_fields.test_foreignkey.ForeignKeyTests.test_invalid_to_parameter) ... ok 242s test_manager_class_getitem (model_fields.test_foreignkey.ForeignKeyTests.test_manager_class_getitem) ... ok 242s test_non_local_to_field (model_fields.test_foreignkey.ForeignKeyTests.test_non_local_to_field) ... ok 242s test_recursive_fks_get_col (model_fields.test_foreignkey.ForeignKeyTests.test_recursive_fks_get_col) ... ok 242s test_related_name_converted_to_text (model_fields.test_foreignkey.ForeignKeyTests.test_related_name_converted_to_text) ... ok 242s test_to_python (model_fields.test_foreignkey.ForeignKeyTests.test_to_python) ... ok 242s test_warning_when_unique_true_on_fk (model_fields.test_foreignkey.ForeignKeyTests.test_warning_when_unique_true_on_fk) ... ok 242s test_assignment_to_None (model_fields.test_imagefield.ImageFieldDimensionsFirstTests.test_assignment_to_None) 242s Assigning ImageField to None clears dimensions. ... ok 242s test_constructor (model_fields.test_imagefield.ImageFieldDimensionsFirstTests.test_constructor) 242s Tests assigning an image field through the model's constructor. ... ok 242s test_create (model_fields.test_imagefield.ImageFieldDimensionsFirstTests.test_create) 242s Tests assigning an image in Manager.create(). ... ok 242s test_default_value (model_fields.test_imagefield.ImageFieldDimensionsFirstTests.test_default_value) 242s The default value for an ImageField is an instance of ... ok 242s test_dimensions (model_fields.test_imagefield.ImageFieldDimensionsFirstTests.test_dimensions) 242s Dimensions are updated correctly in various situations. ... ok 242s test_field_save_and_delete_methods (model_fields.test_imagefield.ImageFieldDimensionsFirstTests.test_field_save_and_delete_methods) 242s Tests assignment using the field's save method and deletion using ... ok 242s test_image_after_constructor (model_fields.test_imagefield.ImageFieldDimensionsFirstTests.test_image_after_constructor) 242s Tests behavior when image is not passed in constructor. ... ok 242s test_assignment_to_None (model_fields.test_imagefield.ImageFieldNoDimensionsTests.test_assignment_to_None) 242s Assigning ImageField to None clears dimensions. ... ok 242s test_constructor (model_fields.test_imagefield.ImageFieldNoDimensionsTests.test_constructor) 242s Tests assigning an image field through the model's constructor. ... ok 242s test_create (model_fields.test_imagefield.ImageFieldNoDimensionsTests.test_create) 242s Tests assigning an image in Manager.create(). ... ok 242s test_default_value (model_fields.test_imagefield.ImageFieldNoDimensionsTests.test_default_value) 242s The default value for an ImageField is an instance of ... ok 242s test_dimensions (model_fields.test_imagefield.ImageFieldNoDimensionsTests.test_dimensions) 242s Dimensions are updated correctly in various situations. ... ok 242s test_field_save_and_delete_methods (model_fields.test_imagefield.ImageFieldNoDimensionsTests.test_field_save_and_delete_methods) 242s Tests assignment using the field's save method and deletion using ... ok 242s test_image_after_constructor (model_fields.test_imagefield.ImageFieldNoDimensionsTests.test_image_after_constructor) 242s Tests behavior when image is not passed in constructor. ... ok 242s test_assignment_to_None (model_fields.test_imagefield.ImageFieldOneDimensionTests.test_assignment_to_None) 242s Assigning ImageField to None clears dimensions. ... ok 242s test_constructor (model_fields.test_imagefield.ImageFieldOneDimensionTests.test_constructor) 242s Tests assigning an image field through the model's constructor. ... ok 242s test_create (model_fields.test_imagefield.ImageFieldOneDimensionTests.test_create) 242s Tests assigning an image in Manager.create(). ... ok 242s test_default_value (model_fields.test_imagefield.ImageFieldOneDimensionTests.test_default_value) 242s The default value for an ImageField is an instance of ... ok 242s test_dimensions (model_fields.test_imagefield.ImageFieldOneDimensionTests.test_dimensions) 242s Dimensions are updated correctly in various situations. ... ok 242s test_field_save_and_delete_methods (model_fields.test_imagefield.ImageFieldOneDimensionTests.test_field_save_and_delete_methods) 242s Tests assignment using the field's save method and deletion using ... ok 242s test_image_after_constructor (model_fields.test_imagefield.ImageFieldOneDimensionTests.test_image_after_constructor) 242s Tests behavior when image is not passed in constructor. ... ok 242s test_defer (model_fields.test_imagefield.ImageFieldTests.test_defer) ... ok 242s test_delete_when_missing (model_fields.test_imagefield.ImageFieldTests.test_delete_when_missing) 242s Bug #8175: correctly delete an object where the file no longer ... ok 242s test_equal_notequal_hash (model_fields.test_imagefield.ImageFieldTests.test_equal_notequal_hash) 242s Bug #9786: Ensure '==' and '!=' work correctly. ... ok 242s test_instantiate_missing (model_fields.test_imagefield.ImageFieldTests.test_instantiate_missing) 242s If the underlying file is unavailable, still create instantiate the ... ok 242s test_pickle (model_fields.test_imagefield.ImageFieldTests.test_pickle) 242s ImageField can be pickled, unpickled, and that the image of ... ok 242s test_size_method (model_fields.test_imagefield.ImageFieldTests.test_size_method) 242s Bug #8534: FileField.size should not leave the file open. ... ok 242s test_assignment_to_None (model_fields.test_imagefield.ImageFieldTwoDimensionsTests.test_assignment_to_None) 242s Assigning ImageField to None clears dimensions. ... ok 242s test_constructor (model_fields.test_imagefield.ImageFieldTwoDimensionsTests.test_constructor) 242s Tests assigning an image field through the model's constructor. ... ok 242s test_create (model_fields.test_imagefield.ImageFieldTwoDimensionsTests.test_create) 242s Tests assigning an image in Manager.create(). ... ok 242s test_default_value (model_fields.test_imagefield.ImageFieldTwoDimensionsTests.test_default_value) 242s The default value for an ImageField is an instance of ... ok 242s test_dimensions (model_fields.test_imagefield.ImageFieldTwoDimensionsTests.test_dimensions) 242s Dimensions are updated correctly in various situations. ... ok 242s test_field_save_and_delete_methods (model_fields.test_imagefield.ImageFieldTwoDimensionsTests.test_field_save_and_delete_methods) 242s Tests assignment using the field's save method and deletion using ... ok 242s test_image_after_constructor (model_fields.test_imagefield.ImageFieldTwoDimensionsTests.test_image_after_constructor) 242s Tests behavior when image is not passed in constructor. ... ok 242s test_assignment_to_None (model_fields.test_imagefield.ImageFieldUsingFileTests.test_assignment_to_None) 242s Assigning ImageField to None clears dimensions. ... ok 242s test_constructor (model_fields.test_imagefield.ImageFieldUsingFileTests.test_constructor) 242s Tests assigning an image field through the model's constructor. ... ok 242s test_create (model_fields.test_imagefield.ImageFieldUsingFileTests.test_create) 242s Tests assigning an image in Manager.create(). ... ok 242s test_default_value (model_fields.test_imagefield.ImageFieldUsingFileTests.test_default_value) 242s The default value for an ImageField is an instance of ... ok 242s test_dimensions (model_fields.test_imagefield.ImageFieldUsingFileTests.test_dimensions) 242s Dimensions are updated correctly in various situations. ... ok 242s test_field_save_and_delete_methods (model_fields.test_imagefield.ImageFieldUsingFileTests.test_field_save_and_delete_methods) 242s Tests assignment using the field's save method and deletion using ... ok 242s test_image_after_constructor (model_fields.test_imagefield.ImageFieldUsingFileTests.test_image_after_constructor) 242s Tests behavior when image is not passed in constructor. ... ok 242s test_assignment (model_fields.test_imagefield.TwoImageFieldTests.test_assignment) ... ok 242s test_constructor (model_fields.test_imagefield.TwoImageFieldTests.test_constructor) ... ok 242s test_create (model_fields.test_imagefield.TwoImageFieldTests.test_create) ... ok 242s test_dimensions (model_fields.test_imagefield.TwoImageFieldTests.test_dimensions) 242s Dimensions are updated correctly in various situations. ... ok 242s test_field_save_and_delete_methods (model_fields.test_imagefield.TwoImageFieldTests.test_field_save_and_delete_methods) ... ok 242s test_backend_range_save (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_backend_range_save) 242s Backend specific ranges can be saved without corruption. ... ok 242s test_backend_range_validation (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_backend_range_validation) 242s Backend specific ranges are enforced at the model validation level ... ok 242s test_coercing (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_coercing) ... ok 242s test_documented_range (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_documented_range) 242s Values within the documented safe range pass validation, and can be ... ok 242s test_invalid_value (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_invalid_value) ... ok 242s test_redundant_backend_range_validators (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_redundant_backend_range_validators) 242s If there are stricter validators than the ones from the database ... ok 242s test_rel_db_type (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_rel_db_type) ... ok 242s test_types (model_fields.test_integerfield.PositiveBigIntegerFieldTests.test_types) ... ok 242s test_backend_range_save (model_fields.test_integerfield.PositiveIntegerFieldTests.test_backend_range_save) 242s Backend specific ranges can be saved without corruption. ... ok 242s test_backend_range_validation (model_fields.test_integerfield.PositiveIntegerFieldTests.test_backend_range_validation) 242s Backend specific ranges are enforced at the model validation level ... ok 242s test_coercing (model_fields.test_integerfield.PositiveIntegerFieldTests.test_coercing) ... ok 242s test_documented_range (model_fields.test_integerfield.PositiveIntegerFieldTests.test_documented_range) 242s Values within the documented safe range pass validation, and can be ... ok 242s test_invalid_value (model_fields.test_integerfield.PositiveIntegerFieldTests.test_invalid_value) ... ok 242s test_negative_values (model_fields.test_integerfield.PositiveIntegerFieldTests.test_negative_values) ... ok 242s test_redundant_backend_range_validators (model_fields.test_integerfield.PositiveIntegerFieldTests.test_redundant_backend_range_validators) 242s If there are stricter validators than the ones from the database ... ok 242s test_rel_db_type (model_fields.test_integerfield.PositiveIntegerFieldTests.test_rel_db_type) ... ok 242s test_types (model_fields.test_integerfield.PositiveIntegerFieldTests.test_types) ... ok 243s test_custom_encoder_decoder (model_fields.test_jsonfield.JSONFieldTests.test_custom_encoder_decoder) ... ok 243s test_db_check_constraints (model_fields.test_jsonfield.JSONFieldTests.test_db_check_constraints) ... ok 243s test_invalid_value (model_fields.test_jsonfield.JSONFieldTests.test_invalid_value) ... ok 243s test_backend_range_save (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_backend_range_save) 243s Backend specific ranges can be saved without corruption. ... ok 243s test_backend_range_validation (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_backend_range_validation) 243s Backend specific ranges are enforced at the model validation level ... ok 243s test_coercing (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_coercing) ... ok 243s test_documented_range (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_documented_range) 243s Values within the documented safe range pass validation, and can be ... ok 243s test_invalid_value (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_invalid_value) ... ok 243s test_redundant_backend_range_validators (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_redundant_backend_range_validators) 243s If there are stricter validators than the ones from the database ... ok 243s test_rel_db_type (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_rel_db_type) ... ok 243s test_types (model_fields.test_integerfield.PositiveSmallIntegerFieldTests.test_types) ... ok 243s test_ambiguous_str_value_deprecation (model_fields.test_jsonfield.TestSaveLoad.test_ambiguous_str_value_deprecation) ... ok 243s test_dict (model_fields.test_jsonfield.TestSaveLoad.test_dict) ... ok 243s test_json_null_different_from_sql_null (model_fields.test_jsonfield.TestSaveLoad.test_json_null_different_from_sql_null) ... ok 243s test_list (model_fields.test_jsonfield.TestSaveLoad.test_list) ... ok 243s test_null (model_fields.test_jsonfield.TestSaveLoad.test_null) ... ok 243s test_primitives (model_fields.test_jsonfield.TestSaveLoad.test_primitives) ... ok 243s test_realistic_object (model_fields.test_jsonfield.TestSaveLoad.test_realistic_object) ... ok 243s test_value_str_primitives_deprecation (model_fields.test_jsonfield.TestSaveLoad.test_value_str_primitives_deprecation) ... ok 243s test_value_from_object_instance_with_pk (model_fields.test_manytomanyfield.ManyToManyFieldDBTests.test_value_from_object_instance_with_pk) ... ok 243s test_value_from_object_instance_without_pk (model_fields.test_manytomanyfield.ManyToManyFieldDBTests.test_value_from_object_instance_without_pk) ... ok 243s test_slugfield_max_length (model_fields.test_slugfield.SlugFieldTests.test_slugfield_max_length) 243s SlugField honors max_length. ... ok 243s test_slugfield_unicode_max_length (model_fields.test_slugfield.SlugFieldTests.test_slugfield_unicode_max_length) 243s SlugField with allow_unicode=True honors max_length. ... ok 243s test_choices_generates_select_widget (model_fields.test_textfield.TextFieldTests.test_choices_generates_select_widget) 243s A TextField with choices uses a Select widget. ... ok 243s test_emoji (model_fields.test_textfield.TextFieldTests.test_emoji) ... ok 243s test_lookup_integer_in_textfield (model_fields.test_textfield.TextFieldTests.test_lookup_integer_in_textfield) ... ok 243s test_max_length_passed_to_formfield (model_fields.test_textfield.TextFieldTests.test_max_length_passed_to_formfield) 243s TextField passes its max_length attribute to form fields created using ... ok 243s test_to_python (model_fields.test_textfield.TextFieldTests.test_to_python) 243s TextField.to_python() should return a string. ... ok 243s test_creation (model_fields.test_uuid.TestAsPrimaryKey.test_creation) ... ok 243s test_two_level_foreign_keys (model_fields.test_uuid.TestAsPrimaryKey.test_two_level_foreign_keys) ... ok 243s test_underlying_field (model_fields.test_uuid.TestAsPrimaryKey.test_underlying_field) ... ok 243s test_update_with_related_model_id (model_fields.test_uuid.TestAsPrimaryKey.test_update_with_related_model_id) ... ok 243s test_update_with_related_model_instance (model_fields.test_uuid.TestAsPrimaryKey.test_update_with_related_model_instance) ... ok 243s test_uuid_pk_on_bulk_create (model_fields.test_uuid.TestAsPrimaryKey.test_uuid_pk_on_bulk_create) ... ok 243s test_uuid_pk_on_save (model_fields.test_uuid.TestAsPrimaryKey.test_uuid_pk_on_save) ... ok 243s test_contains (model_fields.test_uuid.TestQuerying.test_contains) ... ok 243s test_endswith (model_fields.test_uuid.TestQuerying.test_endswith) ... ok 243s test_exact (model_fields.test_uuid.TestQuerying.test_exact) ... ok 243s test_filter_with_expr (model_fields.test_uuid.TestQuerying.test_filter_with_expr) ... ok 243s test_icontains (model_fields.test_uuid.TestQuerying.test_icontains) ... ok 243s test_iendswith (model_fields.test_uuid.TestQuerying.test_iendswith) ... ok 243s test_iexact (model_fields.test_uuid.TestQuerying.test_iexact) ... ok 243s test_isnull (model_fields.test_uuid.TestQuerying.test_isnull) ... ok 243s test_istartswith (model_fields.test_uuid.TestQuerying.test_istartswith) ... ok 243s test_startswith (model_fields.test_uuid.TestQuerying.test_startswith) ... ok 244s test_null_handling (model_fields.test_uuid.TestSaveLoad.test_null_handling) ... ok 244s test_pk_validated (model_fields.test_uuid.TestSaveLoad.test_pk_validated) ... ok 244s test_str_instance_bad_hyphens (model_fields.test_uuid.TestSaveLoad.test_str_instance_bad_hyphens) ... ok 244s test_str_instance_hyphens (model_fields.test_uuid.TestSaveLoad.test_str_instance_hyphens) ... ok 244s test_str_instance_no_hyphens (model_fields.test_uuid.TestSaveLoad.test_str_instance_no_hyphens) ... ok 244s test_uuid_instance (model_fields.test_uuid.TestSaveLoad.test_uuid_instance) ... ok 244s test_wrong_value (model_fields.test_uuid.TestSaveLoad.test_wrong_value) ... ok 244s test_get_choices (model_fields.tests.GetChoicesLimitChoicesToTests.test_get_choices) ... ok 244s test_get_choices_reverse_related_field (model_fields.tests.GetChoicesLimitChoicesToTests.test_get_choices_reverse_related_field) ... ok 244s test_get_choices (model_fields.tests.GetChoicesOrderingTests.test_get_choices) ... ok 244s test_get_choices_default_ordering (model_fields.tests.GetChoicesOrderingTests.test_get_choices_default_ordering) ... ok 244s test_get_choices_reverse_related_field (model_fields.tests.GetChoicesOrderingTests.test_get_choices_reverse_related_field) ... ok 244s test_get_choices_reverse_related_field_default_ordering (model_fields.tests.GetChoicesOrderingTests.test_get_choices_reverse_related_field_default_ordering) ... ok 244s test_extra_args (schema.test_logging.SchemaLoggerTests.test_extra_args) ... ok 244s test_array_key_contains (model_fields.test_jsonfield.TestQuerying.test_array_key_contains) ... skipped "Database doesn't support feature(s): supports_json_field_contains" 244s test_contained_by (model_fields.test_jsonfield.TestQuerying.test_contained_by) ... skipped "Database doesn't support feature(s): supports_json_field_contains" 244s test_contained_by_unsupported (model_fields.test_jsonfield.TestQuerying.test_contained_by_unsupported) ... ok 244s test_contains (model_fields.test_jsonfield.TestQuerying.test_contains) ... skipped "Database doesn't support feature(s): supports_json_field_contains" 244s test_contains_contained_by_with_key_transform (model_fields.test_jsonfield.TestQuerying.test_contains_contained_by_with_key_transform) ... skipped "Database doesn't support feature(s): supports_json_field_contains" 244s test_contains_primitives (model_fields.test_jsonfield.TestQuerying.test_contains_primitives) ... skipped "Database doesn't support feature(s): supports_primitives_in_json_field, supports_json_field_contains" 244s test_contains_unsupported (model_fields.test_jsonfield.TestQuerying.test_contains_unsupported) ... ok 244s test_deep_distinct (model_fields.test_jsonfield.TestQuerying.test_deep_distinct) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 244s test_deep_lookup_array (model_fields.test_jsonfield.TestQuerying.test_deep_lookup_array) ... ok 244s test_deep_lookup_mixed (model_fields.test_jsonfield.TestQuerying.test_deep_lookup_mixed) ... ok 244s test_deep_lookup_objs (model_fields.test_jsonfield.TestQuerying.test_deep_lookup_objs) ... ok 244s test_deep_lookup_transform (model_fields.test_jsonfield.TestQuerying.test_deep_lookup_transform) ... ok 244s test_deep_values (model_fields.test_jsonfield.TestQuerying.test_deep_values) ... ok 244s test_exact (model_fields.test_jsonfield.TestQuerying.test_exact) ... ok 244s test_exact_complex (model_fields.test_jsonfield.TestQuerying.test_exact_complex) ... ok 244s test_expression_wrapper_key_transform (model_fields.test_jsonfield.TestQuerying.test_expression_wrapper_key_transform) ... ok 244s test_has_any_keys (model_fields.test_jsonfield.TestQuerying.test_has_any_keys) ... ok 244s test_has_key (model_fields.test_jsonfield.TestQuerying.test_has_key) ... ok 244s test_has_key_deep (model_fields.test_jsonfield.TestQuerying.test_has_key_deep) ... ok 244s test_has_key_list (model_fields.test_jsonfield.TestQuerying.test_has_key_list) ... ok 244s test_has_key_literal_lookup (model_fields.test_jsonfield.TestQuerying.test_has_key_literal_lookup) ... ok 244s test_has_key_null_value (model_fields.test_jsonfield.TestQuerying.test_has_key_null_value) ... ok 244s test_has_key_number (model_fields.test_jsonfield.TestQuerying.test_has_key_number) ... ok 244s test_has_keys (model_fields.test_jsonfield.TestQuerying.test_has_keys) ... ok 244s test_icontains (model_fields.test_jsonfield.TestQuerying.test_icontains) ... ok 244s test_isnull (model_fields.test_jsonfield.TestQuerying.test_isnull) ... ok 244s test_isnull_key (model_fields.test_jsonfield.TestQuerying.test_isnull_key) ... ok 244s test_isnull_key_or_none (model_fields.test_jsonfield.TestQuerying.test_isnull_key_or_none) ... ok 244s test_join_key_transform_annotation_expression (model_fields.test_jsonfield.TestQuerying.test_join_key_transform_annotation_expression) ... ok 244s test_key_contains (model_fields.test_jsonfield.TestQuerying.test_key_contains) ... skipped "Database doesn't support feature(s): supports_json_field_contains" 244s test_key_endswith (model_fields.test_jsonfield.TestQuerying.test_key_endswith) ... ok 244s test_key_escape (model_fields.test_jsonfield.TestQuerying.test_key_escape) ... ok 244s test_key_icontains (model_fields.test_jsonfield.TestQuerying.test_key_icontains) ... ok 244s test_key_iendswith (model_fields.test_jsonfield.TestQuerying.test_key_iendswith) ... ok 244s test_key_iexact (model_fields.test_jsonfield.TestQuerying.test_key_iexact) ... ok 244s test_key_in (model_fields.test_jsonfield.TestQuerying.test_key_in) ... ok 244s test_key_iregex (model_fields.test_jsonfield.TestQuerying.test_key_iregex) ... ok 244s test_key_istartswith (model_fields.test_jsonfield.TestQuerying.test_key_istartswith) ... ok 244s test_key_quoted_string (model_fields.test_jsonfield.TestQuerying.test_key_quoted_string) ... ok 244s test_key_regex (model_fields.test_jsonfield.TestQuerying.test_key_regex) ... ok 244s test_key_sql_injection (model_fields.test_jsonfield.TestQuerying.test_key_sql_injection) ... skipped "Database doesn't support feature(s): has_json_operators" 244s test_key_sql_injection_escape (model_fields.test_jsonfield.TestQuerying.test_key_sql_injection_escape) ... ok 244s test_key_startswith (model_fields.test_jsonfield.TestQuerying.test_key_startswith) ... ok 244s test_key_text_transform_char_lookup (model_fields.test_jsonfield.TestQuerying.test_key_text_transform_char_lookup) ... ok 244s test_key_text_transform_from_lookup (model_fields.test_jsonfield.TestQuerying.test_key_text_transform_from_lookup) ... ok 244s test_key_text_transform_from_lookup_invalid (model_fields.test_jsonfield.TestQuerying.test_key_text_transform_from_lookup_invalid) ... ok 244s test_key_transform_annotation_expression (model_fields.test_jsonfield.TestQuerying.test_key_transform_annotation_expression) ... ok 244s test_key_transform_expression (model_fields.test_jsonfield.TestQuerying.test_key_transform_expression) ... ok 244s test_key_transform_raw_expression (model_fields.test_jsonfield.TestQuerying.test_key_transform_raw_expression) ... ok 244s test_key_values (model_fields.test_jsonfield.TestQuerying.test_key_values) ... ok 244s test_key_values_boolean (model_fields.test_jsonfield.TestQuerying.test_key_values_boolean) ... ok 244s test_lookup_exclude (model_fields.test_jsonfield.TestQuerying.test_lookup_exclude) ... ok 244s test_lookup_exclude_nonexistent_key (model_fields.test_jsonfield.TestQuerying.test_lookup_exclude_nonexistent_key) ... ok 244s test_lookups_with_key_transform (model_fields.test_jsonfield.TestQuerying.test_lookups_with_key_transform) ... ok 244s test_nested_key_transform_annotation_expression (model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_annotation_expression) ... ok 244s test_nested_key_transform_expression (model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_expression) ... ok 244s test_nested_key_transform_on_subquery (model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_on_subquery) ... ok 244s test_nested_key_transform_raw_expression (model_fields.test_jsonfield.TestQuerying.test_nested_key_transform_raw_expression) ... ok 244s test_none_key (model_fields.test_jsonfield.TestQuerying.test_none_key) ... ok 244s test_none_key_and_exact_lookup (model_fields.test_jsonfield.TestQuerying.test_none_key_and_exact_lookup) ... ok 244s test_none_key_exclude (model_fields.test_jsonfield.TestQuerying.test_none_key_exclude) ... ok 244s test_obj_subquery_lookup (model_fields.test_jsonfield.TestQuerying.test_obj_subquery_lookup) ... ok 244s test_order_grouping_custom_decoder (model_fields.test_jsonfield.TestQuerying.test_order_grouping_custom_decoder) ... ok 244s test_ordering_by_transform (model_fields.test_jsonfield.TestQuerying.test_ordering_by_transform) ... ok 244s test_ordering_grouping_by_count (model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_count) ... ok 244s test_ordering_grouping_by_key_transform (model_fields.test_jsonfield.TestQuerying.test_ordering_grouping_by_key_transform) ... ok 244s test_shallow_list_lookup (model_fields.test_jsonfield.TestQuerying.test_shallow_list_lookup) ... ok 244s test_shallow_lookup_obj_target (model_fields.test_jsonfield.TestQuerying.test_shallow_lookup_obj_target) ... ok 244s test_shallow_obj_lookup (model_fields.test_jsonfield.TestQuerying.test_shallow_obj_lookup) ... ok 244s test_usage_in_subquery (model_fields.test_jsonfield.TestQuerying.test_usage_in_subquery) ... ok 244s test_basic_add_GET (generic_inline_admin.tests.GenericAdminViewTest.test_basic_add_GET) 244s A smoke test to ensure GET on the add_view works. ... ok 244s test_basic_add_POST (generic_inline_admin.tests.GenericAdminViewTest.test_basic_add_POST) 244s A smoke test to ensure POST on add_view works. ... ok 244s test_basic_edit_GET (generic_inline_admin.tests.GenericAdminViewTest.test_basic_edit_GET) 244s A smoke test to ensure GET on the change_view works. ... ok 244s test_basic_edit_POST (generic_inline_admin.tests.GenericAdminViewTest.test_basic_edit_POST) 244s A smoke test to ensure POST on edit_view works. ... ok 244s test_add (generic_inline_admin.tests.GenericInlineAdminWithUniqueTogetherTest.test_add) ... ok 244s test_delete (generic_inline_admin.tests.GenericInlineAdminWithUniqueTogetherTest.test_delete) ... ok 244s test_extra_param (generic_inline_admin.tests.GenericInlineAdminParametersTest.test_extra_param) 244s With extra=0, there should be one form. ... ok 244s test_get_extra (generic_inline_admin.tests.GenericInlineAdminParametersTest.test_get_extra) ... ok 244s test_get_max_num (generic_inline_admin.tests.GenericInlineAdminParametersTest.test_get_max_num) ... ok 244s test_get_min_num (generic_inline_admin.tests.GenericInlineAdminParametersTest.test_get_min_num) ... ok 244s test_max_num_param (generic_inline_admin.tests.GenericInlineAdminParametersTest.test_max_num_param) 244s With extra=5 and max_num=2, there should be only 2 forms. ... ok 244s test_min_num_param (generic_inline_admin.tests.GenericInlineAdminParametersTest.test_min_num_param) 244s With extra=3 and min_num=2, there should be five forms. ... ok 244s test_no_param (generic_inline_admin.tests.GenericInlineAdminParametersTest.test_no_param) 244s With one initial form, extra (default) at 3, there should be 4 forms. ... ok 244s test_inlineformset_factory_ignores_default_pks_on_submit (model_formsets.test_uuid.InlineFormsetTests.test_inlineformset_factory_ignores_default_pks_on_submit) 244s #24377 - Inlines with a model field default should ignore that default ... ok 244s test_inlineformset_factory_nulls_default_pks (model_formsets.test_uuid.InlineFormsetTests.test_inlineformset_factory_nulls_default_pks) 244s #24377 - If we're adding a new object, a parent's auto-generated pk ... ok 244s test_inlineformset_factory_nulls_default_pks_alternate_key_relation (model_formsets.test_uuid.InlineFormsetTests.test_inlineformset_factory_nulls_default_pks_alternate_key_relation) 244s #24958 - Variant of test_inlineformset_factory_nulls_default_pks for ... ok 244s test_inlineformset_factory_nulls_default_pks_auto_parent_uuid_child (model_formsets.test_uuid.InlineFormsetTests.test_inlineformset_factory_nulls_default_pks_auto_parent_uuid_child) 244s #24958 - Variant of test_inlineformset_factory_nulls_default_pks for ... ok 244s test_inlineformset_factory_nulls_default_pks_child_editable_pk (model_formsets.test_uuid.InlineFormsetTests.test_inlineformset_factory_nulls_default_pks_child_editable_pk) 244s #24958 - Variant of test_inlineformset_factory_nulls_default_pks for ... ok 244s test_inlineformset_factory_nulls_default_pks_uuid_parent_auto_child (model_formsets.test_uuid.InlineFormsetTests.test_inlineformset_factory_nulls_default_pks_uuid_parent_auto_child) 244s #24958 - Variant of test_inlineformset_factory_nulls_default_pks for ... ok 244s test_add_form_deletion_when_invalid (model_formsets.tests.DeletionTests.test_add_form_deletion_when_invalid) 244s Make sure that an add form that is filled out, but marked for deletion ... ok 244s test_change_form_deletion_when_invalid (model_formsets.tests.DeletionTests.test_change_form_deletion_when_invalid) 244s Make sure that a change form that is filled out, but marked for deletion ... ok 244s test_deletion (model_formsets.tests.DeletionTests.test_deletion) ... ok 244s test_outdated_deletion (model_formsets.tests.DeletionTests.test_outdated_deletion) ... ok 245s test_callable_defaults (model_formsets.tests.ModelFormsetTest.test_callable_defaults) ... ok 245s test_commit_false (model_formsets.tests.ModelFormsetTest.test_commit_false) ... ok 245s test_custom_form (model_formsets.tests.ModelFormsetTest.test_custom_form) 245s model_formset_factory() respects fields and exclude parameters of a ... ok 245s test_custom_pk (model_formsets.tests.ModelFormsetTest.test_custom_pk) ... ok 245s test_custom_queryset_init (model_formsets.tests.ModelFormsetTest.test_custom_queryset_init) 245s A queryset can be overridden in the formset's __init__() method. ... ok 245s test_custom_save_method (model_formsets.tests.ModelFormsetTest.test_custom_save_method) ... ok 245s test_edit_only (model_formsets.tests.ModelFormsetTest.test_edit_only) ... ok 245s test_edit_only_formset_factory_with_basemodelformset (model_formsets.tests.ModelFormsetTest.test_edit_only_formset_factory_with_basemodelformset) ... ok 245s test_edit_only_inlineformset_factory (model_formsets.tests.ModelFormsetTest.test_edit_only_inlineformset_factory) ... ok 245s test_edit_only_object_outside_of_queryset (model_formsets.tests.ModelFormsetTest.test_edit_only_object_outside_of_queryset) ... ok 245s test_foreign_keys_in_parents (model_formsets.tests.ModelFormsetTest.test_foreign_keys_in_parents) ... ok 245s test_initial_form_count_empty_data (model_formsets.tests.ModelFormsetTest.test_initial_form_count_empty_data) ... ok 245s test_inline_formsets (model_formsets.tests.ModelFormsetTest.test_inline_formsets) ... ok 245s test_inline_formsets_save_as_new (model_formsets.tests.ModelFormsetTest.test_inline_formsets_save_as_new) ... ok 245s test_inline_formsets_with_custom_pk (model_formsets.tests.ModelFormsetTest.test_inline_formsets_with_custom_pk) ... ok 245s test_inline_formsets_with_custom_save_method (model_formsets.tests.ModelFormsetTest.test_inline_formsets_with_custom_save_method) ... ok 245s test_inline_formsets_with_custom_save_method_related_instance (model_formsets.tests.ModelFormsetTest.test_inline_formsets_with_custom_save_method_related_instance) 245s The ModelForm.save() method should be able to access the related object ... ok 245s test_inline_formsets_with_multi_table_inheritance (model_formsets.tests.ModelFormsetTest.test_inline_formsets_with_multi_table_inheritance) ... ok 245s test_inline_formsets_with_nullable_unique_together (model_formsets.tests.ModelFormsetTest.test_inline_formsets_with_nullable_unique_together) ... ok 245s test_inline_formsets_with_wrong_fk_name (model_formsets.tests.ModelFormsetTest.test_inline_formsets_with_wrong_fk_name) 245s Regression for #23451 ... ok 245s test_inlineformset_factory_with_null_fk (model_formsets.tests.ModelFormsetTest.test_inlineformset_factory_with_null_fk) ... ok 245s test_inlineformset_with_arrayfield (model_formsets.tests.ModelFormsetTest.test_inlineformset_with_arrayfield) ... ok 245s test_max_num (model_formsets.tests.ModelFormsetTest.test_max_num) ... ok 245s test_min_num (model_formsets.tests.ModelFormsetTest.test_min_num) ... ok 245s test_min_num_with_existing (model_formsets.tests.ModelFormsetTest.test_min_num_with_existing) ... ok 245s test_model_formset_with_custom_pk (model_formsets.tests.ModelFormsetTest.test_model_formset_with_custom_pk) ... ok 245s test_model_formset_with_initial_model_instance (model_formsets.tests.ModelFormsetTest.test_model_formset_with_initial_model_instance) ... ok 245s test_model_formset_with_initial_queryset (model_formsets.tests.ModelFormsetTest.test_model_formset_with_initial_queryset) ... ok 245s test_model_inheritance (model_formsets.tests.ModelFormsetTest.test_model_inheritance) ... ok 245s test_modelformset_factory_without_fields (model_formsets.tests.ModelFormsetTest.test_modelformset_factory_without_fields) 245s Regression for #19733 ... ok 245s test_modelformset_min_num_equals_max_num_less_than (model_formsets.tests.ModelFormsetTest.test_modelformset_min_num_equals_max_num_less_than) ... ok 245s test_modelformset_min_num_equals_max_num_more_than (model_formsets.tests.ModelFormsetTest.test_modelformset_min_num_equals_max_num_more_than) ... ok 245s test_modelformset_validate_max_flag (model_formsets.tests.ModelFormsetTest.test_modelformset_validate_max_flag) ... ok 245s test_prevent_change_outer_model_and_create_invalid_data (model_formsets.tests.ModelFormsetTest.test_prevent_change_outer_model_and_create_invalid_data) ... ok 245s test_prevent_duplicates_from_with_the_same_formset (model_formsets.tests.ModelFormsetTest.test_prevent_duplicates_from_with_the_same_formset) ... ok 245s test_simple_save (model_formsets.tests.ModelFormsetTest.test_simple_save) ... ok 245s test_unique_together_validation (model_formsets.tests.ModelFormsetTest.test_unique_together_validation) ... ok 245s test_unique_together_with_inlineformset_factory (model_formsets.tests.ModelFormsetTest.test_unique_together_with_inlineformset_factory) ... ok 245s test_unique_true_enforces_max_num_one (model_formsets.tests.ModelFormsetTest.test_unique_true_enforces_max_num_one) ... ok 245s test_unique_validation (model_formsets.tests.ModelFormsetTest.test_unique_validation) ... ok 245s test_validation_with_child_model_without_id (model_formsets.tests.ModelFormsetTest.test_validation_with_child_model_without_id) ... ok 245s test_validation_with_invalid_id (model_formsets.tests.ModelFormsetTest.test_validation_with_invalid_id) ... ok 245s test_validation_with_nonexistent_id (model_formsets.tests.ModelFormsetTest.test_validation_with_nonexistent_id) ... ok 245s test_validation_without_id (model_formsets.tests.ModelFormsetTest.test_validation_without_id) ... ok 245s test_none_as_null (null_queries.tests.NullQueriesTests.test_none_as_null) 245s Regression test for the use of None as a query value. ... ok 245s test_reverse_relations (null_queries.tests.NullQueriesTests.test_reverse_relations) 245s Querying across reverse relations and then another relation should ... ok 245s test_unsaved (null_queries.tests.NullQueriesTests.test_unsaved) ... ok 245s test_inlineformset_factory_absolute_max (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_absolute_max) ... ok 245s test_inlineformset_factory_absolute_max_with_max_num (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_absolute_max_with_max_num) ... ok 245s test_inlineformset_factory_can_delete_extra (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_can_delete_extra) ... ok 245s test_inlineformset_factory_can_not_delete_extra (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_can_not_delete_extra) ... ok 245s test_inlineformset_factory_error_messages_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_error_messages_overrides) ... ok 245s test_inlineformset_factory_field_class_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_field_class_overrides) ... ok 245s test_inlineformset_factory_help_text_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_help_text_overrides) ... ok 245s test_inlineformset_factory_labels_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_labels_overrides) ... ok 245s test_inlineformset_factory_passes_renderer (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_passes_renderer) ... ok 245s test_inlineformset_factory_widgets (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_inlineformset_factory_widgets) ... ok 245s test_modelformset_factory_absolute_max (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_absolute_max) ... ok 245s test_modelformset_factory_absolute_max_with_max_num (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_absolute_max_with_max_num) ... ok 245s test_modelformset_factory_can_delete_extra (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_can_delete_extra) ... ok 245s test_modelformset_factory_disable_delete_extra (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_disable_delete_extra) ... ok 245s test_modelformset_factory_error_messages_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_error_messages_overrides) ... ok 245s test_modelformset_factory_field_class_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_field_class_overrides) ... ok 245s test_modelformset_factory_help_text_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_help_text_overrides) ... ok 245s test_modelformset_factory_labels_overrides (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_labels_overrides) ... ok 245s test_modelformset_factory_passes_renderer (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_passes_renderer) ... ok 245s test_modelformset_factory_widgets (model_formsets.tests.TestModelFormsetOverridesTroughFormMeta.test_modelformset_factory_widgets) ... ok 245s test_persistence (migration_test_data_persistence.tests.MigrationDataNormalPersistenceTestCase.test_persistence) ... ok 245s test_batch_size (queries.test_bulk_update.BulkUpdateNoteTests.test_batch_size) ... ok 245s test_foreign_keys_do_not_lookup (queries.test_bulk_update.BulkUpdateNoteTests.test_foreign_keys_do_not_lookup) ... ok 245s test_functions (queries.test_bulk_update.BulkUpdateNoteTests.test_functions) ... ok 245s test_multiple_fields (queries.test_bulk_update.BulkUpdateNoteTests.test_multiple_fields) ... ok 245s test_set_field_to_null (queries.test_bulk_update.BulkUpdateNoteTests.test_set_field_to_null) ... ok 245s test_set_mixed_fields_to_null (queries.test_bulk_update.BulkUpdateNoteTests.test_set_mixed_fields_to_null) ... ok 245s test_simple (queries.test_bulk_update.BulkUpdateNoteTests.test_simple) ... ok 245s test_unsaved_models (queries.test_bulk_update.BulkUpdateNoteTests.test_unsaved_models) ... ok 245s test_access_fks_with_select_related (select_related.tests.SelectRelatedTests.test_access_fks_with_select_related) 245s A select_related() call will fill in those related objects without any ... ok 245s test_access_fks_without_select_related (select_related.tests.SelectRelatedTests.test_access_fks_without_select_related) 245s Normally, accessing FKs doesn't fill in related objects ... ok 245s test_certain_fields (select_related.tests.SelectRelatedTests.test_certain_fields) 245s The optional fields passed to select_related() control which related ... ok 245s test_chaining (select_related.tests.SelectRelatedTests.test_chaining) ... ok 245s test_field_traversal (select_related.tests.SelectRelatedTests.test_field_traversal) ... ok 245s test_list_with_depth (select_related.tests.SelectRelatedTests.test_list_with_depth) 245s Passing a relationship field lookup specifier to select_related() will ... ok 245s test_list_with_select_related (select_related.tests.SelectRelatedTests.test_list_with_select_related) 245s select_related() applies to entire lists, not just items. ... ok 245s test_list_without_select_related (select_related.tests.SelectRelatedTests.test_list_without_select_related) ... ok 245s test_more_certain_fields (select_related.tests.SelectRelatedTests.test_more_certain_fields) 245s In this case, we explicitly say to select the 'genus' and ... ok 245s test_none_clears_list (select_related.tests.SelectRelatedTests.test_none_clears_list) ... ok 245s test_reverse_relation_caching (select_related.tests.SelectRelatedTests.test_reverse_relation_caching) ... ok 245s test_select_related_after_values (select_related.tests.SelectRelatedTests.test_select_related_after_values) 245s Running select_related() after calling values() raises a TypeError ... ok 245s test_select_related_after_values_list (select_related.tests.SelectRelatedTests.test_select_related_after_values_list) 245s Running select_related() after calling values_list() raises a TypeError ... ok 245s test_select_related_with_extra (select_related.tests.SelectRelatedTests.test_select_related_with_extra) ... ok 246s test_basic (queries.test_contains.ContainsTests.test_basic) ... ok 246s test_evaluated_queryset (queries.test_contains.ContainsTests.test_evaluated_queryset) ... ok 246s test_obj_type (queries.test_contains.ContainsTests.test_obj_type) ... ok 246s test_proxy_model (queries.test_contains.ContainsTests.test_proxy_model) ... ok 246s test_unsaved_obj (queries.test_contains.ContainsTests.test_unsaved_obj) ... ok 246s test_values (queries.test_contains.ContainsTests.test_values) ... ok 246s test_wrong_model (queries.test_contains.ContainsTests.test_wrong_model) ... ok 246s test_bulk_insert (queries.test_db_returning.ReturningValuesTests.test_bulk_insert) ... ok 246s test_insert_returning (queries.test_db_returning.ReturningValuesTests.test_insert_returning) ... ok 246s test_insert_returning_multiple (queries.test_db_returning.ReturningValuesTests.test_insert_returning_multiple) ... ok 246s test_insert_returning_non_integer (queries.test_db_returning.ReturningValuesTests.test_insert_returning_non_integer) ... ok 246s test_basic (queries.test_explain.ExplainTests.test_basic) ... ok 246s test_invalid_option_names (queries.test_explain.ExplainTests.test_invalid_option_names) ... ok 246s test_mysql_analyze (queries.test_explain.ExplainTests.test_mysql_analyze) ... skipped 'MariaDB and MySQL >= 8.0.18 specific.' 246s test_mysql_text_to_traditional (queries.test_explain.ExplainTests.test_mysql_text_to_traditional) ... skipped 'MySQL specific' 246s test_option_sql_injection (queries.test_explain.ExplainTests.test_option_sql_injection) ... ok 246s test_postgres_options (queries.test_explain.ExplainTests.test_postgres_options) ... skipped 'PostgreSQL specific' 246s test_unknown_format (queries.test_explain.ExplainTests.test_unknown_format) ... ok 246s test_unknown_options (queries.test_explain.ExplainTests.test_unknown_options) ... ok 246s test_message (queries.test_explain.ExplainUnsupportedTests.test_message) ... skipped 'Database has feature(s) supports_explaining_query_execution' 246s test_default_iterator_chunk_size (queries.test_iterator.QuerySetIteratorTests.test_default_iterator_chunk_size) ... ok 246s test_iterator_chunk_size (queries.test_iterator.QuerySetIteratorTests.test_iterator_chunk_size) ... ok 246s test_iterator_invalid_chunk_size (queries.test_iterator.QuerySetIteratorTests.test_iterator_invalid_chunk_size) ... ok 246s test_no_chunked_reads (queries.test_iterator.QuerySetIteratorTests.test_no_chunked_reads) 246s If the database backend doesn't support chunked reads, then the ... ok 246s test_basic (queries.test_q.QCheckTests.test_basic) ... ok 246s test_boolean_expression (queries.test_q.QCheckTests.test_boolean_expression) ... ok 246s test_expression (queries.test_q.QCheckTests.test_expression) ... ok 246s test_missing_field (queries.test_q.QCheckTests.test_missing_field) ... ok 246s test_rawsql (queries.test_q.QCheckTests.test_rawsql) 246s RawSQL expressions cause a database error because "price" cannot be ... ok 246s test_booleanfield (queries.test_bulk_update.BulkUpdateTests.test_booleanfield) ... ok 246s test_custom_db_columns (queries.test_bulk_update.BulkUpdateTests.test_custom_db_columns) ... ok 246s test_custom_pk (queries.test_bulk_update.BulkUpdateTests.test_custom_pk) ... ok 246s test_database_routing (queries.test_bulk_update.BulkUpdateTests.test_database_routing) ... ok 246s test_database_routing_batch_atomicity (queries.test_bulk_update.BulkUpdateTests.test_database_routing_batch_atomicity) ... ok 247s test_datetime_field (queries.test_bulk_update.BulkUpdateTests.test_datetime_field) ... ok 247s test_empty_objects (queries.test_bulk_update.BulkUpdateTests.test_empty_objects) ... ok 247s test_f_expression (queries.test_bulk_update.BulkUpdateTests.test_f_expression) ... ok 247s test_falsey_pk_value (queries.test_bulk_update.BulkUpdateTests.test_falsey_pk_value) ... ok 247s test_field_references (queries.test_bulk_update.BulkUpdateTests.test_field_references) ... ok 247s test_inherited_fields (queries.test_bulk_update.BulkUpdateTests.test_inherited_fields) ... ok 247s test_invalid_batch_size (queries.test_bulk_update.BulkUpdateTests.test_invalid_batch_size) ... ok 247s test_ipaddressfield (queries.test_bulk_update.BulkUpdateTests.test_ipaddressfield) ... ok 247s test_json_field (queries.test_bulk_update.BulkUpdateTests.test_json_field) ... ok 247s test_large_batch (queries.test_bulk_update.BulkUpdateTests.test_large_batch) ... ok 247s test_no_fields (queries.test_bulk_update.BulkUpdateTests.test_no_fields) ... ok 247s test_nonexistent_field (queries.test_bulk_update.BulkUpdateTests.test_nonexistent_field) ... ok 247s test_nullable_fk_after_related_save (queries.test_bulk_update.BulkUpdateTests.test_nullable_fk_after_related_save) ... ok 247s test_only_concrete_fields_allowed (queries.test_bulk_update.BulkUpdateTests.test_only_concrete_fields_allowed) ... ok 247s test_unsaved_parent (queries.test_bulk_update.BulkUpdateTests.test_unsaved_parent) ... ok 247s test_unspecified_unsaved_parent (queries.test_bulk_update.BulkUpdateTests.test_unspecified_unsaved_parent) ... ok 247s test_update_custom_primary_key (queries.test_bulk_update.BulkUpdateTests.test_update_custom_primary_key) ... ok 247s test_update_primary_key (queries.test_bulk_update.BulkUpdateTests.test_update_primary_key) ... ok 247s test_updated_rows_when_passing_duplicates (queries.test_bulk_update.BulkUpdateTests.test_updated_rows_when_passing_duplicates) ... ok 247s test_get_field_names_from_opts (queries.test_query.TestQueryNoModel.test_get_field_names_from_opts) ... ok 247s test_names_to_path_field (queries.test_query.TestQueryNoModel.test_names_to_path_field) ... ok 247s test_names_to_path_field_error (queries.test_query.TestQueryNoModel.test_names_to_path_field_error) ... ok 247s test_q_annotation (queries.test_query.TestQueryNoModel.test_q_annotation) ... ok 247s test_rawsql_annotation (queries.test_query.TestQueryNoModel.test_rawsql_annotation) ... ok 247s test_subquery_annotation (queries.test_query.TestQueryNoModel.test_subquery_annotation) ... ok 247s test_evaluated_queryset_as_argument (queries.tests.CloneTests.test_evaluated_queryset_as_argument) 247s If a queryset is already evaluated, it can still be used as a query arg. ... ok 247s test_no_fields_cloning (queries.tests.CloneTests.test_no_fields_cloning) 247s Cloning a queryset does not get out of hand. While complete ... ok 247s test_no_model_options_cloning (queries.tests.CloneTests.test_no_model_options_cloning) 247s Cloning a queryset does not get out of hand. While complete ... ok 247s test_ticket8597 (queries.tests.ComparisonTests.test_ticket8597) ... ok 247s test_in_list_limit (queries.tests.ConditionalTests.test_in_list_limit) ... ok 247s test_infinite_loop (queries.tests.ConditionalTests.test_infinite_loop) ... ok 247s test_null_ordering_added (queries.tests.ConditionalTests.test_null_ordering_added) ... skipped "Database doesn't support feature(s): requires_explicit_null_ordering_when_grouping" 247s test_ticket7371 (queries.tests.CustomPkTests.test_ticket7371) ... ok 247s test_no_extra_params (queries.tests.DefaultValuesInsertTest.test_no_extra_params) 247s Can create an instance of a model with only the PK field (#17056)." ... ok 247s test_disjunction_promotion1 (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion1) ... ok 247s test_disjunction_promotion2 (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion2) ... ok 247s test_disjunction_promotion3 (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion3) ... ok 247s test_disjunction_promotion3_demote (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion3_demote) ... ok 247s test_disjunction_promotion4 (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion4) ... ok 247s test_disjunction_promotion4_demote (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion4_demote) ... ok 247s test_disjunction_promotion5_demote (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion5_demote) ... ok 247s test_disjunction_promotion6 (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion6) ... ok 247s test_disjunction_promotion7 (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion7) ... ok 247s test_disjunction_promotion_fexpression (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion_fexpression) ... ok 247s test_disjunction_promotion_select_related (queries.tests.DisjunctionPromotionTests.test_disjunction_promotion_select_related) ... ok 247s test_ticket7872 (queries.tests.DisjunctiveFilterTests.test_ticket7872) ... ok 247s test_ticket8283 (queries.tests.DisjunctiveFilterTests.test_ticket8283) ... ok 247s test_double_subquery_in (queries.tests.DoubleInSubqueryTests.test_double_subquery_in) ... ok 248s test_21001 (queries.tests.EmptyStringsAsNullTest.test_21001) ... ok 248s test_direct_exclude (queries.tests.EmptyStringsAsNullTest.test_direct_exclude) ... ok 248s test_joined_exclude (queries.tests.EmptyStringsAsNullTest.test_joined_exclude) ... ok 248s test_ticket_7302 (queries.tests.EscapingTests.test_ticket_7302) ... ok 248s test_combining_multiple_models (queries.test_qs_combinators.QuerySetSetOperationTests.test_combining_multiple_models) ... ok 248s test_count_difference (queries.test_qs_combinators.QuerySetSetOperationTests.test_count_difference) ... ok 248s test_count_intersection (queries.test_qs_combinators.QuerySetSetOperationTests.test_count_intersection) ... ok 248s test_count_union (queries.test_qs_combinators.QuerySetSetOperationTests.test_count_union) ... ok 248s test_count_union_empty_result (queries.test_qs_combinators.QuerySetSetOperationTests.test_count_union_empty_result) ... ok 248s test_count_union_with_select_related (queries.test_qs_combinators.QuerySetSetOperationTests.test_count_union_with_select_related) ... ok 248s test_difference_with_empty_qs (queries.test_qs_combinators.QuerySetSetOperationTests.test_difference_with_empty_qs) ... ok 248s test_difference_with_values (queries.test_qs_combinators.QuerySetSetOperationTests.test_difference_with_values) ... ok 248s test_empty_qs_union_with_ordered_qs (queries.test_qs_combinators.QuerySetSetOperationTests.test_empty_qs_union_with_ordered_qs) ... ok 248s test_exists_difference (queries.test_qs_combinators.QuerySetSetOperationTests.test_exists_difference) ... ok 248s test_exists_intersection (queries.test_qs_combinators.QuerySetSetOperationTests.test_exists_intersection) ... ok 248s test_exists_union (queries.test_qs_combinators.QuerySetSetOperationTests.test_exists_union) ... ok 248s test_exists_union_empty_result (queries.test_qs_combinators.QuerySetSetOperationTests.test_exists_union_empty_result) ... ok 248s test_get_difference (queries.test_qs_combinators.QuerySetSetOperationTests.test_get_difference) ... ok 248s test_get_intersection (queries.test_qs_combinators.QuerySetSetOperationTests.test_get_intersection) ... ok 248s test_get_union (queries.test_qs_combinators.QuerySetSetOperationTests.test_get_union) ... ok 248s test_get_with_filters_unsupported_on_combined_qs (queries.test_qs_combinators.QuerySetSetOperationTests.test_get_with_filters_unsupported_on_combined_qs) ... ok 248s test_intersection_with_empty_qs (queries.test_qs_combinators.QuerySetSetOperationTests.test_intersection_with_empty_qs) ... ok 248s test_intersection_with_values (queries.test_qs_combinators.QuerySetSetOperationTests.test_intersection_with_values) ... ok 248s test_limits (queries.test_qs_combinators.QuerySetSetOperationTests.test_limits) ... ok 248s test_operator_on_combined_qs_error (queries.test_qs_combinators.QuerySetSetOperationTests.test_operator_on_combined_qs_error) ... ok 248s test_order_by_same_type (queries.test_qs_combinators.QuerySetSetOperationTests.test_order_by_same_type) ... ok 248s test_order_raises_on_non_selected_column (queries.test_qs_combinators.QuerySetSetOperationTests.test_order_raises_on_non_selected_column) ... ok 248s test_ordering (queries.test_qs_combinators.QuerySetSetOperationTests.test_ordering) ... ok 248s test_ordering_by_alias (queries.test_qs_combinators.QuerySetSetOperationTests.test_ordering_by_alias) ... ok 248s test_ordering_by_f_expression (queries.test_qs_combinators.QuerySetSetOperationTests.test_ordering_by_f_expression) ... ok 248s test_ordering_by_f_expression_and_alias (queries.test_qs_combinators.QuerySetSetOperationTests.test_ordering_by_f_expression_and_alias) ... ok 248s test_ordering_subqueries (queries.test_qs_combinators.QuerySetSetOperationTests.test_ordering_subqueries) ... skipped "Database doesn't support feature(s): supports_slicing_ordering_in_compound" 248s test_qs_with_subcompound_qs (queries.test_qs_combinators.QuerySetSetOperationTests.test_qs_with_subcompound_qs) ... ok 248s test_simple_difference (queries.test_qs_combinators.QuerySetSetOperationTests.test_simple_difference) ... ok 248s test_simple_intersection (queries.test_qs_combinators.QuerySetSetOperationTests.test_simple_intersection) ... ok 248s test_simple_union (queries.test_qs_combinators.QuerySetSetOperationTests.test_simple_union) ... ok 248s test_union_combined_slice_compound_empty (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_combined_slice_compound_empty) ... skipped "Database doesn't support feature(s): supports_slicing_ordering_in_compound" 248s test_union_distinct (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_distinct) ... ok 248s test_union_empty_filter_slice (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_empty_filter_slice) ... ok 248s test_union_in_subquery (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_in_subquery) ... ok 248s test_union_in_subquery_related_outerref (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_in_subquery_related_outerref) ... ok 248s test_union_in_with_ordering (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_in_with_ordering) ... skipped "Database doesn't support feature(s): supports_slicing_ordering_in_compound" 248s test_union_in_with_ordering_and_slice (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_in_with_ordering_and_slice) ... skipped "Database doesn't support feature(s): supports_slicing_ordering_in_compound, allow_sliced_subqueries_with_in" 248s test_union_multiple_models_with_values_list_and_order (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_multiple_models_with_values_list_and_order) ... ok 248s test_union_multiple_models_with_values_list_and_order_by_extra_select (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_multiple_models_with_values_list_and_order_by_extra_select) ... ok 248s test_union_none (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_none) ... ok 248s test_union_none_slice (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_none_slice) ... ok 248s test_union_order_with_null_first_last (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_order_with_null_first_last) ... ok 248s test_union_slice_compound_empty (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_slice_compound_empty) ... skipped "Database doesn't support feature(s): supports_slicing_ordering_in_compound" 248s test_union_slice_index (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_slice_index) ... ok 248s test_union_with_empty_qs (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_empty_qs) ... ok 248s test_union_with_extra_and_values_list (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_extra_and_values_list) ... ok 248s test_union_with_first (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_first) ... ok 248s test_union_with_select_related_and_first (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_select_related_and_first) ... skipped "Database doesn't support feature(s): supports_slicing_ordering_in_compound" 248s test_union_with_select_related_and_order (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_select_related_and_order) ... ok 248s test_union_with_two_annotated_values_list (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_two_annotated_values_list) ... ok 248s test_union_with_values (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_values) ... ok 248s test_union_with_values_list_and_order (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_values_list_and_order) ... ok 248s test_union_with_values_list_and_order_on_annotation (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_values_list_and_order_on_annotation) ... ok 248s test_union_with_values_list_on_annotated_and_unannotated (queries.test_qs_combinators.QuerySetSetOperationTests.test_union_with_values_list_on_annotated_and_unannotated) ... ok 248s test_unsupported_intersection_raises_db_error (queries.test_qs_combinators.QuerySetSetOperationTests.test_unsupported_intersection_raises_db_error) ... skipped 'Database has feature(s) supports_select_intersection' 248s test_unsupported_operations_on_combined_qs (queries.test_qs_combinators.QuerySetSetOperationTests.test_unsupported_operations_on_combined_qs) ... ok 248s test_unsupported_ordering_slicing_raises_db_error (queries.test_qs_combinators.QuerySetSetOperationTests.test_unsupported_ordering_slicing_raises_db_error) ... ok 248s test_ticket15786 (queries.tests.Exclude15786.test_ticket15786) ... ok 248s test_exclude_plain (queries.tests.ExcludeTest17600.test_exclude_plain) 248s This should exclude Orders which have some items with status 1 ... ok 248s test_exclude_plain_distinct (queries.tests.ExcludeTest17600.test_exclude_plain_distinct) 248s This should exclude Orders which have some items with status 1 ... ok 248s test_exclude_with_q_is_equal_to_plain_exclude (queries.tests.ExcludeTest17600.test_exclude_with_q_is_equal_to_plain_exclude) 248s Using exclude(condition) and exclude(Q(condition)) should ... ok 248s test_exclude_with_q_is_equal_to_plain_exclude_variation (queries.tests.ExcludeTest17600.test_exclude_with_q_is_equal_to_plain_exclude_variation) 248s Using exclude(condition) and exclude(Q(condition)) should ... ok 248s test_exclude_with_q_object_distinct (queries.tests.ExcludeTest17600.test_exclude_with_q_object_distinct) 248s This should exclude Orders which have some items with status 1 ... ok 248s test_exclude_with_q_object_no_distinct (queries.tests.ExcludeTest17600.test_exclude_with_q_object_no_distinct) 248s This should exclude Orders which have some items with status 1 ... ok 248s test_only_orders_with_all_items_having_status_1 (queries.tests.ExcludeTest17600.test_only_orders_with_all_items_having_status_1) 248s This should only return orders having ALL items set to status 1, or ... expected failure 248s test_exclude_multivalued_exists (queries.tests.ExcludeTests.test_exclude_multivalued_exists) ... ok 248s test_exclude_nullable_fields (queries.tests.ExcludeTests.test_exclude_nullable_fields) ... ok 248s test_exclude_reverse_fk_field_ref (queries.tests.ExcludeTests.test_exclude_reverse_fk_field_ref) ... ok 248s test_exclude_subquery (queries.tests.ExcludeTests.test_exclude_subquery) ... ok 248s test_exclude_unsaved_o2o_object (queries.tests.ExcludeTests.test_exclude_unsaved_o2o_object) ... ok 248s test_exclude_unsaved_object (queries.tests.ExcludeTests.test_exclude_unsaved_object) ... ok 248s test_exclude_with_circular_fk_relation (queries.tests.ExcludeTests.test_exclude_with_circular_fk_relation) ... ok 248s test_subquery_exclude_outerref (queries.tests.ExcludeTests.test_subquery_exclude_outerref) ... ok 248s test_ticket14511 (queries.tests.ExcludeTests.test_ticket14511) ... ok 248s test_to_field (queries.tests.ExcludeTests.test_to_field) ... ok 248s test_ticket_21787 (queries.tests.ForeignKeyToBaseExcludeTests.test_ticket_21787) ... ok 248s test_primary_key (queries.tests.IsNullTests.test_primary_key) ... ok 248s test_to_field (queries.tests.IsNullTests.test_to_field) ... ok 248s test_distinct_exists (queries.tests.ExistsSql.test_distinct_exists) ... ok 248s test_exists (queries.tests.ExistsSql.test_exists) ... ok 248s test_sliced_distinct_exists (queries.tests.ExistsSql.test_sliced_distinct_exists) ... ok 248s test_ticket_18414 (queries.tests.ExistsSql.test_ticket_18414) ... ok 248s test_ticket_18414_distinct_on (queries.tests.ExistsSql.test_ticket_18414_distinct_on) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 248s test_exclude_many_to_many (queries.tests.ManyToManyExcludeTest.test_exclude_many_to_many) ... ok 248s test_ticket_12823 (queries.tests.ManyToManyExcludeTest.test_ticket_12823) ... ok 248s test_fk_reuse (queries.tests.JoinReuseTest.test_fk_reuse) ... ok 248s test_fk_reuse_annotation (queries.tests.JoinReuseTest.test_fk_reuse_annotation) ... ok 248s test_fk_reuse_disjunction (queries.tests.JoinReuseTest.test_fk_reuse_disjunction) ... ok 248s test_fk_reuse_order_by (queries.tests.JoinReuseTest.test_fk_reuse_order_by) ... ok 248s test_fk_reuse_select_related (queries.tests.JoinReuseTest.test_fk_reuse_select_related) ... ok 248s test_inverted_q_across_relations (queries.tests.JoinReuseTest.test_inverted_q_across_relations) 248s When a trimmable join is specified in the query (here school__), the ... ok 248s test_revfk_noreuse (queries.tests.JoinReuseTest.test_revfk_noreuse) ... ok 248s test_revo2o_reuse (queries.tests.JoinReuseTest.test_revo2o_reuse) ... ok 248s test_col_not_in_list_containing_null (queries.tests.NullInExcludeTest.test_col_not_in_list_containing_null) 248s The following case is not handled properly because ... expected failure 248s test_double_exclude (queries.tests.NullInExcludeTest.test_double_exclude) ... ok 248s test_null_in_exclude_qs (queries.tests.NullInExcludeTest.test_null_in_exclude_qs) ... ok 248s test_join_already_in_query (queries.tests.NullableRelOrderingTests.test_join_already_in_query) ... ok 248s test_ticket10028 (queries.tests.NullableRelOrderingTests.test_ticket10028) ... ok 248s test_evaluated_proxy_count (queries.tests.ProxyQueryCleanupTest.test_evaluated_proxy_count) 248s Generating the query string doesn't alter the query's state ... ok 248s test_isnull_filter_promotion (queries.tests.NullJoinPromotionOrTest.test_isnull_filter_promotion) ... ok 248s test_null_join_demotion (queries.tests.NullJoinPromotionOrTest.test_null_join_demotion) ... ok 248s test_ticket_17886 (queries.tests.NullJoinPromotionOrTest.test_ticket_17886) ... ok 248s test_ticket_21366 (queries.tests.NullJoinPromotionOrTest.test_ticket_21366) ... ok 248s test_ticket_21748 (queries.tests.NullJoinPromotionOrTest.test_ticket_21748) ... ok 248s test_ticket_21748_complex_filter (queries.tests.NullJoinPromotionOrTest.test_ticket_21748_complex_filter) ... ok 248s test_ticket_21748_double_negated_and (queries.tests.NullJoinPromotionOrTest.test_ticket_21748_double_negated_and) ... ok 248s test_ticket_21748_double_negated_or (queries.tests.NullJoinPromotionOrTest.test_ticket_21748_double_negated_or) ... ok 249s test_ticket12239 (queries.tests.Queries2Tests.test_ticket12239) ... ok 249s test_ticket4289 (queries.tests.Queries2Tests.test_ticket4289) ... ok 249s test_ticket7759 (queries.tests.Queries2Tests.test_ticket7759) ... ok 249s test_datetimes_invalid_field (queries.tests.Queries3Tests.test_datetimes_invalid_field) ... ok 249s test_ticket22023 (queries.tests.Queries3Tests.test_ticket22023) ... ok 249s test_ticket7107 (queries.tests.Queries3Tests.test_ticket7107) ... ok 249s test_combine_join_reuse (queries.tests.Queries4Tests.test_combine_join_reuse) ... ok 249s test_combine_or_filter_reuse (queries.tests.Queries4Tests.test_combine_or_filter_reuse) ... ok 249s test_filter_reverse_non_integer_pk (queries.tests.Queries4Tests.test_filter_reverse_non_integer_pk) ... ok 249s test_join_reuse_order (queries.tests.Queries4Tests.test_join_reuse_order) ... ok 249s test_order_by_resetting (queries.tests.Queries4Tests.test_order_by_resetting) ... ok 249s test_order_by_reverse_fk (queries.tests.Queries4Tests.test_order_by_reverse_fk) ... ok 249s test_ticket10181 (queries.tests.Queries4Tests.test_ticket10181) ... ok 249s test_ticket11811 (queries.tests.Queries4Tests.test_ticket11811) ... ok 249s test_ticket14876 (queries.tests.Queries4Tests.test_ticket14876) ... ok 249s test_ticket15316_exclude_false (queries.tests.Queries4Tests.test_ticket15316_exclude_false) ... ok 249s test_ticket15316_exclude_true (queries.tests.Queries4Tests.test_ticket15316_exclude_true) ... ok 249s test_ticket15316_filter_false (queries.tests.Queries4Tests.test_ticket15316_filter_false) ... ok 249s test_ticket15316_filter_true (queries.tests.Queries4Tests.test_ticket15316_filter_true) ... ok 249s test_ticket15316_one2one_exclude_false (queries.tests.Queries4Tests.test_ticket15316_one2one_exclude_false) ... ok 249s test_ticket15316_one2one_exclude_true (queries.tests.Queries4Tests.test_ticket15316_one2one_exclude_true) ... ok 249s test_ticket15316_one2one_filter_false (queries.tests.Queries4Tests.test_ticket15316_one2one_filter_false) ... ok 249s test_ticket15316_one2one_filter_true (queries.tests.Queries4Tests.test_ticket15316_one2one_filter_true) ... ok 249s test_ticket24525 (queries.tests.Queries4Tests.test_ticket24525) ... ok 249s test_ticket7095 (queries.tests.Queries4Tests.test_ticket7095) ... ok 249s test_extra_select_alias_sql_injection (queries.tests.Queries5Tests.test_extra_select_alias_sql_injection) ... ok 249s test_extra_select_literal_percent_s (queries.tests.Queries5Tests.test_extra_select_literal_percent_s) ... ok 249s test_filter_unsaved_object (queries.tests.Queries5Tests.test_filter_unsaved_object) ... ok 249s test_ordering (queries.tests.Queries5Tests.test_ordering) ... ok 249s test_queryset_reuse (queries.tests.Queries5Tests.test_queryset_reuse) ... ok 249s test_ticket5261 (queries.tests.Queries5Tests.test_ticket5261) ... ok 249s test_ticket7045 (queries.tests.Queries5Tests.test_ticket7045) ... ok 249s test_ticket7256 (queries.tests.Queries5Tests.test_ticket7256) ... ok 249s test_ticket9848 (queries.tests.Queries5Tests.test_ticket9848) ... ok 250s test_col_alias_quoted (queries.tests.Queries6Tests.test_col_alias_quoted) ... ok 250s test_distinct_ordered_sliced_subquery_aggregation (queries.tests.Queries6Tests.test_distinct_ordered_sliced_subquery_aggregation) ... ok 250s test_multiple_columns_with_the_same_name_slice (queries.tests.Queries6Tests.test_multiple_columns_with_the_same_name_slice) ... ok 250s test_nested_queries_sql (queries.tests.Queries6Tests.test_nested_queries_sql) ... ok 250s test_parallel_iterators (queries.tests.Queries6Tests.test_parallel_iterators) ... ok 250s test_ticket3739 (queries.tests.Queries6Tests.test_ticket3739) ... ok 250s test_ticket_11320 (queries.tests.Queries6Tests.test_ticket_11320) ... ok 250s test_tickets_8921_9188 (queries.tests.Queries6Tests.test_tickets_8921_9188) ... ok 250s test_xor_subquery (queries.tests.Queries6Tests.test_xor_subquery) ... ok 250s test_conflicting_aliases_during_combine (queries.tests.QuerySetBitwiseOperationTests.test_conflicting_aliases_during_combine) ... ok 250s test_or_with_both_slice (queries.tests.QuerySetBitwiseOperationTests.test_or_with_both_slice) ... ok 250s test_or_with_both_slice_and_ordering (queries.tests.QuerySetBitwiseOperationTests.test_or_with_both_slice_and_ordering) ... ok 250s test_or_with_lhs_slice (queries.tests.QuerySetBitwiseOperationTests.test_or_with_lhs_slice) ... ok 250s test_or_with_rhs_slice (queries.tests.QuerySetBitwiseOperationTests.test_or_with_rhs_slice) ... ok 250s test_subquery_aliases (queries.tests.QuerySetBitwiseOperationTests.test_subquery_aliases) ... ok 250s test_xor_with_both_slice (queries.tests.QuerySetBitwiseOperationTests.test_xor_with_both_slice) ... ok 250s test_xor_with_both_slice_and_ordering (queries.tests.QuerySetBitwiseOperationTests.test_xor_with_both_slice_and_ordering) ... ok 250s test_xor_with_lhs_slice (queries.tests.QuerySetBitwiseOperationTests.test_xor_with_lhs_slice) ... ok 250s test_xor_with_rhs_slice (queries.tests.QuerySetBitwiseOperationTests.test_xor_with_rhs_slice) ... ok 250s test_can_combine_queries_using_and_and_or_operators (queries.tests.QuerySetSupportsPythonIdioms.test_can_combine_queries_using_and_and_or_operators) ... ok 250s test_can_get_items_using_index_and_slice_notation (queries.tests.QuerySetSupportsPythonIdioms.test_can_get_items_using_index_and_slice_notation) ... ok 250s test_can_get_number_of_items_in_queryset_using_standard_len (queries.tests.QuerySetSupportsPythonIdioms.test_can_get_number_of_items_in_queryset_using_standard_len) ... ok 250s test_invalid_index (queries.tests.QuerySetSupportsPythonIdioms.test_invalid_index) ... ok 250s test_slicing_can_slice_again_after_slicing (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_can_slice_again_after_slicing) ... ok 250s test_slicing_cannot_combine_queries_once_sliced (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_cannot_combine_queries_once_sliced) ... ok 250s test_slicing_cannot_filter_queryset_once_sliced (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_cannot_filter_queryset_once_sliced) ... ok 250s test_slicing_cannot_reorder_queryset_once_sliced (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_cannot_reorder_queryset_once_sliced) ... ok 250s test_slicing_negative_indexing_not_supported_for_range (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_negative_indexing_not_supported_for_range) 250s hint: inverting your ordering might do what you need ... ok 250s test_slicing_negative_indexing_not_supported_for_single_element (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_negative_indexing_not_supported_for_single_element) 250s hint: inverting your ordering might do what you need ... ok 250s test_slicing_with_steps_can_be_used (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_with_steps_can_be_used) ... ok 250s test_slicing_with_tests_is_not_lazy (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_with_tests_is_not_lazy) ... ok 250s test_slicing_without_step_is_lazy (queries.tests.QuerySetSupportsPythonIdioms.test_slicing_without_step_is_lazy) ... ok 250s test_ticket14729 (queries.tests.RawQueriesTests.test_ticket14729) ... ok 250s test_ticket_19964 (queries.tests.RelabelCloneTest.test_ticket_19964) ... ok 250s test_correct_lookup (queries.tests.RelatedLookupTypeTests.test_correct_lookup) 250s When passing proxy model objects, child objects, or parent objects, ... ok 250s test_values_queryset_lookup (queries.tests.RelatedLookupTypeTests.test_values_queryset_lookup) 250s ValueQuerySets are not checked for compatibility with the lookup field. ... ok 250s test_wrong_backward_lookup (queries.tests.RelatedLookupTypeTests.test_wrong_backward_lookup) 250s A ValueError is raised when the incorrect object type is passed to a ... ok 250s test_wrong_type_lookup (queries.tests.RelatedLookupTypeTests.test_wrong_type_lookup) 250s A ValueError is raised when the incorrect object type is passed to a ... ok 251s test_reverse_trimming (queries.tests.ReverseJoinTrimmingTest.test_reverse_trimming) ... ok 251s test_ticket_21879 (queries.tests.ReverseM2MCustomPkTests.test_ticket_21879) ... ok 251s test_tickets_3045_3288 (queries.tests.SelectRelatedTests.test_tickets_3045_3288) ... ok 251s test_ticket7778 (queries.tests.SubclassFKTests.test_ticket7778) ... ok 251s test_avoid_infinite_loop_on_too_many_subqueries (queries.tests.Queries1Tests.test_avoid_infinite_loop_on_too_many_subqueries) ... ok 251s test_common_mixed_case_foreign_keys (queries.tests.Queries1Tests.test_common_mixed_case_foreign_keys) 251s Valid query should be generated when fields fetched from joined tables ... ok 251s test_deferred_load_qs_pickling (queries.tests.Queries1Tests.test_deferred_load_qs_pickling) ... ok 251s test_double_exclude (queries.tests.Queries1Tests.test_double_exclude) ... ok 251s test_error_raised_on_filter_with_dictionary (queries.tests.Queries1Tests.test_error_raised_on_filter_with_dictionary) ... ok 251s test_exclude (queries.tests.Queries1Tests.test_exclude) ... ok 251s test_exclude_in (queries.tests.Queries1Tests.test_exclude_in) ... ok 251s test_excluded_intermediary_m2m_table_joined (queries.tests.Queries1Tests.test_excluded_intermediary_m2m_table_joined) ... ok 251s test_field_with_filterable (queries.tests.Queries1Tests.test_field_with_filterable) ... ok 251s test_filter_by_related_field_nested_transforms (queries.tests.Queries1Tests.test_filter_by_related_field_nested_transforms) ... ok 251s test_filter_by_related_field_transform (queries.tests.Queries1Tests.test_filter_by_related_field_transform) ... ok 251s test_get_clears_ordering (queries.tests.Queries1Tests.test_get_clears_ordering) 251s get() should clear ordering for optimization purposes. ... ok 251s test_heterogeneous_qs_combination (queries.tests.Queries1Tests.test_heterogeneous_qs_combination) ... ok 251s test_lookup_constraint_fielderror (queries.tests.Queries1Tests.test_lookup_constraint_fielderror) ... ok 251s test_negate_field (queries.tests.Queries1Tests.test_negate_field) ... ok 251s test_nested_exclude (queries.tests.Queries1Tests.test_nested_exclude) ... ok 251s test_order_by_join_unref (queries.tests.Queries1Tests.test_order_by_join_unref) 251s This test is related to the above one, testing that there aren't ... ok 251s test_order_by_rawsql (queries.tests.Queries1Tests.test_order_by_rawsql) ... ok 251s test_order_by_related_field_transform (queries.tests.Queries1Tests.test_order_by_related_field_transform) ... ok 251s test_order_by_tables (queries.tests.Queries1Tests.test_order_by_tables) ... ok 251s test_reasonable_number_of_subq_aliases (queries.tests.Queries1Tests.test_reasonable_number_of_subq_aliases) ... ok 251s test_subquery_condition (queries.tests.Queries1Tests.test_subquery_condition) ... ok 251s test_ticket10205 (queries.tests.Queries1Tests.test_ticket10205) ... ok 251s test_ticket10432 (queries.tests.Queries1Tests.test_ticket10432) ... ok 251s test_ticket1050 (queries.tests.Queries1Tests.test_ticket1050) ... ok 251s test_ticket10742 (queries.tests.Queries1Tests.test_ticket10742) ... ok 251s test_ticket17429 (queries.tests.Queries1Tests.test_ticket17429) 251s Meta.ordering=None works the same as Meta.ordering=[] ... ok 251s test_ticket1801 (queries.tests.Queries1Tests.test_ticket1801) ... ok 251s test_ticket19672 (queries.tests.Queries1Tests.test_ticket19672) ... ok 251s test_ticket2091 (queries.tests.Queries1Tests.test_ticket2091) ... ok 251s test_ticket2253 (queries.tests.Queries1Tests.test_ticket2253) ... ok 251s test_ticket2306 (queries.tests.Queries1Tests.test_ticket2306) ... ok 251s test_ticket2400 (queries.tests.Queries1Tests.test_ticket2400) ... ok 251s test_ticket2496 (queries.tests.Queries1Tests.test_ticket2496) ... ok 251s test_ticket3037 (queries.tests.Queries1Tests.test_ticket3037) ... ok 251s test_ticket3141 (queries.tests.Queries1Tests.test_ticket3141) ... ok 251s test_ticket4358 (queries.tests.Queries1Tests.test_ticket4358) ... ok 251s test_ticket4464 (queries.tests.Queries1Tests.test_ticket4464) ... ok 251s test_ticket4510 (queries.tests.Queries1Tests.test_ticket4510) ... ok 251s test_ticket6074 (queries.tests.Queries1Tests.test_ticket6074) ... ok 251s test_ticket6154 (queries.tests.Queries1Tests.test_ticket6154) ... ok 251s test_ticket6981 (queries.tests.Queries1Tests.test_ticket6981) ... ok 251s test_ticket7076 (queries.tests.Queries1Tests.test_ticket7076) ... ok 251s test_ticket7096 (queries.tests.Queries1Tests.test_ticket7096) ... ok 251s test_ticket7155 (queries.tests.Queries1Tests.test_ticket7155) ... ok 251s test_ticket7181 (queries.tests.Queries1Tests.test_ticket7181) ... ok 251s test_ticket7235 (queries.tests.Queries1Tests.test_ticket7235) ... ok 251s test_ticket7277 (queries.tests.Queries1Tests.test_ticket7277) ... ok 251s test_ticket7323 (queries.tests.Queries1Tests.test_ticket7323) ... ok 251s test_ticket7378 (queries.tests.Queries1Tests.test_ticket7378) ... ok 251s test_ticket7791 (queries.tests.Queries1Tests.test_ticket7791) ... ok 251s test_ticket7813 (queries.tests.Queries1Tests.test_ticket7813) ... ok 251s test_ticket8439 (queries.tests.Queries1Tests.test_ticket8439) ... ok 251s test_ticket9926 (queries.tests.Queries1Tests.test_ticket9926) ... ok 251s test_ticket9985 (queries.tests.Queries1Tests.test_ticket9985) ... ok 251s test_ticket9997 (queries.tests.Queries1Tests.test_ticket9997) ... ok 251s test_ticket_10790_1 (queries.tests.Queries1Tests.test_ticket_10790_1) ... ok 251s test_ticket_10790_2 (queries.tests.Queries1Tests.test_ticket_10790_2) ... ok 251s test_ticket_10790_3 (queries.tests.Queries1Tests.test_ticket_10790_3) ... ok 251s test_ticket_10790_4 (queries.tests.Queries1Tests.test_ticket_10790_4) ... ok 251s test_ticket_10790_5 (queries.tests.Queries1Tests.test_ticket_10790_5) ... ok 251s test_ticket_10790_6 (queries.tests.Queries1Tests.test_ticket_10790_6) ... ok 251s test_ticket_10790_7 (queries.tests.Queries1Tests.test_ticket_10790_7) ... ok 251s test_ticket_10790_8 (queries.tests.Queries1Tests.test_ticket_10790_8) ... ok 251s test_ticket_10790_combine (queries.tests.Queries1Tests.test_ticket_10790_combine) ... ok 251s test_ticket_20250 (queries.tests.Queries1Tests.test_ticket_20250) ... ok 251s test_tickets_1878_2939 (queries.tests.Queries1Tests.test_tickets_1878_2939) ... ok 251s test_tickets_2076_7256 (queries.tests.Queries1Tests.test_tickets_2076_7256) ... ok 251s test_tickets_2080_3592 (queries.tests.Queries1Tests.test_tickets_2080_3592) ... ok 251s test_tickets_2874_3002 (queries.tests.Queries1Tests.test_tickets_2874_3002) ... ok 251s test_tickets_4088_4306 (queries.tests.Queries1Tests.test_tickets_4088_4306) ... ok 251s test_tickets_5321_7070 (queries.tests.Queries1Tests.test_tickets_5321_7070) ... ok 251s test_tickets_5324_6704 (queries.tests.Queries1Tests.test_tickets_5324_6704) ... ok 251s test_tickets_6180_6203 (queries.tests.Queries1Tests.test_tickets_6180_6203) ... ok 251s test_tickets_7087_12242 (queries.tests.Queries1Tests.test_tickets_7087_12242) ... ok 251s test_tickets_7204_7506 (queries.tests.Queries1Tests.test_tickets_7204_7506) ... ok 251s test_tickets_7448_7707 (queries.tests.Queries1Tests.test_tickets_7448_7707) ... ok 251s test_ticket_24278 (queries.tests.TestTicket24279.test_ticket_24278) ... ok 251s test_ticket_24605 (queries.tests.TestTicket24605.test_ticket_24605) 251s Subquery table names should be quoted. ... ok 251s test_distinct_ordered_sliced_subquery (queries.tests.SubqueryTests.test_distinct_ordered_sliced_subquery) ... ok 251s test_ordered_subselect (queries.tests.SubqueryTests.test_ordered_subselect) 251s Subselects honor any manual ordering ... ok 251s test_related_sliced_subquery (queries.tests.SubqueryTests.test_related_sliced_subquery) 251s Related objects constraints can safely contain sliced subqueries. ... ok 251s test_slice_subquery_and_query (queries.tests.SubqueryTests.test_slice_subquery_and_query) 251s Slice a query that has a sliced subquery ... ok 251s test_sliced_delete (queries.tests.SubqueryTests.test_sliced_delete) 251s Delete queries can safely contain sliced subqueries ... ok 251s test_ticket_12807 (queries.tests.Ticket12807Tests.test_ticket_12807) ... ok 251s test_ticket_14056 (queries.tests.Ticket14056Tests.test_ticket_14056) ... ok 251s test_ticket_20101 (queries.tests.Ticket20101Tests.test_ticket_20101) 251s Tests QuerySet ORed combining in exclude subquery case. ... ok 251s test_ticket_20788 (queries.tests.Ticket20788Tests.test_ticket_20788) ... ok 251s test_ticket_21203 (queries.tests.Ticket21203Tests.test_ticket_21203) ... ok 251s test_ticket_20955 (queries.tests.Ticket20955Tests.test_ticket_20955) ... ok 251s test_ticket_22429 (queries.tests.Ticket22429Tests.test_ticket_22429) ... ok 251s test_ticket_23605 (queries.tests.Ticket23605Tests.test_ticket_23605) ... ok 251s test_ticket_23622 (queries.tests.Ticket23622Tests.test_ticket_23622) 251s Make sure __pk__in and __in work the same for related fields when ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 251s test_non_nullable_fk_not_promoted (queries.tests.ValuesJoinPromotionTests.test_non_nullable_fk_not_promoted) ... ok 251s test_ticket_21376 (queries.tests.ValuesJoinPromotionTests.test_ticket_21376) ... ok 251s test_values_no_promotion_for_existing (queries.tests.ValuesJoinPromotionTests.test_values_no_promotion_for_existing) ... ok 251s test_in_query (queries.tests.ToFieldTests.test_in_query) ... ok 251s test_in_subquery (queries.tests.ToFieldTests.test_in_subquery) ... ok 251s test_nested_in_subquery (queries.tests.ToFieldTests.test_nested_in_subquery) ... ok 251s test_recursive_fk (queries.tests.ToFieldTests.test_recursive_fk) ... ok 251s test_recursive_fk_reverse (queries.tests.ToFieldTests.test_recursive_fk_reverse) ... ok 251s test_reverse_in (queries.tests.ToFieldTests.test_reverse_in) ... ok 251s test_single_object (queries.tests.ToFieldTests.test_single_object) ... ok 251s test_single_object_reverse (queries.tests.ToFieldTests.test_single_object_reverse) ... ok 251s test_values_in_subquery (queries.tests.ValuesSubqueryTests.test_values_in_subquery) ... ok 251s test_empty_resultset_sql (queries.tests.WeirdQuerysetSlicingTests.test_empty_resultset_sql) ... ok 251s test_empty_sliced_subquery (queries.tests.WeirdQuerysetSlicingTests.test_empty_sliced_subquery) ... ok 251s test_empty_sliced_subquery_exclude (queries.tests.WeirdQuerysetSlicingTests.test_empty_sliced_subquery_exclude) ... ok 251s test_tickets_7698_10202 (queries.tests.WeirdQuerysetSlicingTests.test_tickets_7698_10202) ... ok 251s test_zero_length_values_slicing (queries.tests.WeirdQuerysetSlicingTests.test_zero_length_values_slicing) ... ok 252s test_extra_multiple_select_params_values_order_by (queries.tests.ValuesQuerysetTests.test_extra_multiple_select_params_values_order_by) ... ok 252s test_extra_select_params_values_order_in_extra (queries.tests.ValuesQuerysetTests.test_extra_select_params_values_order_in_extra) ... ok 252s test_extra_values (queries.tests.ValuesQuerysetTests.test_extra_values) ... ok 252s test_extra_values_list (queries.tests.ValuesQuerysetTests.test_extra_values_list) ... ok 252s test_extra_values_order_in_extra (queries.tests.ValuesQuerysetTests.test_extra_values_order_in_extra) ... ok 252s test_extra_values_order_multiple (queries.tests.ValuesQuerysetTests.test_extra_values_order_multiple) ... ok 252s test_extra_values_order_twice (queries.tests.ValuesQuerysetTests.test_extra_values_order_twice) ... ok 252s test_field_error_values_list (queries.tests.ValuesQuerysetTests.test_field_error_values_list) ... ok 252s test_flat_extra_values_list (queries.tests.ValuesQuerysetTests.test_flat_extra_values_list) ... ok 252s test_flat_values_list (queries.tests.ValuesQuerysetTests.test_flat_values_list) ... ok 252s test_named_values_list_bad_field_name (queries.tests.ValuesQuerysetTests.test_named_values_list_bad_field_name) ... ok 252s test_named_values_list_expression (queries.tests.ValuesQuerysetTests.test_named_values_list_expression) ... ok 252s test_named_values_list_expression_with_default_alias (queries.tests.ValuesQuerysetTests.test_named_values_list_expression_with_default_alias) ... ok 252s test_named_values_list_flat (queries.tests.ValuesQuerysetTests.test_named_values_list_flat) ... ok 252s test_named_values_list_with_fields (queries.tests.ValuesQuerysetTests.test_named_values_list_with_fields) ... ok 252s test_named_values_list_without_fields (queries.tests.ValuesQuerysetTests.test_named_values_list_without_fields) ... ok 252s test_named_values_pickle (queries.tests.ValuesQuerysetTests.test_named_values_pickle) ... ok 252s test_absolute_max (generic_relations.test_forms.GenericInlineFormsetTests.test_absolute_max) ... ok 252s test_absolute_max_with_max_num (generic_relations.test_forms.GenericInlineFormsetTests.test_absolute_max_with_max_num) ... ok 252s test_can_delete_extra (generic_relations.test_forms.GenericInlineFormsetTests.test_can_delete_extra) ... ok 252s test_disable_delete_extra (generic_relations.test_forms.GenericInlineFormsetTests.test_disable_delete_extra) ... ok 252s test_get_queryset_ordering (generic_relations.test_forms.GenericInlineFormsetTests.test_get_queryset_ordering) 252s BaseGenericInlineFormSet.get_queryset() adds default ordering, if ... ok 252s test_incorrect_content_type (generic_relations.test_forms.GenericInlineFormsetTests.test_incorrect_content_type) ... ok 252s test_initial (generic_relations.test_forms.GenericInlineFormsetTests.test_initial) ... ok 252s test_initial_count (generic_relations.test_forms.GenericInlineFormsetTests.test_initial_count) ... ok 252s test_meta_widgets (generic_relations.test_forms.GenericInlineFormsetTests.test_meta_widgets) 252s TaggedItemForm has a widget defined in Meta. ... ok 252s test_options (generic_relations.test_forms.GenericInlineFormsetTests.test_options) ... ok 252s test_output (generic_relations.test_forms.GenericInlineFormsetTests.test_output) ... ok 252s test_save_as_new (generic_relations.test_forms.GenericInlineFormsetTests.test_save_as_new) 252s The save_as_new parameter creates new items that are associated with ... ok 252s test_save_new_for_concrete (generic_relations.test_forms.GenericInlineFormsetTests.test_save_new_for_concrete) ... ok 252s test_save_new_for_proxy (generic_relations.test_forms.GenericInlineFormsetTests.test_save_new_for_proxy) ... ok 252s test_save_new_uses_form_save (generic_relations.test_forms.GenericInlineFormsetTests.test_save_new_uses_form_save) ... ok 252s test_default_behavior (generic_relations.tests.ProxyRelatedModelTest.test_default_behavior) 252s The default for for_concrete_model should be True ... ok 252s test_generic_relation (generic_relations.tests.ProxyRelatedModelTest.test_generic_relation) ... ok 252s test_generic_relation_set (generic_relations.tests.ProxyRelatedModelTest.test_generic_relation_set) ... ok 252s test_proxy_is_returned (generic_relations.tests.ProxyRelatedModelTest.test_proxy_is_returned) 252s Instances of the proxy should be returned when ... ok 252s test_query (generic_relations.tests.ProxyRelatedModelTest.test_query) ... ok 252s test_query_proxy (generic_relations.tests.ProxyRelatedModelTest.test_query_proxy) ... ok 252s test_works_normally (generic_relations.tests.ProxyRelatedModelTest.test_works_normally) 252s When for_concrete_model is False, we should still be able to get ... ok 252s test_multiple (m2m_multiple.tests.M2MMultipleTests.test_multiple) ... ok 252s test_unique (model_inheritance.tests.InheritanceUniqueTests.test_unique) ... ok 252s test_unique_together (model_inheritance.tests.InheritanceUniqueTests.test_unique_together) ... ok 253s test_exclude_inherited_on_null (model_inheritance.tests.ModelInheritanceDataTests.test_exclude_inherited_on_null) ... ok 253s test_filter_inherited_model (model_inheritance.tests.ModelInheritanceDataTests.test_filter_inherited_model) ... ok 253s test_filter_inherited_on_null (model_inheritance.tests.ModelInheritanceDataTests.test_filter_inherited_on_null) ... ok 253s test_filter_on_parent_returns_object_of_parent_type (model_inheritance.tests.ModelInheritanceDataTests.test_filter_on_parent_returns_object_of_parent_type) ... ok 253s test_inherited_does_not_exist_exception (model_inheritance.tests.ModelInheritanceDataTests.test_inherited_does_not_exist_exception) ... ok 253s test_inherited_multiple_objects_returned_exception (model_inheritance.tests.ModelInheritanceDataTests.test_inherited_multiple_objects_returned_exception) ... ok 253s test_parent_cache_reuse (model_inheritance.tests.ModelInheritanceDataTests.test_parent_cache_reuse) ... ok 253s test_parent_child_one_to_one_link (model_inheritance.tests.ModelInheritanceDataTests.test_parent_child_one_to_one_link) ... ok 253s test_parent_child_one_to_one_link_on_nonrelated_objects (model_inheritance.tests.ModelInheritanceDataTests.test_parent_child_one_to_one_link_on_nonrelated_objects) ... ok 253s test_parent_fields_available_for_filtering_in_child_model (model_inheritance.tests.ModelInheritanceDataTests.test_parent_fields_available_for_filtering_in_child_model) ... ok 253s test_related_objects_for_inherited_models (model_inheritance.tests.ModelInheritanceDataTests.test_related_objects_for_inherited_models) ... ok 253s test_select_related_defer (model_inheritance.tests.ModelInheritanceDataTests.test_select_related_defer) 253s #23370 - Should be able to defer child fields when using ... ok 253s test_select_related_works_on_parent_model_fields (model_inheritance.tests.ModelInheritanceDataTests.test_select_related_works_on_parent_model_fields) ... ok 253s test_update_inherited_model (model_inheritance.tests.ModelInheritanceDataTests.test_update_inherited_model) ... ok 253s test_update_query_counts (model_inheritance.tests.ModelInheritanceDataTests.test_update_query_counts) 253s Update queries do not generate unnecessary queries (#18304). ... ok 253s test_update_works_on_parent_and_child_models_at_once (model_inheritance.tests.ModelInheritanceDataTests.test_update_works_on_parent_and_child_models_at_once) ... ok 253s test_values_works_on_parent_model_fields (model_inheritance.tests.ModelInheritanceDataTests.test_values_works_on_parent_model_fields) ... ok 253s test_aadd (generic_relations.tests.GenericRelationsTests.test_aadd) ... ok 253s test_access_content_object (generic_relations.tests.GenericRelationsTests.test_access_content_object) 253s Test accessing the content object like a foreign key. ... ok 253s test_access_via_content_type (generic_relations.tests.GenericRelationsTests.test_access_via_content_type) 253s Test lookups through content type. ... ok 253s test_aclear (generic_relations.tests.GenericRelationsTests.test_aclear) ... ok 253s test_add_after_prefetch (generic_relations.tests.GenericRelationsTests.test_add_after_prefetch) ... ok 253s test_add_bulk (generic_relations.tests.GenericRelationsTests.test_add_bulk) ... ok 253s test_add_bulk_false (generic_relations.tests.GenericRelationsTests.test_add_bulk_false) ... ok 253s test_add_rejects_unsaved_objects (generic_relations.tests.GenericRelationsTests.test_add_rejects_unsaved_objects) ... ok 253s test_add_rejects_wrong_instances (generic_relations.tests.GenericRelationsTests.test_add_rejects_wrong_instances) ... ok 253s test_add_then_remove_after_prefetch (generic_relations.tests.GenericRelationsTests.test_add_then_remove_after_prefetch) ... ok 253s test_aremove (generic_relations.tests.GenericRelationsTests.test_aremove) ... ok 253s test_aset (generic_relations.tests.GenericRelationsTests.test_aset) ... ok 253s test_assign (generic_relations.tests.GenericRelationsTests.test_assign) ... ok 253s test_assign_content_object_in_init (generic_relations.tests.GenericRelationsTests.test_assign_content_object_in_init) ... ok 253s test_assign_with_queryset (generic_relations.tests.GenericRelationsTests.test_assign_with_queryset) ... ok 253s test_cache_invalidation_for_content_type_id (generic_relations.tests.GenericRelationsTests.test_cache_invalidation_for_content_type_id) ... ok 253s test_cache_invalidation_for_object_id (generic_relations.tests.GenericRelationsTests.test_cache_invalidation_for_object_id) ... ok 253s test_clear (generic_relations.tests.GenericRelationsTests.test_clear) ... ok 253s test_clear_after_prefetch (generic_relations.tests.GenericRelationsTests.test_clear_after_prefetch) ... ok 253s test_create_after_prefetch (generic_relations.tests.GenericRelationsTests.test_create_after_prefetch) ... ok 253s test_exclude_generic_relations (generic_relations.tests.GenericRelationsTests.test_exclude_generic_relations) 253s Test lookups over an object without GenericRelations. ... ok 253s test_generic_async_acreate (generic_relations.tests.GenericRelationsTests.test_generic_async_acreate) ... ok 253s test_generic_async_aget_or_create (generic_relations.tests.GenericRelationsTests.test_generic_async_aget_or_create) ... ok 253s test_generic_async_aupdate_or_create (generic_relations.tests.GenericRelationsTests.test_generic_async_aupdate_or_create) ... ok 253s test_generic_get_or_create_when_created (generic_relations.tests.GenericRelationsTests.test_generic_get_or_create_when_created) 253s Should be able to use get_or_create from the generic related manager ... ok 253s test_generic_get_or_create_when_exists (generic_relations.tests.GenericRelationsTests.test_generic_get_or_create_when_exists) 253s Should be able to use get_or_create from the generic related manager ... ok 253s test_generic_relation_related_name_default (generic_relations.tests.GenericRelationsTests.test_generic_relation_related_name_default) ... ok 253s test_generic_relation_to_inherited_child (generic_relations.tests.GenericRelationsTests.test_generic_relation_to_inherited_child) ... ok 253s test_generic_relations_m2m_mimic (generic_relations.tests.GenericRelationsTests.test_generic_relations_m2m_mimic) 253s Objects with declared GenericRelations can be tagged directly -- the ... ok 253s test_generic_update_or_create_when_created (generic_relations.tests.GenericRelationsTests.test_generic_update_or_create_when_created) 253s Should be able to use update_or_create from the generic related manager ... ok 253s test_generic_update_or_create_when_updated (generic_relations.tests.GenericRelationsTests.test_generic_update_or_create_when_updated) 253s Should be able to use update_or_create from the generic related manager ... ok 253s test_get_or_create (generic_relations.tests.GenericRelationsTests.test_get_or_create) ... ok 253s test_gfk_manager (generic_relations.tests.GenericRelationsTests.test_gfk_manager) ... ok 253s test_gfk_subclasses (generic_relations.tests.GenericRelationsTests.test_gfk_subclasses) ... ok 253s test_multiple_gfk (generic_relations.tests.GenericRelationsTests.test_multiple_gfk) ... ok 253s test_object_deletion_with_generic_relation (generic_relations.tests.GenericRelationsTests.test_object_deletion_with_generic_relation) 253s If you delete an object with an explicit Generic relation, the related ... ok 253s test_object_deletion_without_generic_relation (generic_relations.tests.GenericRelationsTests.test_object_deletion_without_generic_relation) 253s If Generic Relation is not explicitly defined, any related objects ... ok 253s test_prefetch_related_custom_object_id (generic_relations.tests.GenericRelationsTests.test_prefetch_related_custom_object_id) ... ok 253s test_prefetch_related_different_content_types (generic_relations.tests.GenericRelationsTests.test_prefetch_related_different_content_types) ... ok 253s test_queries_across_generic_relations (generic_relations.tests.GenericRelationsTests.test_queries_across_generic_relations) 253s Queries across generic relations respect the content types. Even though ... ok 253s test_queries_content_type_restriction (generic_relations.tests.GenericRelationsTests.test_queries_content_type_restriction) 253s Create another fatty tagged instance with different PK to ensure there ... ok 253s test_query_content_object (generic_relations.tests.GenericRelationsTests.test_query_content_object) ... ok 253s test_query_content_type (generic_relations.tests.GenericRelationsTests.test_query_content_type) ... ok 253s test_remove (generic_relations.tests.GenericRelationsTests.test_remove) ... ok 253s test_remove_after_prefetch (generic_relations.tests.GenericRelationsTests.test_remove_after_prefetch) ... ok 253s test_set (generic_relations.tests.GenericRelationsTests.test_set) ... ok 253s test_set_after_prefetch (generic_relations.tests.GenericRelationsTests.test_set_after_prefetch) ... ok 253s test_set_foreign_key (generic_relations.tests.GenericRelationsTests.test_set_foreign_key) 253s You can set a generic foreign key in the way you'd expect. ... ok 253s test_subclasses_with_gen_rel (generic_relations.tests.GenericRelationsTests.test_subclasses_with_gen_rel) 253s Concrete model subclasses with generic relations work ... ok 253s test_subclasses_with_parent_gen_rel (generic_relations.tests.GenericRelationsTests.test_subclasses_with_parent_gen_rel) 253s Generic relations on a base class (Vegetable) work correctly in ... ok 253s test_tag_deletion_related_objects_unaffected (generic_relations.tests.GenericRelationsTests.test_tag_deletion_related_objects_unaffected) 253s If you delete a tag, the objects using the tag are unaffected (other ... ok 253s test_unsaved_generic_foreign_key_parent_bulk_create (generic_relations.tests.GenericRelationsTests.test_unsaved_generic_foreign_key_parent_bulk_create) ... ok 253s test_unsaved_generic_foreign_key_parent_save (generic_relations.tests.GenericRelationsTests.test_unsaved_generic_foreign_key_parent_save) ... ok 253s test_update_or_create_defaults (generic_relations.tests.GenericRelationsTests.test_update_or_create_defaults) ... ok 253s test_autofields_generate_different_values_for_each_instance (basic.tests.ModelInstanceCreationTests.test_autofields_generate_different_values_for_each_instance) ... ok 253s test_can_create_instance_using_kwargs (basic.tests.ModelInstanceCreationTests.test_can_create_instance_using_kwargs) ... ok 253s test_can_initialize_model_instance_using_positional_arguments (basic.tests.ModelInstanceCreationTests.test_can_initialize_model_instance_using_positional_arguments) 253s You can initialize a model instance using positional arguments, ... ok 253s test_can_leave_off_value_for_autofield_and_it_gets_value_on_save (basic.tests.ModelInstanceCreationTests.test_can_leave_off_value_for_autofield_and_it_gets_value_on_save) 253s You can leave off the value for an AutoField when creating an ... ok 253s test_can_mix_and_match_position_and_kwargs (basic.tests.ModelInstanceCreationTests.test_can_mix_and_match_position_and_kwargs) ... ok 253s test_cannot_create_instance_with_invalid_kwargs (basic.tests.ModelInstanceCreationTests.test_cannot_create_instance_with_invalid_kwargs) ... ok 253s test_for_datetimefields_saves_as_much_precision_as_was_given (basic.tests.ModelInstanceCreationTests.test_for_datetimefields_saves_as_much_precision_as_was_given) 253s as much precision in *seconds* ... ok 253s test_leaving_off_a_field_with_default_set_the_default_will_be_saved (basic.tests.ModelInstanceCreationTests.test_leaving_off_a_field_with_default_set_the_default_will_be_saved) ... ok 253s test_object_is_not_written_to_database_until_save_was_called (basic.tests.ModelInstanceCreationTests.test_object_is_not_written_to_database_until_save_was_called) ... ok 253s test_positional_and_keyword_args_for_the_same_field (basic.tests.ModelInstanceCreationTests.test_positional_and_keyword_args_for_the_same_field) ... ok 253s test_querysets_checking_for_membership (basic.tests.ModelInstanceCreationTests.test_querysets_checking_for_membership) ... ok 253s test_save_parent_primary_with_default (basic.tests.ModelInstanceCreationTests.test_save_parent_primary_with_default) ... ok 253s test_save_primary_with_default (basic.tests.ModelInstanceCreationTests.test_save_primary_with_default) ... ok 253s test_saving_an_object_again_does_not_create_a_new_object (basic.tests.ModelInstanceCreationTests.test_saving_an_object_again_does_not_create_a_new_object) ... ok 253s test_abstract (model_inheritance.tests.ModelInheritanceTests.test_abstract) ... ok 253s test_abstract_parent_link (model_inheritance.tests.ModelInheritanceTests.test_abstract_parent_link) ... ok 253s test_create_child_no_update (model_inheritance.tests.ModelInheritanceTests.test_create_child_no_update) 253s Creating a child with non-abstract parents only issues INSERTs. ... ok 253s test_create_copy_with_inherited_m2m (model_inheritance.tests.ModelInheritanceTests.test_create_copy_with_inherited_m2m) ... ok 253s test_custompk_m2m (model_inheritance.tests.ModelInheritanceTests.test_custompk_m2m) ... ok 253s test_eq (model_inheritance.tests.ModelInheritanceTests.test_eq) ... ok 253s test_inherited_ordering_pk_desc (model_inheritance.tests.ModelInheritanceTests.test_inherited_ordering_pk_desc) ... ok 253s test_init_subclass (model_inheritance.tests.ModelInheritanceTests.test_init_subclass) ... ok 253s test_meta_fields_and_ordering (model_inheritance.tests.ModelInheritanceTests.test_meta_fields_and_ordering) ... ok 253s test_mixin_init (model_inheritance.tests.ModelInheritanceTests.test_mixin_init) ... ok 253s test_model_with_distinct_accessors (model_inheritance.tests.ModelInheritanceTests.test_model_with_distinct_accessors) ... ok 253s test_model_with_distinct_related_query_name (model_inheritance.tests.ModelInheritanceTests.test_model_with_distinct_related_query_name) ... ok 253s test_queryset_class_getitem (model_inheritance.tests.ModelInheritanceTests.test_queryset_class_getitem) ... ok 253s test_reverse_relation_for_different_hierarchy_tree (model_inheritance.tests.ModelInheritanceTests.test_reverse_relation_for_different_hierarchy_tree) ... ok 253s test_set_name (model_inheritance.tests.ModelInheritanceTests.test_set_name) ... ok 253s test_shadow_parent_attribute_with_field (model_inheritance.tests.ModelInheritanceTests.test_shadow_parent_attribute_with_field) ... ok 253s test_shadow_parent_method_with_field (model_inheritance.tests.ModelInheritanceTests.test_shadow_parent_method_with_field) ... ok 253s test_shadow_parent_property_with_field (model_inheritance.tests.ModelInheritanceTests.test_shadow_parent_property_with_field) ... ok 253s test_update_parent_filtering (model_inheritance.tests.ModelInheritanceTests.test_update_parent_filtering) 253s Updating a field of a model subclass doesn't issue an UPDATE ... ok 253s test_all_lookup (basic.tests.ModelLookupTest.test_all_lookup) ... ok 253s test_does_not_exist (basic.tests.ModelLookupTest.test_does_not_exist) ... ok 253s test_equal_lookup (basic.tests.ModelLookupTest.test_equal_lookup) ... ok 253s test_lookup_by_primary_key (basic.tests.ModelLookupTest.test_lookup_by_primary_key) ... ok 253s test_rich_lookup (basic.tests.ModelLookupTest.test_rich_lookup) ... ok 253s test_too_many (basic.tests.ModelLookupTest.test_too_many) ... ok 253s test_lookup_in_fields (basic.tests.ModelRefreshTests.test_lookup_in_fields) ... ok 253s test_prefetched_cache_cleared (basic.tests.ModelRefreshTests.test_prefetched_cache_cleared) ... ok 253s test_refresh (basic.tests.ModelRefreshTests.test_refresh) ... ok 253s test_refresh_clears_one_to_one_field (basic.tests.ModelRefreshTests.test_refresh_clears_one_to_one_field) ... ok 253s test_refresh_clears_reverse_related (basic.tests.ModelRefreshTests.test_refresh_clears_reverse_related) 253s refresh_from_db() clear cached reverse relations. ... ok 253s test_refresh_fk (basic.tests.ModelRefreshTests.test_refresh_fk) ... ok 253s test_refresh_fk_on_delete_set_null (basic.tests.ModelRefreshTests.test_refresh_fk_on_delete_set_null) ... ok 253s test_refresh_no_fields (basic.tests.ModelRefreshTests.test_refresh_no_fields) ... ok 253s test_refresh_null_fk (basic.tests.ModelRefreshTests.test_refresh_null_fk) ... ok 253s test_refresh_unsaved (basic.tests.ModelRefreshTests.test_refresh_unsaved) ... ok 253s test_unknown_kwarg (basic.tests.ModelRefreshTests.test_unknown_kwarg) ... ok 253s test_select_on_save (basic.tests.SelectOnSaveTests.test_select_on_save) ... ok 253s test_select_on_save_lying_update (basic.tests.SelectOnSaveTests.test_select_on_save_lying_update) 253s select_on_save works correctly if the database doesn't return correct ... ok 254s test_reverse_by_field (reverse_lookup.tests.ReverseLookupTests.test_reverse_by_field) ... ok 254s test_reverse_by_related_name (reverse_lookup.tests.ReverseLookupTests.test_reverse_by_related_name) ... ok 254s test_reverse_field_name_disallowed (reverse_lookup.tests.ReverseLookupTests.test_reverse_field_name_disallowed) 254s If a related_name is given you can't use the field name instead ... ok 254s test_create_method (basic.tests.ModelTest.test_create_method) ... ok 254s test_create_relation_with_gettext_lazy (basic.tests.ModelTest.test_create_relation_with_gettext_lazy) 254s gettext_lazy objects work when saving model instances ... ok 254s test_delete_and_access_field (basic.tests.ModelTest.test_delete_and_access_field) ... ok 254s test_emptyqs (basic.tests.ModelTest.test_emptyqs) ... ok 254s test_emptyqs_customqs (basic.tests.ModelTest.test_emptyqs_customqs) ... ok 254s test_emptyqs_distinct (basic.tests.ModelTest.test_emptyqs_distinct) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 254s test_emptyqs_values (basic.tests.ModelTest.test_emptyqs_values) ... ok 254s test_emptyqs_values_order (basic.tests.ModelTest.test_emptyqs_values_order) ... ok 254s test_eq (basic.tests.ModelTest.test_eq) ... ok 254s test_extra_method_select_argument_with_dashes (basic.tests.ModelTest.test_extra_method_select_argument_with_dashes) ... ok 254s test_extra_method_select_argument_with_dashes_and_values (basic.tests.ModelTest.test_extra_method_select_argument_with_dashes_and_values) ... ok 254s test_hash (basic.tests.ModelTest.test_hash) ... ok 254s test_hash_function (basic.tests.ModelTest.test_hash_function) ... ok 254s test_manually_specify_primary_key (basic.tests.ModelTest.test_manually_specify_primary_key) ... ok 254s test_microsecond_precision (basic.tests.ModelTest.test_microsecond_precision) ... ok 254s test_missing_hash_not_inherited (basic.tests.ModelTest.test_missing_hash_not_inherited) ... ok 254s test_multiple_objects_max_num_fetched (basic.tests.ModelTest.test_multiple_objects_max_num_fetched) ... ok 254s test_not_equal_and_equal_operators_behave_as_expected_on_instances (basic.tests.ModelTest.test_not_equal_and_equal_operators_behave_as_expected_on_instances) ... ok 254s test_objects_attribute_is_only_available_on_the_class_itself (basic.tests.ModelTest.test_objects_attribute_is_only_available_on_the_class_itself) ... ok 254s test_queryset_delete_removes_all_items_in_that_queryset (basic.tests.ModelTest.test_queryset_delete_removes_all_items_in_that_queryset) ... ok 254s test_specified_parent_hash_inherited (basic.tests.ModelTest.test_specified_parent_hash_inherited) ... ok 254s test_ticket_20278 (basic.tests.ModelTest.test_ticket_20278) ... ok 254s test_unicode_data (basic.tests.ModelTest.test_unicode_data) ... ok 254s test_year_lookup_edge_case (basic.tests.ModelTest.test_year_lookup_edge_case) ... ok 254s test_mutually_referential (mutually_referential.tests.MutuallyReferentialTests.test_mutually_referential) ... ok 254s test_automatic_m2m_column_names (model_package.tests.ModelPackageTests.test_automatic_m2m_column_names) 254s Regression for #12386 - field names on the autogenerated intermediate ... ok 254s test_m2m_tables_in_subpackage_models (model_package.tests.ModelPackageTests.test_m2m_tables_in_subpackage_models) 254s Regression for #12168: models split into subpackages still get M2M ... ok 254s test_models_in_the_test_package (model_package.tests.ModelPackageTests.test_models_in_the_test_package) 254s Regression for #12245 - Models can exist in the test package, too. ... ok 254s test_many_to_many_between_unmanaged (unmanaged_models.tests.ManyToManyUnmanagedTests.test_many_to_many_between_unmanaged) 254s The intermediary table between two unmanaged models should not be created. ... ok 254s test_many_to_many_between_unmanaged_and_managed (unmanaged_models.tests.ManyToManyUnmanagedTests.test_many_to_many_between_unmanaged_and_managed) 254s An intermediary table between a managed and an unmanaged model should ... ok 254s test_simple (unmanaged_models.tests.SimpleTests.test_simple) 254s The main test here is that the all the models can be created without ... ok 254s test_custom_methods (custom_methods.tests.MethodsTests.test_custom_methods) ... ok 254s test_callable_defaults (get_or_create.tests.GetOrCreateTests.test_callable_defaults) 254s Callables in `defaults` are evaluated if the instance is created. ... ok 254s test_callable_defaults_not_called (get_or_create.tests.GetOrCreateTests.test_callable_defaults_not_called) ... ok 254s test_defaults_exact (get_or_create.tests.GetOrCreateTests.test_defaults_exact) 254s If you have a field named defaults and want to use it as an exact ... ok 254s test_defaults_not_evaluated_unless_needed (get_or_create.tests.GetOrCreateTests.test_defaults_not_evaluated_unless_needed) 254s `defaults` aren't evaluated if the instance isn't created. ... ok 254s test_get_or_create_invalid_params (get_or_create.tests.GetOrCreateTests.test_get_or_create_invalid_params) 254s If you don't specify a value or default value for all required ... ok 254s test_get_or_create_method_with_create (get_or_create.tests.GetOrCreateTests.test_get_or_create_method_with_create) ... ok 254s test_get_or_create_method_with_get (get_or_create.tests.GetOrCreateTests.test_get_or_create_method_with_get) ... ok 254s test_get_or_create_on_related_manager (get_or_create.tests.GetOrCreateTests.test_get_or_create_on_related_manager) ... ok 254s test_get_or_create_redundant_instance (get_or_create.tests.GetOrCreateTests.test_get_or_create_redundant_instance) 254s If we execute the exact same statement twice, the second time, ... ok 254s test_get_or_create_with_model_property_defaults (get_or_create.tests.GetOrCreateTests.test_get_or_create_with_model_property_defaults) 254s Using a property with a setter implemented is allowed. ... ok 254s test_get_or_create_with_pk_property (get_or_create.tests.GetOrCreateTests.test_get_or_create_with_pk_property) 254s Using the pk property of a model is allowed. ... ok 254s test_create_with_duplicate_primary_key (get_or_create.tests.GetOrCreateTestsWithManualPKs.test_create_with_duplicate_primary_key) 254s If you specify an existing primary key, but different other fields, ... ok 254s test_get_or_create_empty (get_or_create.tests.GetOrCreateTestsWithManualPKs.test_get_or_create_empty) 254s If all the attributes on a model have defaults, get_or_create() doesn't ... ok 254s test_get_or_create_raises_IntegrityError_plus_traceback (get_or_create.tests.GetOrCreateTestsWithManualPKs.test_get_or_create_raises_IntegrityError_plus_traceback) 254s get_or_create should raise IntegrityErrors with the full traceback. ... ok 254s test_savepoint_rollback (get_or_create.tests.GetOrCreateTestsWithManualPKs.test_savepoint_rollback) 254s The database connection is still usable after a DatabaseError in ... ok 255s test_base64_invalid_upload (file_uploads.tests.FileUploadTests.test_base64_invalid_upload) ... ok 255s test_base64_upload (file_uploads.tests.FileUploadTests.test_base64_upload) ... ok 255s test_big_base64_newlines_upload (file_uploads.tests.FileUploadTests.test_big_base64_newlines_upload) ... ok 255s test_big_base64_upload (file_uploads.tests.FileUploadTests.test_big_base64_upload) ... ok 255s test_blank_filenames (file_uploads.tests.FileUploadTests.test_blank_filenames) 255s Receiving file upload when filename is blank (before and after ... ok 255s test_broken_custom_upload_handler (file_uploads.tests.FileUploadTests.test_broken_custom_upload_handler) ... ok 255s test_content_type_extra (file_uploads.tests.FileUploadTests.test_content_type_extra) 255s Uploaded files may have content type parameters available. ... ok 255s test_custom_upload_handler (file_uploads.tests.FileUploadTests.test_custom_upload_handler) ... ok 255s test_dangerous_file_names (file_uploads.tests.FileUploadTests.test_dangerous_file_names) 255s Uploaded file names should be sanitized before ever reaching the view. ... ok 255s test_empty_multipart_handled_gracefully (file_uploads.tests.FileUploadTests.test_empty_multipart_handled_gracefully) 255s If passed an empty multipart message, MultiPartParser will return ... ok 255s test_file_content (file_uploads.tests.FileUploadTests.test_file_content) ... ok 255s test_file_error_blocking (file_uploads.tests.FileUploadTests.test_file_error_blocking) 255s The server should not block when there are upload errors (bug #8622). ... ok 255s test_filename_case_preservation (file_uploads.tests.FileUploadTests.test_filename_case_preservation) 255s The storage backend shouldn't mess with the case of the filenames ... ok 255s test_filename_overflow (file_uploads.tests.FileUploadTests.test_filename_overflow) 255s File names over 256 characters (dangerous on some platforms) get fixed up. ... ok 255s test_filename_traversal_upload (file_uploads.tests.FileUploadTests.test_filename_traversal_upload) ... ok 255s test_fileupload_getlist (file_uploads.tests.FileUploadTests.test_fileupload_getlist) ... ok 255s test_fileuploads_closed_at_request_end (file_uploads.tests.FileUploadTests.test_fileuploads_closed_at_request_end) ... ok 255s test_large_upload (file_uploads.tests.FileUploadTests.test_large_upload) ... ok 255s test_no_parsing_triggered_by_fd_closing (file_uploads.tests.FileUploadTests.test_no_parsing_triggered_by_fd_closing) ... ok 255s test_non_printable_chars_in_file_names (file_uploads.tests.FileUploadTests.test_non_printable_chars_in_file_names) ... ok 255s test_simple_upload (file_uploads.tests.FileUploadTests.test_simple_upload) ... ok 255s test_stop_upload_temporary_file_handler (file_uploads.tests.FileUploadTests.test_stop_upload_temporary_file_handler) ... ok 255s test_truncated_multipart_handled_gracefully (file_uploads.tests.FileUploadTests.test_truncated_multipart_handled_gracefully) 255s If passed an incomplete multipart message, MultiPartParser does not ... ok 255s test_unicode_file_name (file_uploads.tests.FileUploadTests.test_unicode_file_name) ... ok 255s test_unicode_file_name_rfc2231 (file_uploads.tests.FileUploadTests.test_unicode_file_name_rfc2231) 255s Receiving file upload when filename is encoded with RFC 2231. ... ok 255s test_unicode_file_name_rfc2231_with_double_quotes (file_uploads.tests.FileUploadTests.test_unicode_file_name_rfc2231_with_double_quotes) ... ok 255s test_unicode_name_rfc2231 (file_uploads.tests.FileUploadTests.test_unicode_name_rfc2231) 255s Receiving file upload when filename is encoded with RFC 2231. ... ok 255s test_unicode_name_rfc2231_with_double_quotes (file_uploads.tests.FileUploadTests.test_unicode_name_rfc2231_with_double_quotes) ... ok 255s test_upload_interrupted_temporary_file_handler (file_uploads.tests.FileUploadTests.test_upload_interrupted_temporary_file_handler) ... ok 255s test_upload_name_is_validated (file_uploads.tests.FileUploadTests.test_upload_name_is_validated) ... ok 255s test_create_get_or_create (get_or_create.tests.GetOrCreateThroughManyToMany.test_create_get_or_create) ... ok 255s test_get_get_or_create (get_or_create.tests.GetOrCreateThroughManyToMany.test_get_get_or_create) ... ok 255s test_something (get_or_create.tests.GetOrCreateThroughManyToMany.test_something) ... ok 255s test_create_with_duplicate_primary_key (get_or_create.tests.UpdateOrCreateTestsWithManualPKs.test_create_with_duplicate_primary_key) 255s If an existing primary key is specified with different values for other ... ok 255s test_multi_table_inheritance (select_related_regress.tests.SelectRelatedRegressTests.test_multi_table_inheritance) 255s Exercising select_related() with multi-table model inheritance. ... ok 255s test_null_join_promotion (select_related_regress.tests.SelectRelatedRegressTests.test_null_join_promotion) ... ok 255s test_regression_10733 (select_related_regress.tests.SelectRelatedRegressTests.test_regression_10733) ... ok 255s test_regression_12851 (select_related_regress.tests.SelectRelatedRegressTests.test_regression_12851) 255s Regression for #12851 ... ok 255s test_regression_19870 (select_related_regress.tests.SelectRelatedRegressTests.test_regression_19870) ... ok 255s test_regression_22508 (select_related_regress.tests.SelectRelatedRegressTests.test_regression_22508) ... ok 255s test_regression_7110 (select_related_regress.tests.SelectRelatedRegressTests.test_regression_7110) 255s Regression test for bug #7110. ... ok 255s test_regression_8036 (select_related_regress.tests.SelectRelatedRegressTests.test_regression_8036) 255s Regression test for bug #8036 ... ok 255s test_regression_8106 (select_related_regress.tests.SelectRelatedRegressTests.test_regression_8106) 255s Regression test for bug #8106. ... ok 255s test_create (get_or_create.tests.UpdateOrCreateTests.test_create) ... ok 255s test_create_callable_default (get_or_create.tests.UpdateOrCreateTests.test_create_callable_default) ... ok 255s test_create_twice (get_or_create.tests.UpdateOrCreateTests.test_create_twice) ... ok 255s test_create_with_many (get_or_create.tests.UpdateOrCreateTests.test_create_with_many) 255s Should be able to use update_or_create from the m2m related manager to ... ok 255s test_create_with_related_manager (get_or_create.tests.UpdateOrCreateTests.test_create_with_related_manager) 255s Should be able to use update_or_create from the related manager to ... ok 255s test_defaults_exact (get_or_create.tests.UpdateOrCreateTests.test_defaults_exact) 255s If you have a field named defaults and want to use it as an exact ... ok 255s test_defaults_not_evaluated_unless_needed (get_or_create.tests.UpdateOrCreateTests.test_defaults_not_evaluated_unless_needed) 255s `defaults` aren't evaluated if the instance isn't created. ... ok 255s test_error_contains_full_traceback (get_or_create.tests.UpdateOrCreateTests.test_error_contains_full_traceback) 255s update_or_create should raise IntegrityErrors with the full traceback. ... ok 255s test_integrity (get_or_create.tests.UpdateOrCreateTests.test_integrity) 255s If you don't specify a value or default value for all required ... ok 255s test_manual_primary_key_test (get_or_create.tests.UpdateOrCreateTests.test_manual_primary_key_test) 255s If you specify an existing primary key, but different other fields, ... ok 255s test_mti_update_non_local_concrete_fields (get_or_create.tests.UpdateOrCreateTests.test_mti_update_non_local_concrete_fields) ... ok 255s test_update (get_or_create.tests.UpdateOrCreateTests.test_update) ... ok 255s test_update_callable_default (get_or_create.tests.UpdateOrCreateTests.test_update_callable_default) ... ok 255s test_update_only_defaults_and_pre_save_fields_when_local_fields (get_or_create.tests.UpdateOrCreateTests.test_update_only_defaults_and_pre_save_fields_when_local_fields) ... ok 255s test_update_or_create_with_model_property_defaults (get_or_create.tests.UpdateOrCreateTests.test_update_or_create_with_model_property_defaults) 255s Using a property with a setter implemented is allowed. ... ok 255s test_update_with_many (get_or_create.tests.UpdateOrCreateTests.test_update_with_many) 255s Should be able to use update_or_create from the m2m related manager to ... ok 255s test_update_with_related_manager (get_or_create.tests.UpdateOrCreateTests.test_update_with_related_manager) 255s Should be able to use update_or_create from the related manager to ... ok 255s test_with_pk_property (get_or_create.tests.UpdateOrCreateTests.test_with_pk_property) 255s Using the pk property of a model is allowed. ... ok 255s test_custom_valid_name_callable_upload_to (file_storage.tests.FileFieldStorageTests.test_custom_valid_name_callable_upload_to) 255s Storage.get_valid_name() should be called when upload_to is a callable. ... ok 255s test_duplicate_filename (file_storage.tests.FileFieldStorageTests.test_duplicate_filename) ... ok 255s test_empty_upload_to (file_storage.tests.FileFieldStorageTests.test_empty_upload_to) ... ok 255s test_extended_length_storage (file_storage.tests.FileFieldStorageTests.test_extended_length_storage) ... ok 255s test_file_object (file_storage.tests.FileFieldStorageTests.test_file_object) ... ok 255s test_file_truncation (file_storage.tests.FileFieldStorageTests.test_file_truncation) ... ok 255s test_filefield_default (file_storage.tests.FileFieldStorageTests.test_filefield_default) ... ok 255s test_filefield_pickling (file_storage.tests.FileFieldStorageTests.test_filefield_pickling) ... ok 255s test_filefield_read (file_storage.tests.FileFieldStorageTests.test_filefield_read) ... ok 255s test_filefield_reopen (file_storage.tests.FileFieldStorageTests.test_filefield_reopen) ... ok 255s test_filefield_write (file_storage.tests.FileFieldStorageTests.test_filefield_write) ... ok 255s test_files (file_storage.tests.FileFieldStorageTests.test_files) ... ok 255s test_pathlib_upload_to (file_storage.tests.FileFieldStorageTests.test_pathlib_upload_to) ... ok 255s test_random_upload_to (file_storage.tests.FileFieldStorageTests.test_random_upload_to) ... ok 255s test_stringio (file_storage.tests.FileFieldStorageTests.test_stringio) ... ok 255s test_request (sites_tests.tests.MiddlewareTest.test_request) ... ok 255s test_basic (sites_tests.tests.CreateDefaultSiteTests.test_basic) 255s #15346, #15573 - create_default_site() creates an example site only if ... ok 255s test_custom_site_id (sites_tests.tests.CreateDefaultSiteTests.test_custom_site_id) 255s #23945 - The configured ``SITE_ID`` should be respected. ... ok 255s test_multi_db (sites_tests.tests.CreateDefaultSiteTests.test_multi_db) ... ok 255s test_multi_db_with_router (sites_tests.tests.CreateDefaultSiteTests.test_multi_db_with_router) 255s #16353, #16828 - The default site creation should respect db routing. ... ok 255s test_no_site_id (sites_tests.tests.CreateDefaultSiteTests.test_no_site_id) 255s #24488 - The pk should default to 1 if no ``SITE_ID`` is configured. ... ok 255s test_save_another (sites_tests.tests.CreateDefaultSiteTests.test_save_another) 255s #17415 - Another site can be created right after the default one. ... ok 255s test_signal (sites_tests.tests.CreateDefaultSiteTests.test_signal) 255s #23641 - Sending the ``post_migrate`` signal triggers creation of the ... ok 255s test_unavailable_site_model (sites_tests.tests.CreateDefaultSiteTests.test_unavailable_site_model) 255s #24075 - A Site shouldn't be created if the model isn't available. ... ok 256s test_check_site_id (sites_tests.tests.SitesFrameworkTests.test_check_site_id) ... ok 256s test_clear_site_cache (sites_tests.tests.SitesFrameworkTests.test_clear_site_cache) ... ok 256s test_clear_site_cache_domain (sites_tests.tests.SitesFrameworkTests.test_clear_site_cache_domain) ... ok 256s test_delete_all_sites_clears_cache (sites_tests.tests.SitesFrameworkTests.test_delete_all_sites_clears_cache) ... ok 256s test_domain_name_with_whitespaces (sites_tests.tests.SitesFrameworkTests.test_domain_name_with_whitespaces) ... ok 256s test_get_current_site (sites_tests.tests.SitesFrameworkTests.test_get_current_site) ... ok 256s test_get_current_site_host_with_trailing_dot (sites_tests.tests.SitesFrameworkTests.test_get_current_site_host_with_trailing_dot) 256s The site is matched if the name in the request has a trailing dot. ... ok 256s test_get_current_site_no_site_id (sites_tests.tests.SitesFrameworkTests.test_get_current_site_no_site_id) ... ok 256s test_get_current_site_no_site_id_and_handle_port_fallback (sites_tests.tests.SitesFrameworkTests.test_get_current_site_no_site_id_and_handle_port_fallback) ... ok 256s test_site_cache (sites_tests.tests.SitesFrameworkTests.test_site_cache) ... ok 256s test_site_manager (sites_tests.tests.SitesFrameworkTests.test_site_manager) ... ok 256s test_site_natural_key (sites_tests.tests.SitesFrameworkTests.test_site_natural_key) ... ok 256s test_unique_domain (sites_tests.tests.SitesFrameworkTests.test_unique_domain) ... ok 256s test_valid_site_id (sites_tests.tests.SitesFrameworkTests.test_valid_site_id) ... ok 256s test_json_serializer (serializers.test_data.SerializerDataTests.test_json_serializer) 256s Create a new function with partial application of the given arguments ... ok 256s test_jsonl_serializer (serializers.test_data.SerializerDataTests.test_jsonl_serializer) 256s Create a new function with partial application of the given arguments ... ok 256s test_python_serializer (serializers.test_data.SerializerDataTests.test_python_serializer) 256s Create a new function with partial application of the given arguments ... ok 256s test_xml_serializer (serializers.test_data.SerializerDataTests.test_xml_serializer) 256s Create a new function with partial application of the given arguments ... ok 256s test_yaml_serializer (serializers.test_data.SerializerDataTests.test_yaml_serializer) 256s Create a new function with partial application of the given arguments ... ok 257s test_altering_serialized_output (serializers.test_jsonl.JsonlSerializerTestCase.test_altering_serialized_output) 257s The ability to create new objects by modifying serialized content. ... ok 257s test_custom_encoder (serializers.test_jsonl.JsonlSerializerTestCase.test_custom_encoder) ... ok 257s test_custom_field_serialization (serializers.test_jsonl.JsonlSerializerTestCase.test_custom_field_serialization) 257s Custom fields serialize and deserialize intact ... ok 257s test_deferred_field_serialization (serializers.test_jsonl.JsonlSerializerTestCase.test_deferred_field_serialization) ... ok 257s test_deserialize_force_insert (serializers.test_jsonl.JsonlSerializerTestCase.test_deserialize_force_insert) 257s Deserialized content can be saved with force_insert as a parameter. ... ok 257s test_deterministic_mapping_ordering (serializers.test_jsonl.JsonlSerializerTestCase.test_deterministic_mapping_ordering) 257s Mapping such as fields should be deterministically ordered. (#24558) ... ok 257s test_float_serialization (serializers.test_jsonl.JsonlSerializerTestCase.test_float_serialization) 257s Float values serialize and deserialize intact ... ok 257s test_helpful_error_message_for_foreign_keys (serializers.test_jsonl.JsonlSerializerTestCase.test_helpful_error_message_for_foreign_keys) 257s Invalid foreign keys with a natural key throws a helpful error message, ... ok 257s test_helpful_error_message_for_many2many_natural1 (serializers.test_jsonl.JsonlSerializerTestCase.test_helpful_error_message_for_many2many_natural1) 257s Invalid many-to-many keys throws a helpful error message where one of a ... ok 257s test_helpful_error_message_for_many2many_natural2 (serializers.test_jsonl.JsonlSerializerTestCase.test_helpful_error_message_for_many2many_natural2) 257s Invalid many-to-many keys throws a helpful error message where a ... ok 257s test_helpful_error_message_for_many2many_non_natural (serializers.test_jsonl.JsonlSerializerTestCase.test_helpful_error_message_for_many2many_non_natural) 257s Invalid many-to-many keys throws a helpful error message. ... ok 257s test_helpful_error_message_for_many2many_not_iterable (serializers.test_jsonl.JsonlSerializerTestCase.test_helpful_error_message_for_many2many_not_iterable) 257s Not iterable many-to-many field value throws a helpful error message. ... ok 257s test_helpful_error_message_invalid_field (serializers.test_jsonl.JsonlSerializerTestCase.test_helpful_error_message_invalid_field) 257s If there is an invalid field value, the error message contains the ... ok 257s test_helpful_error_message_invalid_pk (serializers.test_jsonl.JsonlSerializerTestCase.test_helpful_error_message_invalid_pk) 257s If there is an invalid primary key, the error message contains the ... ok 257s test_json_deserializer_exception (serializers.test_jsonl.JsonlSerializerTestCase.test_json_deserializer_exception) ... ok 257s test_no_indentation (serializers.test_jsonl.JsonlSerializerTestCase.test_no_indentation) ... ok 257s test_one_to_one_as_pk (serializers.test_jsonl.JsonlSerializerTestCase.test_one_to_one_as_pk) 257s If you use your own primary key field (such as a OneToOneField), it ... ok 257s test_pkless_serialized_strings (serializers.test_jsonl.JsonlSerializerTestCase.test_pkless_serialized_strings) 257s Serialized strings without PKs can be turned into models ... ok 257s test_pre_1000ad_date (serializers.test_jsonl.JsonlSerializerTestCase.test_pre_1000ad_date) 257s Year values before 1000AD are properly formatted ... ok 257s test_serialize (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize) 257s Basic serialization works. ... ok 257s test_serialize_field_subset (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_field_subset) 257s Output can be restricted to a subset of fields ... ok 257s test_serialize_inherited_fields (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_inherited_fields) ... ok 257s test_serialize_no_only_pk_with_natural_keys (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_no_only_pk_with_natural_keys) ... ok 257s test_serialize_only_pk (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_only_pk) ... ok 257s test_serialize_prefetch_related_m2m (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_prefetch_related_m2m) ... ok 257s test_serialize_progressbar (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_progressbar) ... ok 257s test_serialize_proxy_model (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_proxy_model) ... ok 257s test_serialize_specific_fields (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_specific_fields) ... ok 257s test_serialize_superfluous_queries (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_superfluous_queries) 257s Ensure no superfluous queries are made when serializing ForeignKeys ... ok 257s test_serialize_to_stream (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_to_stream) ... ok 257s test_serialize_unicode_roundtrip (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_unicode_roundtrip) 257s Unicode makes the roundtrip intact ... ok 257s test_serialize_with_null_pk (serializers.test_jsonl.JsonlSerializerTestCase.test_serialize_with_null_pk) 257s Serialized data with no primary key results ... ok 257s test_serializer_roundtrip (serializers.test_jsonl.JsonlSerializerTestCase.test_serializer_roundtrip) 257s Serialized content can be deserialized. ... ok 257s test_unicode_serialization (serializers.test_jsonl.JsonlSerializerTestCase.test_unicode_serialization) ... ok 257s test_altering_serialized_output (serializers.test_json.JsonSerializerTestCase.test_altering_serialized_output) 257s The ability to create new objects by modifying serialized content. ... ok 257s test_custom_encoder (serializers.test_json.JsonSerializerTestCase.test_custom_encoder) ... ok 257s test_custom_field_serialization (serializers.test_json.JsonSerializerTestCase.test_custom_field_serialization) 257s Custom fields serialize and deserialize intact ... ok 257s test_deferred_field_serialization (serializers.test_json.JsonSerializerTestCase.test_deferred_field_serialization) ... ok 257s test_deserialize_force_insert (serializers.test_json.JsonSerializerTestCase.test_deserialize_force_insert) 257s Deserialized content can be saved with force_insert as a parameter. ... ok 257s test_deterministic_mapping_ordering (serializers.test_json.JsonSerializerTestCase.test_deterministic_mapping_ordering) 257s Mapping such as fields should be deterministically ordered. (#24558) ... ok 257s test_float_serialization (serializers.test_json.JsonSerializerTestCase.test_float_serialization) 257s Float values serialize and deserialize intact ... ok 257s test_helpful_error_message_for_foreign_keys (serializers.test_json.JsonSerializerTestCase.test_helpful_error_message_for_foreign_keys) 257s Invalid foreign keys with a natural key should throw a helpful error ... ok 257s test_helpful_error_message_for_many2many_natural1 (serializers.test_json.JsonSerializerTestCase.test_helpful_error_message_for_many2many_natural1) 257s Invalid many-to-many keys should throw a helpful error message. ... ok 257s test_helpful_error_message_for_many2many_natural2 (serializers.test_json.JsonSerializerTestCase.test_helpful_error_message_for_many2many_natural2) 257s Invalid many-to-many keys should throw a helpful error message. This ... ok 257s test_helpful_error_message_for_many2many_non_natural (serializers.test_json.JsonSerializerTestCase.test_helpful_error_message_for_many2many_non_natural) 257s Invalid many-to-many keys should throw a helpful error message. ... ok 257s test_helpful_error_message_for_many2many_not_iterable (serializers.test_json.JsonSerializerTestCase.test_helpful_error_message_for_many2many_not_iterable) 257s Not iterable many-to-many field value throws a helpful error message. ... ok 257s test_helpful_error_message_invalid_field (serializers.test_json.JsonSerializerTestCase.test_helpful_error_message_invalid_field) 257s If there is an invalid field value, the error message should contain ... ok 257s test_helpful_error_message_invalid_pk (serializers.test_json.JsonSerializerTestCase.test_helpful_error_message_invalid_pk) 257s If there is an invalid primary key, the error message should contain ... ok 257s test_indentation_whitespace (serializers.test_json.JsonSerializerTestCase.test_indentation_whitespace) ... ok 257s test_json_deserializer_exception (serializers.test_json.JsonSerializerTestCase.test_json_deserializer_exception) ... ok 257s test_one_to_one_as_pk (serializers.test_json.JsonSerializerTestCase.test_one_to_one_as_pk) 257s If you use your own primary key field (such as a OneToOneField), it ... ok 257s test_pkless_serialized_strings (serializers.test_json.JsonSerializerTestCase.test_pkless_serialized_strings) 257s Serialized strings without PKs can be turned into models ... ok 257s test_pre_1000ad_date (serializers.test_json.JsonSerializerTestCase.test_pre_1000ad_date) 257s Year values before 1000AD are properly formatted ... ok 257s test_serialize (serializers.test_json.JsonSerializerTestCase.test_serialize) 257s Basic serialization works. ... ok 257s test_serialize_field_subset (serializers.test_json.JsonSerializerTestCase.test_serialize_field_subset) 257s Output can be restricted to a subset of fields ... ok 257s test_serialize_inherited_fields (serializers.test_json.JsonSerializerTestCase.test_serialize_inherited_fields) ... ok 257s test_serialize_no_only_pk_with_natural_keys (serializers.test_json.JsonSerializerTestCase.test_serialize_no_only_pk_with_natural_keys) ... ok 257s test_serialize_only_pk (serializers.test_json.JsonSerializerTestCase.test_serialize_only_pk) ... ok 257s test_serialize_prefetch_related_m2m (serializers.test_json.JsonSerializerTestCase.test_serialize_prefetch_related_m2m) ... ok 257s test_serialize_progressbar (serializers.test_json.JsonSerializerTestCase.test_serialize_progressbar) ... ok 257s test_serialize_proxy_model (serializers.test_json.JsonSerializerTestCase.test_serialize_proxy_model) ... ok 257s test_serialize_specific_fields (serializers.test_json.JsonSerializerTestCase.test_serialize_specific_fields) ... ok 257s test_serialize_superfluous_queries (serializers.test_json.JsonSerializerTestCase.test_serialize_superfluous_queries) 257s Ensure no superfluous queries are made when serializing ForeignKeys ... ok 257s test_serialize_to_stream (serializers.test_json.JsonSerializerTestCase.test_serialize_to_stream) ... ok 257s test_serialize_unicode_roundtrip (serializers.test_json.JsonSerializerTestCase.test_serialize_unicode_roundtrip) 257s Unicode makes the roundtrip intact ... ok 257s test_serialize_with_null_pk (serializers.test_json.JsonSerializerTestCase.test_serialize_with_null_pk) 257s Serialized data with no primary key results ... ok 257s test_serializer_roundtrip (serializers.test_json.JsonSerializerTestCase.test_serializer_roundtrip) 257s Serialized content can be deserialized. ... ok 257s test_unicode_serialization (serializers.test_json.JsonSerializerTestCase.test_unicode_serialization) ... ok 258s test_altering_serialized_output (serializers.test_xml.XmlSerializerTestCase.test_altering_serialized_output) 258s The ability to create new objects by modifying serialized content. ... ok 258s test_control_char_failure (serializers.test_xml.XmlSerializerTestCase.test_control_char_failure) 258s Serializing control characters with XML should fail as those characters ... ok 258s test_custom_field_serialization (serializers.test_xml.XmlSerializerTestCase.test_custom_field_serialization) 258s Custom fields serialize and deserialize intact ... ok 258s test_deferred_field_serialization (serializers.test_xml.XmlSerializerTestCase.test_deferred_field_serialization) ... ok 258s test_deserialize_force_insert (serializers.test_xml.XmlSerializerTestCase.test_deserialize_force_insert) 258s Deserialized content can be saved with force_insert as a parameter. ... ok 258s test_deterministic_mapping_ordering (serializers.test_xml.XmlSerializerTestCase.test_deterministic_mapping_ordering) 258s Mapping such as fields should be deterministically ordered. (#24558) ... ok 258s test_float_serialization (serializers.test_xml.XmlSerializerTestCase.test_float_serialization) 258s Float values serialize and deserialize intact ... ok 258s test_no_dtd (serializers.test_xml.XmlSerializerTestCase.test_no_dtd) 258s The XML deserializer shouldn't allow a DTD. ... ok 258s test_one_to_one_as_pk (serializers.test_xml.XmlSerializerTestCase.test_one_to_one_as_pk) 258s If you use your own primary key field (such as a OneToOneField), it ... ok 258s test_pkless_serialized_strings (serializers.test_xml.XmlSerializerTestCase.test_pkless_serialized_strings) 258s Serialized strings without PKs can be turned into models ... ok 258s test_pre_1000ad_date (serializers.test_xml.XmlSerializerTestCase.test_pre_1000ad_date) 258s Year values before 1000AD are properly formatted ... ok 258s test_serialize (serializers.test_xml.XmlSerializerTestCase.test_serialize) 258s Basic serialization works. ... ok 258s test_serialize_field_subset (serializers.test_xml.XmlSerializerTestCase.test_serialize_field_subset) 258s Output can be restricted to a subset of fields ... ok 258s test_serialize_inherited_fields (serializers.test_xml.XmlSerializerTestCase.test_serialize_inherited_fields) ... ok 258s test_serialize_no_only_pk_with_natural_keys (serializers.test_xml.XmlSerializerTestCase.test_serialize_no_only_pk_with_natural_keys) ... ok 258s test_serialize_only_pk (serializers.test_xml.XmlSerializerTestCase.test_serialize_only_pk) ... ok 258s test_serialize_prefetch_related_m2m (serializers.test_xml.XmlSerializerTestCase.test_serialize_prefetch_related_m2m) ... ok 258s test_serialize_progressbar (serializers.test_xml.XmlSerializerTestCase.test_serialize_progressbar) ... ok 258s test_serialize_proxy_model (serializers.test_xml.XmlSerializerTestCase.test_serialize_proxy_model) ... ok 258s test_serialize_specific_fields (serializers.test_xml.XmlSerializerTestCase.test_serialize_specific_fields) ... ok 258s test_serialize_superfluous_queries (serializers.test_xml.XmlSerializerTestCase.test_serialize_superfluous_queries) 258s Ensure no superfluous queries are made when serializing ForeignKeys ... ok 258s test_serialize_to_stream (serializers.test_xml.XmlSerializerTestCase.test_serialize_to_stream) ... ok 258s test_serialize_unicode_roundtrip (serializers.test_xml.XmlSerializerTestCase.test_serialize_unicode_roundtrip) 258s Unicode makes the roundtrip intact ... ok 258s test_serialize_with_null_pk (serializers.test_xml.XmlSerializerTestCase.test_serialize_with_null_pk) 258s Serialized data with no primary key results ... ok 258s test_serializer_roundtrip (serializers.test_xml.XmlSerializerTestCase.test_serializer_roundtrip) 258s Serialized content can be deserialized. ... ok 258s test_unicode_serialization (serializers.test_xml.XmlSerializerTestCase.test_unicode_serialization) ... ok 258s test_json_fk_as_pk_natural_key_not_called (serializers.test_natural.NaturalKeySerializerTests.test_json_fk_as_pk_natural_key_not_called) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_forward_references_fk_errors (serializers.test_natural.NaturalKeySerializerTests.test_json_forward_references_fk_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_forward_references_fks (serializers.test_natural.NaturalKeySerializerTests.test_json_forward_references_fks) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_forward_references_m2m_errors (serializers.test_natural.NaturalKeySerializerTests.test_json_forward_references_m2m_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_forward_references_m2ms (serializers.test_natural.NaturalKeySerializerTests.test_json_forward_references_m2ms) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_natural_key_serializer (serializers.test_natural.NaturalKeySerializerTests.test_json_natural_key_serializer) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_pk_with_default (serializers.test_natural.NaturalKeySerializerTests.test_json_pk_with_default) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_serializer_natural_keys (serializers.test_natural.NaturalKeySerializerTests.test_json_serializer_natural_keys) 258s Create a new function with partial application of the given arguments ... ok 258s test_json_serializer_natural_pks_mti (serializers.test_natural.NaturalKeySerializerTests.test_json_serializer_natural_pks_mti) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_fk_as_pk_natural_key_not_called (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_fk_as_pk_natural_key_not_called) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_forward_references_fk_errors (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_forward_references_fk_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_forward_references_fks (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_forward_references_fks) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_forward_references_m2m_errors (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_forward_references_m2m_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_forward_references_m2ms (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_forward_references_m2ms) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_natural_key_serializer (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_natural_key_serializer) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_pk_with_default (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_pk_with_default) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_serializer_natural_keys (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_serializer_natural_keys) 258s Create a new function with partial application of the given arguments ... ok 258s test_jsonl_serializer_natural_pks_mti (serializers.test_natural.NaturalKeySerializerTests.test_jsonl_serializer_natural_pks_mti) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_fk_as_pk_natural_key_not_called (serializers.test_natural.NaturalKeySerializerTests.test_python_fk_as_pk_natural_key_not_called) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_forward_references_fk_errors (serializers.test_natural.NaturalKeySerializerTests.test_python_forward_references_fk_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_forward_references_fks (serializers.test_natural.NaturalKeySerializerTests.test_python_forward_references_fks) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_forward_references_m2m_errors (serializers.test_natural.NaturalKeySerializerTests.test_python_forward_references_m2m_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_forward_references_m2ms (serializers.test_natural.NaturalKeySerializerTests.test_python_forward_references_m2ms) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_natural_key_serializer (serializers.test_natural.NaturalKeySerializerTests.test_python_natural_key_serializer) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_pk_with_default (serializers.test_natural.NaturalKeySerializerTests.test_python_pk_with_default) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_serializer_natural_keys (serializers.test_natural.NaturalKeySerializerTests.test_python_serializer_natural_keys) 258s Create a new function with partial application of the given arguments ... ok 258s test_python_serializer_natural_pks_mti (serializers.test_natural.NaturalKeySerializerTests.test_python_serializer_natural_pks_mti) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_fk_as_pk_natural_key_not_called (serializers.test_natural.NaturalKeySerializerTests.test_xml_fk_as_pk_natural_key_not_called) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_forward_references_fk_errors (serializers.test_natural.NaturalKeySerializerTests.test_xml_forward_references_fk_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_forward_references_fks (serializers.test_natural.NaturalKeySerializerTests.test_xml_forward_references_fks) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_forward_references_m2m_errors (serializers.test_natural.NaturalKeySerializerTests.test_xml_forward_references_m2m_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_forward_references_m2ms (serializers.test_natural.NaturalKeySerializerTests.test_xml_forward_references_m2ms) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_natural_key_serializer (serializers.test_natural.NaturalKeySerializerTests.test_xml_natural_key_serializer) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_pk_with_default (serializers.test_natural.NaturalKeySerializerTests.test_xml_pk_with_default) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_serializer_natural_keys (serializers.test_natural.NaturalKeySerializerTests.test_xml_serializer_natural_keys) 258s Create a new function with partial application of the given arguments ... ok 258s test_xml_serializer_natural_pks_mti (serializers.test_natural.NaturalKeySerializerTests.test_xml_serializer_natural_pks_mti) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_fk_as_pk_natural_key_not_called (serializers.test_natural.NaturalKeySerializerTests.test_yaml_fk_as_pk_natural_key_not_called) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_forward_references_fk_errors (serializers.test_natural.NaturalKeySerializerTests.test_yaml_forward_references_fk_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_forward_references_fks (serializers.test_natural.NaturalKeySerializerTests.test_yaml_forward_references_fks) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_forward_references_m2m_errors (serializers.test_natural.NaturalKeySerializerTests.test_yaml_forward_references_m2m_errors) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_forward_references_m2ms (serializers.test_natural.NaturalKeySerializerTests.test_yaml_forward_references_m2ms) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_natural_key_serializer (serializers.test_natural.NaturalKeySerializerTests.test_yaml_natural_key_serializer) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_pk_with_default (serializers.test_natural.NaturalKeySerializerTests.test_yaml_pk_with_default) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_serializer_natural_keys (serializers.test_natural.NaturalKeySerializerTests.test_yaml_serializer_natural_keys) 258s Create a new function with partial application of the given arguments ... ok 258s test_yaml_serializer_natural_pks_mti (serializers.test_natural.NaturalKeySerializerTests.test_yaml_serializer_natural_pks_mti) 258s Create a new function with partial application of the given arguments ... ok 258s test_altering_serialized_output (serializers.test_yaml.YamlSerializerTestCase.test_altering_serialized_output) 258s The ability to create new objects by modifying serialized content. ... ok 258s test_custom_field_serialization (serializers.test_yaml.YamlSerializerTestCase.test_custom_field_serialization) 258s Custom fields serialize and deserialize intact ... ok 258s test_deferred_field_serialization (serializers.test_yaml.YamlSerializerTestCase.test_deferred_field_serialization) ... ok 258s test_deserialize_force_insert (serializers.test_yaml.YamlSerializerTestCase.test_deserialize_force_insert) 258s Deserialized content can be saved with force_insert as a parameter. ... ok 258s test_deterministic_mapping_ordering (serializers.test_yaml.YamlSerializerTestCase.test_deterministic_mapping_ordering) 258s Mapping such as fields should be deterministically ordered. (#24558) ... ok 258s test_float_serialization (serializers.test_yaml.YamlSerializerTestCase.test_float_serialization) 258s Float values serialize and deserialize intact ... ok 258s test_one_to_one_as_pk (serializers.test_yaml.YamlSerializerTestCase.test_one_to_one_as_pk) 258s If you use your own primary key field (such as a OneToOneField), it ... ok 258s test_pkless_serialized_strings (serializers.test_yaml.YamlSerializerTestCase.test_pkless_serialized_strings) 258s Serialized strings without PKs can be turned into models ... ok 258s test_pre_1000ad_date (serializers.test_yaml.YamlSerializerTestCase.test_pre_1000ad_date) 258s Year values before 1000AD are properly formatted ... ok 258s test_serialize (serializers.test_yaml.YamlSerializerTestCase.test_serialize) 258s Basic serialization works. ... ok 258s test_serialize_field_subset (serializers.test_yaml.YamlSerializerTestCase.test_serialize_field_subset) 258s Output can be restricted to a subset of fields ... ok 258s test_serialize_inherited_fields (serializers.test_yaml.YamlSerializerTestCase.test_serialize_inherited_fields) ... ok 258s test_serialize_no_only_pk_with_natural_keys (serializers.test_yaml.YamlSerializerTestCase.test_serialize_no_only_pk_with_natural_keys) ... ok 258s test_serialize_only_pk (serializers.test_yaml.YamlSerializerTestCase.test_serialize_only_pk) ... ok 258s test_serialize_prefetch_related_m2m (serializers.test_yaml.YamlSerializerTestCase.test_serialize_prefetch_related_m2m) ... ok 258s test_serialize_progressbar (serializers.test_yaml.YamlSerializerTestCase.test_serialize_progressbar) ... ok 258s test_serialize_proxy_model (serializers.test_yaml.YamlSerializerTestCase.test_serialize_proxy_model) ... ok 258s test_serialize_specific_fields (serializers.test_yaml.YamlSerializerTestCase.test_serialize_specific_fields) ... ok 258s test_serialize_superfluous_queries (serializers.test_yaml.YamlSerializerTestCase.test_serialize_superfluous_queries) 258s Ensure no superfluous queries are made when serializing ForeignKeys ... ok 258s test_serialize_to_stream (serializers.test_yaml.YamlSerializerTestCase.test_serialize_to_stream) ... ok 258s test_serialize_unicode_roundtrip (serializers.test_yaml.YamlSerializerTestCase.test_serialize_unicode_roundtrip) 258s Unicode makes the roundtrip intact ... ok 258s test_serialize_with_null_pk (serializers.test_yaml.YamlSerializerTestCase.test_serialize_with_null_pk) 258s Serialized data with no primary key results ... ok 258s test_serializer_roundtrip (serializers.test_yaml.YamlSerializerTestCase.test_serializer_roundtrip) 258s Serialized content can be deserialized. ... ok 258s test_unicode_serialization (serializers.test_yaml.YamlSerializerTestCase.test_unicode_serialization) ... ok 258s test_yaml_deserializer_exception (serializers.test_yaml.YamlSerializerTestCase.test_yaml_deserializer_exception) ... ok 258s test_database_queried (backends.base.test_base.ExecuteWrapperTests.test_database_queried) ... ok 258s test_nested_wrapper_invoked (backends.base.test_base.ExecuteWrapperTests.test_nested_wrapper_invoked) ... ok 258s test_outer_wrapper_blocks (backends.base.test_base.ExecuteWrapperTests.test_outer_wrapper_blocks) ... ok 258s test_wrapper_connection_specific (backends.base.test_base.ExecuteWrapperTests.test_wrapper_connection_specific) ... ok 258s test_wrapper_gets_sql (backends.base.test_base.ExecuteWrapperTests.test_wrapper_gets_sql) ... ok 258s test_wrapper_invoked (backends.base.test_base.ExecuteWrapperTests.test_wrapper_invoked) ... ok 258s test_wrapper_invoked_many (backends.base.test_base.ExecuteWrapperTests.test_wrapper_invoked_many) ... ok 258s test_multi_database_init_connection_state_called_once (backends.base.test_base.MultiDatabaseTests.test_multi_database_init_connection_state_called_once) ... ok 258s test_allows_auto_pk_0 (backends.mysql.test_features.TestFeatures.test_allows_auto_pk_0) ... skipped 'MySQL tests' 258s test_allows_group_by_selected_pks (backends.mysql.test_features.TestFeatures.test_allows_group_by_selected_pks) ... skipped 'MySQL tests' 258s test_skip_locked_no_wait (backends.mysql.test_features.TestFeatures.test_skip_locked_no_wait) ... skipped 'MySQL tests' 258s test_supports_transactions (backends.mysql.test_features.TestFeatures.test_supports_transactions) 258s All storage engines except MyISAM support transactions. ... skipped 'MySQL tests' 258s test_parse_constraint_columns (backends.mysql.test_introspection.ParsingTests.test_parse_constraint_columns) ... skipped 'MySQL tests' 258s test_get_storage_engine (backends.mysql.test_introspection.StorageEngineTests.test_get_storage_engine) ... skipped 'MySQL tests' 258s test_distinct_on_fields (backends.base.test_operations.DatabaseOperationTests.test_distinct_on_fields) ... ok 258s test_subtract_temporals (backends.base.test_operations.DatabaseOperationTests.test_subtract_temporals) ... skipped 'Database has feature(s) supports_temporal_subtraction' 258s test_window_frame_raise_not_supported_error (backends.base.test_operations.DatabaseOperationTests.test_window_frame_raise_not_supported_error) ... skipped 'Database has feature(s) supports_over_clause' 258s test_quote_value (backends.mysql.test_schema.SchemaEditorTests.test_quote_value) ... skipped 'MySQL tests' 258s test_auto_is_null_auto_config (backends.mysql.tests.IsolationLevelTests.test_auto_is_null_auto_config) ... skipped 'MySQL tests' 258s test_connect_isolation_level (backends.mysql.tests.IsolationLevelTests.test_connect_isolation_level) ... skipped 'MySQL tests' 258s test_default_isolation_level (backends.mysql.tests.IsolationLevelTests.test_default_isolation_level) ... skipped 'MySQL tests' 258s test_isolation_level_validation (backends.mysql.tests.IsolationLevelTests.test_isolation_level_validation) ... skipped 'MySQL tests' 258s test_setting_isolation_level (backends.mysql.tests.IsolationLevelTests.test_setting_isolation_level) ... skipped 'MySQL tests' 258s test_uppercase_isolation_level (backends.mysql.tests.IsolationLevelTests.test_uppercase_isolation_level) ... skipped 'MySQL tests' 258s test_create_test_db (backends.oracle.test_creation.DatabaseCreationTests.test_create_test_db) ... skipped 'Oracle tests' 258s test_create_test_user (backends.oracle.test_creation.DatabaseCreationTests.test_create_test_user) ... skipped 'Oracle tests' 258s test_oracle_managed_files (backends.oracle.test_creation.DatabaseCreationTests.test_oracle_managed_files) ... skipped 'Oracle tests' 258s test_check_database_version_supported (backends.mysql.tests.Tests.test_check_database_version_supported) ... skipped 'MySQL tests' 258s test_boolean_constraints (backends.oracle.tests.Tests.test_boolean_constraints) 258s Boolean fields have check constraints on their values. ... skipped 'Oracle tests' 258s test_check_database_version_supported (backends.oracle.tests.Tests.test_check_database_version_supported) ... skipped 'Oracle tests' 258s test_cursor_var (backends.oracle.tests.Tests.test_cursor_var) 258s Cursor variables can be passed as query parameters. ... skipped 'Oracle tests' 258s test_dbms_session (backends.oracle.tests.Tests.test_dbms_session) 258s A stored procedure can be called through a cursor wrapper. ... skipped 'Oracle tests' 258s test_order_of_nls_parameters (backends.oracle.tests.Tests.test_order_of_nls_parameters) 258s An 'almost right' datetime works with configured NLS parameters ... skipped 'Oracle tests' 258s test_quote_name (backends.oracle.tests.Tests.test_quote_name) 258s '%' chars are escaped for query execution. ... skipped 'Oracle tests' 258s test_quote_name_db_table (backends.oracle.tests.Tests.test_quote_name_db_table) ... skipped 'Oracle tests' 258s test_get_sequences (backends.postgresql.test_introspection.DatabaseSequenceTests.test_get_sequences) ... skipped 'Test only for PostgreSQL' 258s test_get_sequences_old_serial (backends.postgresql.test_introspection.DatabaseSequenceTests.test_get_sequences_old_serial) ... skipped 'Test only for PostgreSQL' 258s test_closed_server_side_cursor (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_closed_server_side_cursor) ... skipped 'PostgreSQL tests' 258s test_server_side_cursor (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_server_side_cursor) ... skipped 'PostgreSQL tests' 258s test_server_side_cursor_many_cursors (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_server_side_cursor_many_cursors) ... skipped 'PostgreSQL tests' 258s test_server_side_cursors_setting (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_server_side_cursors_setting) ... skipped 'PostgreSQL tests' 258s test_values (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_values) ... skipped 'PostgreSQL tests' 258s test_values_list (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_values_list) ... skipped 'PostgreSQL tests' 258s test_values_list_fields_not_equal_to_names (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_values_list_fields_not_equal_to_names) ... skipped 'PostgreSQL tests' 258s test_values_list_flat (backends.postgresql.test_server_side_cursors.ServerSideCursorsPostgres.test_values_list_flat) ... skipped 'PostgreSQL tests' 258s test_check_database_version_supported (backends.postgresql.tests.Tests.test_check_database_version_supported) ... skipped 'PostgreSQL tests' 258s test_client_encoding_utf8_enforce (backends.postgresql.tests.Tests.test_client_encoding_utf8_enforce) ... skipped 'PostgreSQL tests' 258s test_compose_sql_when_no_connection (backends.postgresql.tests.Tests.test_compose_sql_when_no_connection) ... skipped 'PostgreSQL tests' 258s test_connect_and_rollback (backends.postgresql.tests.Tests.test_connect_and_rollback) 258s PostgreSQL shouldn't roll back SET TIME ZONE, even if the first ... skipped 'PostgreSQL tests' 258s test_connect_custom_cursor_factory (backends.postgresql.tests.Tests.test_connect_custom_cursor_factory) 258s A custom cursor factory can be configured with DATABASES["options"] ... skipped 'PostgreSQL tests' 258s test_connect_invalid_isolation_level (backends.postgresql.tests.Tests.test_connect_invalid_isolation_level) ... skipped 'PostgreSQL tests' 258s test_connect_isolation_level (backends.postgresql.tests.Tests.test_connect_isolation_level) 258s The transaction level can be configured with ... skipped 'PostgreSQL tests' 258s test_connect_no_is_usable_checks (backends.postgresql.tests.Tests.test_connect_no_is_usable_checks) ... skipped 'PostgreSQL tests' 258s test_connect_non_autocommit (backends.postgresql.tests.Tests.test_connect_non_autocommit) 258s The connection wrapper shouldn't believe that autocommit is enabled ... skipped 'PostgreSQL tests' 258s test_connect_role (backends.postgresql.tests.Tests.test_connect_role) 258s The session role can be configured with DATABASES ... skipped 'PostgreSQL tests' 258s test_connect_server_side_binding (backends.postgresql.tests.Tests.test_connect_server_side_binding) 258s The server-side parameters binding role can be enabled with DATABASES ... skipped 'PostgreSQL tests' 258s test_copy_cursors (backends.postgresql.tests.Tests.test_copy_cursors) ... skipped 'PostgreSQL tests' 258s test_copy_to_expert_cursors (backends.postgresql.tests.Tests.test_copy_to_expert_cursors) ... skipped 'PostgreSQL tests' 258s test_correct_extraction_psycopg_version (backends.postgresql.tests.Tests.test_correct_extraction_psycopg_version) ... skipped 'PostgreSQL tests' 258s test_database_name_empty (backends.postgresql.tests.Tests.test_database_name_empty) ... skipped 'PostgreSQL tests' 258s test_database_name_too_long (backends.postgresql.tests.Tests.test_database_name_too_long) ... skipped 'PostgreSQL tests' 258s test_get_database_version (backends.postgresql.tests.Tests.test_get_database_version) ... skipped 'PostgreSQL tests' 258s test_lookup_cast (backends.postgresql.tests.Tests.test_lookup_cast) ... skipped 'PostgreSQL tests' 258s test_lookup_cast_isnull_noop (backends.postgresql.tests.Tests.test_lookup_cast_isnull_noop) ... skipped 'PostgreSQL tests' 258s test_nodb_cursor (backends.postgresql.tests.Tests.test_nodb_cursor) 258s The _nodb_cursor() fallbacks to the default connection database when ... skipped 'PostgreSQL tests' 258s test_nodb_cursor_raises_postgres_authentication_failure (backends.postgresql.tests.Tests.test_nodb_cursor_raises_postgres_authentication_failure) 258s _nodb_cursor() re-raises authentication failure to the 'postgres' db ... skipped 'PostgreSQL tests' 258s test_nodb_cursor_reraise_exceptions (backends.postgresql.tests.Tests.test_nodb_cursor_reraise_exceptions) ... skipped 'PostgreSQL tests' 258s test_select_ascii_array (backends.postgresql.tests.Tests.test_select_ascii_array) ... skipped 'PostgreSQL tests' 258s test_select_unicode_array (backends.postgresql.tests.Tests.test_select_unicode_array) ... skipped 'PostgreSQL tests' 258s test_service_name (backends.postgresql.tests.Tests.test_service_name) ... skipped 'PostgreSQL tests' 258s test_service_name_default_db (backends.postgresql.tests.Tests.test_service_name_default_db) ... skipped 'PostgreSQL tests' 258s test_supports_json_field_operational_error (backends.sqlite.test_features.FeaturesTests.test_supports_json_field_operational_error) ... ok 258s test_get_primary_key_column (backends.sqlite.test_introspection.IntrospectionTests.test_get_primary_key_column) 258s Get the primary key column regardless of whether or not it has ... ok 258s test_get_primary_key_column_pk_constraint (backends.sqlite.test_introspection.IntrospectionTests.test_get_primary_key_column_pk_constraint) ... ok 259s test_check_and_unique_column (backends.sqlite.test_introspection.ParsingTests.test_check_and_unique_column) ... ok 259s test_check_column (backends.sqlite.test_introspection.ParsingTests.test_check_column) ... ok 259s test_check_column_with_operators_and_functions (backends.sqlite.test_introspection.ParsingTests.test_check_column_with_operators_and_functions) ... ok 259s test_check_constraint (backends.sqlite.test_introspection.ParsingTests.test_check_constraint) ... ok 259s test_unique_column (backends.sqlite.test_introspection.ParsingTests.test_unique_column) ... ok 259s test_unique_constraint (backends.sqlite.test_introspection.ParsingTests.test_unique_constraint) ... ok 259s test_unique_constraint_multicolumn (backends.sqlite.test_introspection.ParsingTests.test_unique_constraint_multicolumn) ... ok 259s test_sql_flush (backends.sqlite.test_operations.SQLiteOperationsTests.test_sql_flush) ... ok 259s test_sql_flush_allow_cascade (backends.sqlite.test_operations.SQLiteOperationsTests.test_sql_flush_allow_cascade) ... ok 259s test_sql_flush_sequences (backends.sqlite.test_operations.SQLiteOperationsTests.test_sql_flush_sequences) ... ok 259s test_sql_flush_sequences_allow_cascade (backends.sqlite.test_operations.SQLiteOperationsTests.test_sql_flush_sequences_allow_cascade) ... ok 259s test_parameter_escaping (backends.sqlite.tests.EscapingChecks.test_parameter_escaping) ... ok 259s test_parameter_escaping (backends.sqlite.tests.EscapingChecksDebug.test_parameter_escaping) ... ok 259s test_large_number_of_parameters (backends.sqlite.tests.LastExecutedQueryTest.test_large_number_of_parameters) ... ok 259s test_no_interpolation (backends.sqlite.tests.LastExecutedQueryTest.test_no_interpolation) ... ok 259s test_parameter_quoting (backends.sqlite.tests.LastExecutedQueryTest.test_parameter_quoting) ... ok 259s test_aggregation (backends.sqlite.tests.Tests.test_aggregation) 259s Raise NotSupportedError when aggregating on date/time fields. ... ok 259s test_check_database_version_supported (backends.sqlite.tests.Tests.test_check_database_version_supported) ... ok 259s test_distinct_aggregation (backends.sqlite.tests.Tests.test_distinct_aggregation) ... ok 259s test_distinct_aggregation_multiple_args_no_distinct (backends.sqlite.tests.Tests.test_distinct_aggregation_multiple_args_no_distinct) ... ok 259s test_memory_db_test_name (backends.sqlite.tests.Tests.test_memory_db_test_name) 259s A named in-memory db should be allowed where supported. ... ok 259s test_pathlib_name (backends.sqlite.tests.Tests.test_pathlib_name) ... ok 259s test_regexp_function (backends.sqlite.tests.Tests.test_regexp_function) ... ok 259s test_django_date_extract (backends.tests.DateQuotingTest.test_django_date_extract) 259s Test the custom ``django_date_extract method``, in particular against fields ... ok 259s test_django_date_trunc (backends.tests.DateQuotingTest.test_django_date_trunc) 259s Test the custom ``django_date_trunc method``, in particular against ... ok 259s test_can_reference_existent (backends.tests.DBConstraintTestCase.test_can_reference_existent) ... ok 259s test_can_reference_non_existent (backends.tests.DBConstraintTestCase.test_can_reference_non_existent) ... ok 259s test_many_to_many (backends.tests.DBConstraintTestCase.test_many_to_many) ... ok 259s test_parameter_escaping (backends.tests.EscapingChecks.test_parameter_escaping) ... ok 259s test_paramless_no_escaping (backends.tests.EscapingChecks.test_paramless_no_escaping) ... ok 259s test_parameter_escaping (backends.tests.EscapingChecksDebug.test_parameter_escaping) ... ok 259s test_paramless_no_escaping (backends.tests.EscapingChecksDebug.test_paramless_no_escaping) ... ok 259s test_zero_as_autoval (backends.tests.MySQLPKZeroTests.test_zero_as_autoval) ... skipped 'Database has feature(s) allows_auto_pk_0' 259s test_debug_sql (backends.tests.LastExecutedQueryTest.test_debug_sql) ... ok 259s test_last_executed_query (backends.tests.LastExecutedQueryTest.test_last_executed_query) ... ok 259s test_last_executed_query_dict (backends.tests.LastExecutedQueryTest.test_last_executed_query_dict) ... ok 259s test_last_executed_query_dict_overlap_keys (backends.tests.LastExecutedQueryTest.test_last_executed_query_dict_overlap_keys) ... ok 259s test_last_executed_query_with_duplicate_params (backends.tests.LastExecutedQueryTest.test_last_executed_query_with_duplicate_params) ... ok 259s test_last_executed_query_without_previous_query (backends.tests.LastExecutedQueryTest.test_last_executed_query_without_previous_query) 259s last_executed_query should not raise an exception even if no previous ... ok 259s test_query_encoding (backends.tests.LastExecutedQueryTest.test_query_encoding) 259s last_executed_query() returns a string. ... ok 259s test_bad_parameter_count (backends.tests.ParameterHandlingTest.test_bad_parameter_count) 259s An executemany call with too many/not enough parameters will raise an ... ok 259s test_generic_relation (backends.tests.SequenceResetTest.test_generic_relation) 259s Sequence names are correct when resetting generic relations (Ref #13941) ... ok 259s test_modelchoicefield (forms_tests.tests.test_error_messages.ModelChoiceFieldErrorMessagesTestCase.test_modelchoicefield) ... ok 259s test_modelchoicefield_value_placeholder (forms_tests.tests.test_error_messages.ModelChoiceFieldErrorMessagesTestCase.test_modelchoicefield_value_placeholder) ... ok 259s test_boundary_conditions (forms_tests.tests.tests.FormsModelTestCase.test_boundary_conditions) ... ok 259s test_formfield_initial (forms_tests.tests.tests.FormsModelTestCase.test_formfield_initial) ... ok 259s test_unicode_filename (forms_tests.tests.tests.FormsModelTestCase.test_unicode_filename) ... ok 259s test_empty_field_char (forms_tests.tests.tests.EmptyLabelTestCase.test_empty_field_char) ... ok 259s test_empty_field_char_none (forms_tests.tests.tests.EmptyLabelTestCase.test_empty_field_char_none) ... ok 259s test_empty_field_integer (forms_tests.tests.tests.EmptyLabelTestCase.test_empty_field_integer) ... ok 259s test_get_display_value_on_none (forms_tests.tests.tests.EmptyLabelTestCase.test_get_display_value_on_none) ... ok 259s test_html_rendering_of_prepopulated_models (forms_tests.tests.tests.EmptyLabelTestCase.test_html_rendering_of_prepopulated_models) ... ok 259s test_save_empty_label_forms (forms_tests.tests.tests.EmptyLabelTestCase.test_save_empty_label_forms) ... ok 259s test_m2m_field_exclusion (forms_tests.tests.tests.ManyToManyExclusionTestCase.test_m2m_field_exclusion) ... ok 259s test_empty_field_char (forms_tests.tests.tests.Jinja2EmptyLabelTestCase.test_empty_field_char) ... ok 259s test_empty_field_char_none (forms_tests.tests.tests.Jinja2EmptyLabelTestCase.test_empty_field_char_none) ... ok 259s test_empty_field_integer (forms_tests.tests.tests.Jinja2EmptyLabelTestCase.test_empty_field_integer) ... ok 259s test_get_display_value_on_none (forms_tests.tests.tests.Jinja2EmptyLabelTestCase.test_get_display_value_on_none) ... ok 259s test_html_rendering_of_prepopulated_models (forms_tests.tests.tests.Jinja2EmptyLabelTestCase.test_html_rendering_of_prepopulated_models) ... ok 259s test_save_empty_label_forms (forms_tests.tests.tests.Jinja2EmptyLabelTestCase.test_save_empty_label_forms) ... ok 259s test_callable_default_hidden_widget_value_not_overridden (forms_tests.tests.tests.ModelFormCallableModelDefault.test_callable_default_hidden_widget_value_not_overridden) ... ok 259s test_callable_initial_value (forms_tests.tests.tests.ModelFormCallableModelDefault.test_callable_initial_value) 259s The initial value for a callable default returning a queryset is the ... ok 259s test_initial_instance_value (forms_tests.tests.tests.ModelFormCallableModelDefault.test_initial_instance_value) 259s Initial instances for model fields may also be instances (refs #7287) ... ok 259s test_no_empty_option (forms_tests.tests.tests.ModelFormCallableModelDefault.test_no_empty_option) 259s If a model's ForeignKey has blank=False and a default, no empty option ... ok 259s test_empty_queryset_return (forms_tests.tests.tests.TestTicket14567.test_empty_queryset_return) 259s If a model's ManyToManyField has blank=True and is saved with no data, ... ok 259s test_set_order (order_with_respect_to.tests.TestOrderWithRespectToOneToOnePK.test_set_order) ... ok 260s test_change_ordering (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_change_ordering) ... ok 260s test_database_routing (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_database_routing) ... ok 260s test_default_to_insertion_order (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_default_to_insertion_order) ... ok 260s test_delete_and_insert (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_delete_and_insert) ... ok 260s test_item_ordering (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_item_ordering) ... ok 260s test_previous_and_next_in_order (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_previous_and_next_in_order) ... ok 260s test_recursive_ordering (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_recursive_ordering) ... ok 260s test_set_order_unrelated_object (order_with_respect_to.tests.OrderWithRespectToBaseTests.test_set_order_unrelated_object) 260s An answer that's not related isn't updated. ... ok 260s test_cast_from_db_date_to_datetime (db_functions.comparison.test_cast.CastTests.test_cast_from_db_date_to_datetime) ... ok 260s test_cast_from_db_datetime_to_date (db_functions.comparison.test_cast.CastTests.test_cast_from_db_datetime_to_date) ... ok 260s test_cast_from_db_datetime_to_date_group_by (db_functions.comparison.test_cast.CastTests.test_cast_from_db_datetime_to_date_group_by) ... ok 260s test_cast_from_db_datetime_to_time (db_functions.comparison.test_cast.CastTests.test_cast_from_db_datetime_to_time) ... ok 260s test_cast_from_field (db_functions.comparison.test_cast.CastTests.test_cast_from_field) ... ok 260s test_cast_from_python (db_functions.comparison.test_cast.CastTests.test_cast_from_python) ... ok 260s test_cast_from_python_to_date (db_functions.comparison.test_cast.CastTests.test_cast_from_python_to_date) ... ok 260s test_cast_from_python_to_datetime (db_functions.comparison.test_cast.CastTests.test_cast_from_python_to_datetime) ... ok 260s test_cast_from_value (db_functions.comparison.test_cast.CastTests.test_cast_from_value) ... ok 260s test_cast_to_char_field_with_max_length (db_functions.comparison.test_cast.CastTests.test_cast_to_char_field_with_max_length) ... skipped "Database doesn't support feature(s): supports_cast_with_precision" 260s test_cast_to_char_field_without_max_length (db_functions.comparison.test_cast.CastTests.test_cast_to_char_field_without_max_length) ... ok 260s test_cast_to_decimal_field (db_functions.comparison.test_cast.CastTests.test_cast_to_decimal_field) ... skipped "Database doesn't support feature(s): supports_cast_with_precision" 260s test_cast_to_duration (db_functions.comparison.test_cast.CastTests.test_cast_to_duration) ... ok 260s test_cast_to_integer (db_functions.comparison.test_cast.CastTests.test_cast_to_integer) ... ok 260s test_cast_to_text_field (db_functions.comparison.test_cast.CastTests.test_cast_to_text_field) ... ok 260s test_expression_wrapped_with_parentheses_on_postgresql (db_functions.comparison.test_cast.CastTests.test_expression_wrapped_with_parentheses_on_postgresql) 260s The SQL for the Cast expression is wrapped with parentheses in case ... skipped 'PostgreSQL test' 260s test_basic (db_functions.comparison.test_coalesce.CoalesceTests.test_basic) ... ok 260s test_empty_queryset (db_functions.comparison.test_coalesce.CoalesceTests.test_empty_queryset) ... ok 260s test_gt_two_expressions (db_functions.comparison.test_coalesce.CoalesceTests.test_gt_two_expressions) ... ok 260s test_mixed_values (db_functions.comparison.test_coalesce.CoalesceTests.test_mixed_values) ... ok 260s test_ordering (db_functions.comparison.test_coalesce.CoalesceTests.test_ordering) ... ok 260s test_collate_filter_ci (db_functions.comparison.test_collate.CollateTests.test_collate_filter_ci) ... ok 260s test_collate_order_by_cs (db_functions.comparison.test_collate.CollateTests.test_collate_order_by_cs) ... ok 260s test_invalid_collation (db_functions.comparison.test_collate.CollateTests.test_invalid_collation) ... ok 260s test_language_collation_order_by (db_functions.comparison.test_collate.CollateTests.test_language_collation_order_by) ... skipped 'This backend does not support language collations.' 260s test_not_supported (db_functions.comparison.test_json_object.JSONObjectNotSupportedTests.test_not_supported) ... skipped 'Database has feature(s) has_json_object_function' 260s test_all_null (db_functions.comparison.test_greatest.GreatestTests.test_all_null) ... ok 260s test_basic (db_functions.comparison.test_greatest.GreatestTests.test_basic) ... ok 260s test_coalesce_workaround (db_functions.comparison.test_greatest.GreatestTests.test_coalesce_workaround) ... ok 260s test_coalesce_workaround_mysql (db_functions.comparison.test_greatest.GreatestTests.test_coalesce_workaround_mysql) ... skipped 'MySQL-specific workaround' 260s test_decimal_filter (db_functions.comparison.test_greatest.GreatestTests.test_decimal_filter) ... ok 260s test_ignores_null (db_functions.comparison.test_greatest.GreatestTests.test_ignores_null) ... skipped "Database doesn't support feature(s): greatest_least_ignores_nulls" 260s test_one_expressions (db_functions.comparison.test_greatest.GreatestTests.test_one_expressions) ... ok 260s test_propagates_null (db_functions.comparison.test_greatest.GreatestTests.test_propagates_null) ... ok 260s test_related_field (db_functions.comparison.test_greatest.GreatestTests.test_related_field) ... ok 260s test_update (db_functions.comparison.test_greatest.GreatestTests.test_update) ... ok 260s test_basic (db_functions.comparison.test_json_object.JSONObjectTests.test_basic) ... ok 260s test_empty (db_functions.comparison.test_json_object.JSONObjectTests.test_empty) ... ok 260s test_expressions (db_functions.comparison.test_json_object.JSONObjectTests.test_expressions) ... ok 260s test_nested_empty_json_object (db_functions.comparison.test_json_object.JSONObjectTests.test_nested_empty_json_object) ... ok 260s test_nested_json_object (db_functions.comparison.test_json_object.JSONObjectTests.test_nested_json_object) ... ok 260s test_textfield (db_functions.comparison.test_json_object.JSONObjectTests.test_textfield) ... ok 260s test_basic (db_functions.comparison.test_nullif.NullIfTests.test_basic) ... ok 260s test_null_argument (db_functions.comparison.test_nullif.NullIfTests.test_null_argument) ... ok 260s test_null_literal (db_functions.comparison.test_nullif.NullIfTests.test_null_literal) ... skipped 'Oracle specific test for NULL-literal' 260s test_too_few_args (db_functions.comparison.test_nullif.NullIfTests.test_too_few_args) ... ok 260s test_all_null (db_functions.comparison.test_least.LeastTests.test_all_null) ... ok 260s test_basic (db_functions.comparison.test_least.LeastTests.test_basic) ... ok 260s test_coalesce_workaround (db_functions.comparison.test_least.LeastTests.test_coalesce_workaround) ... ok 260s test_coalesce_workaround_mysql (db_functions.comparison.test_least.LeastTests.test_coalesce_workaround_mysql) ... skipped 'MySQL-specific workaround' 260s test_decimal_filter (db_functions.comparison.test_least.LeastTests.test_decimal_filter) ... ok 260s test_ignores_null (db_functions.comparison.test_least.LeastTests.test_ignores_null) ... skipped "Database doesn't support feature(s): greatest_least_ignores_nulls" 260s test_one_expressions (db_functions.comparison.test_least.LeastTests.test_one_expressions) ... ok 260s test_propagates_null (db_functions.comparison.test_least.LeastTests.test_propagates_null) ... ok 260s test_related_field (db_functions.comparison.test_least.LeastTests.test_related_field) ... ok 260s test_update (db_functions.comparison.test_least.LeastTests.test_update) ... ok 262s test_extract_day_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_day_func) ... ok 262s test_extract_duration (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_duration) ... skipped "Database doesn't support feature(s): has_native_duration_field" 262s test_extract_duration_unsupported_lookups (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_duration_unsupported_lookups) ... ok 262s test_extract_duration_without_native_duration_field (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_duration_without_native_duration_field) ... ok 262s test_extract_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_func) ... ok 262s test_extract_hour_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_hour_func) ... ok 262s test_extract_iso_weekday_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_iso_weekday_func) ... ok 262s test_extract_iso_year_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_iso_year_func) ... ok 262s test_extract_iso_year_func_boundaries (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_iso_year_func_boundaries) ... ok 262s test_extract_lookup_name_sql_injection (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_lookup_name_sql_injection) ... ok 262s test_extract_minute_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_minute_func) ... ok 262s test_extract_month_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_month_func) ... ok 262s test_extract_none (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_none) ... ok 262s test_extract_outerref (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_outerref) ... ok 262s test_extract_outerref_validation (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_outerref_validation) ... ok 262s test_extract_quarter_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_quarter_func) ... ok 262s test_extract_quarter_func_boundaries (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_quarter_func_boundaries) ... ok 262s test_extract_second_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_second_func) ... ok 262s test_extract_second_func_no_fractional (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_second_func_no_fractional) ... ok 262s test_extract_week_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_week_func) ... ok 262s test_extract_week_func_boundaries (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_week_func_boundaries) ... ok 262s test_extract_weekday_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_weekday_func) ... ok 262s test_extract_year_exact_lookup (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_exact_lookup) 262s Extract year uses a BETWEEN filter to compare the year to allow indexes ... ok 262s test_extract_year_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_func) ... ok 262s test_extract_year_greaterthan_lookup (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_greaterthan_lookup) ... ok 262s test_extract_year_lessthan_lookup (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_extract_year_lessthan_lookup) ... ok 262s test_trunc_date_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_date_func) ... ok 262s test_trunc_date_none (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_date_none) ... ok 262s test_trunc_day_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_day_func) ... ok 262s test_trunc_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_func) ... ok 262s test_trunc_hour_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_hour_func) ... ok 262s test_trunc_invalid_arguments (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_invalid_arguments) ... ok 262s test_trunc_lookup_name_sql_injection (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_lookup_name_sql_injection) ... ok 262s test_trunc_minute_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_minute_func) ... ok 262s test_trunc_month_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_month_func) ... ok 262s test_trunc_none (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_none) ... ok 262s test_trunc_quarter_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_quarter_func) ... ok 262s test_trunc_second_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_second_func) ... ok 262s test_trunc_subquery_with_parameters (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_subquery_with_parameters) ... ok 262s test_trunc_time_comparison (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_time_comparison) ... ok 262s test_trunc_time_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_time_func) ... ok 262s test_trunc_time_none (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_time_none) ... ok 262s test_trunc_week (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_week) ... ok 262s test_trunc_week_before_1000 (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_week_before_1000) ... ok 262s test_trunc_week_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_week_func) ... ok 262s test_trunc_year_func (db_functions.datetime.test_extract_trunc.DateFunctionTests.test_trunc_year_func) ... ok 262s test_basic (db_functions.datetime.test_now.NowTests.test_basic) ... ok 262s test_microseconds (db_functions.datetime.test_now.NowTests.test_microseconds) ... ok 262s test_extract_day_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_day_func) ... ok 262s test_extract_duration (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_duration) ... skipped "Database doesn't support feature(s): has_native_duration_field" 262s test_extract_duration_unsupported_lookups (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_duration_unsupported_lookups) ... ok 262s test_extract_duration_without_native_duration_field (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_duration_without_native_duration_field) ... ok 262s test_extract_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_func) ... ok 262s test_extract_func_explicit_timezone_priority (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_func_explicit_timezone_priority) ... ok 262s test_extract_func_with_timezone (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_func_with_timezone) ... ok 262s test_extract_func_with_timezone_minus_no_offset (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_func_with_timezone_minus_no_offset) ... ok 262s test_extract_hour_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_hour_func) ... ok 262s test_extract_invalid_field_with_timezone (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_invalid_field_with_timezone) ... ok 262s test_extract_iso_weekday_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_iso_weekday_func) ... ok 262s test_extract_iso_year_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_iso_year_func) ... ok 262s test_extract_iso_year_func_boundaries (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_iso_year_func_boundaries) ... ok 262s test_extract_lookup_name_sql_injection (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_lookup_name_sql_injection) ... ok 262s test_extract_minute_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_minute_func) ... ok 262s test_extract_month_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_month_func) ... ok 262s test_extract_none (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_none) ... ok 262s test_extract_outerref (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_outerref) ... ok 262s test_extract_outerref_validation (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_outerref_validation) ... ok 262s test_extract_quarter_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_quarter_func) ... ok 262s test_extract_quarter_func_boundaries (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_quarter_func_boundaries) ... ok 262s test_extract_second_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_second_func) ... ok 262s test_extract_second_func_no_fractional (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_second_func_no_fractional) ... ok 262s test_extract_week_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_week_func) ... ok 262s test_extract_week_func_boundaries (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_week_func_boundaries) ... ok 262s test_extract_weekday_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_weekday_func) ... ok 262s test_extract_year_exact_lookup (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_exact_lookup) 262s Extract year uses a BETWEEN filter to compare the year to allow indexes ... ok 262s test_extract_year_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_func) ... ok 262s test_extract_year_greaterthan_lookup (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_greaterthan_lookup) ... ok 262s test_extract_year_lessthan_lookup (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_extract_year_lessthan_lookup) ... ok 262s test_trunc_ambiguous_and_invalid_times (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_ambiguous_and_invalid_times) ... ok 262s test_trunc_date_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_date_func) ... ok 262s test_trunc_date_none (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_date_none) ... ok 262s test_trunc_day_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_day_func) ... ok 262s test_trunc_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_func) ... ok 262s test_trunc_func_with_timezone (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_func_with_timezone) 262s If the truncated datetime transitions to a different offset (daylight ... ok 262s test_trunc_hour_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_hour_func) ... ok 262s test_trunc_invalid_arguments (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_invalid_arguments) ... ok 262s test_trunc_invalid_field_with_timezone (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_invalid_field_with_timezone) ... ok 262s test_trunc_lookup_name_sql_injection (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_lookup_name_sql_injection) ... ok 262s test_trunc_minute_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_minute_func) ... ok 262s test_trunc_month_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_month_func) ... ok 262s test_trunc_none (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_none) ... ok 262s test_trunc_quarter_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_quarter_func) ... ok 262s test_trunc_second_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_second_func) ... ok 262s test_trunc_subquery_with_parameters (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_subquery_with_parameters) ... ok 262s test_trunc_time_comparison (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_time_comparison) ... ok 262s test_trunc_time_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_time_func) ... ok 262s test_trunc_time_none (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_time_none) ... ok 262s test_trunc_timezone_applied_before_truncation (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_timezone_applied_before_truncation) ... ok 262s test_trunc_week (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_week) ... ok 262s test_trunc_week_before_1000 (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_week_before_1000) ... ok 262s test_trunc_week_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_week_func) ... ok 262s test_trunc_year_func (db_functions.datetime.test_extract_trunc.DateFunctionWithTimeZoneTests.test_trunc_year_func) ... ok 262s test_decimal (db_functions.math.test_abs.AbsTests.test_decimal) ... ok 262s test_float (db_functions.math.test_abs.AbsTests.test_float) ... ok 262s test_integer (db_functions.math.test_abs.AbsTests.test_integer) ... ok 262s test_null (db_functions.math.test_abs.AbsTests.test_null) ... ok 262s test_transform (db_functions.math.test_abs.AbsTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_acos.ACosTests.test_decimal) ... ok 262s test_float (db_functions.math.test_acos.ACosTests.test_float) ... ok 262s test_integer (db_functions.math.test_acos.ACosTests.test_integer) ... ok 262s test_null (db_functions.math.test_acos.ACosTests.test_null) ... ok 262s test_transform (db_functions.math.test_acos.ACosTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_asin.ASinTests.test_decimal) ... ok 262s test_float (db_functions.math.test_asin.ASinTests.test_float) ... ok 262s test_integer (db_functions.math.test_asin.ASinTests.test_integer) ... ok 262s test_null (db_functions.math.test_asin.ASinTests.test_null) ... ok 262s test_transform (db_functions.math.test_asin.ASinTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_atan.ATanTests.test_decimal) ... ok 262s test_float (db_functions.math.test_atan.ATanTests.test_float) ... ok 262s test_integer (db_functions.math.test_atan.ATanTests.test_integer) ... ok 262s test_null (db_functions.math.test_atan.ATanTests.test_null) ... ok 262s test_transform (db_functions.math.test_atan.ATanTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_atan2.ATan2Tests.test_decimal) ... ok 262s test_float (db_functions.math.test_atan2.ATan2Tests.test_float) ... ok 262s test_integer (db_functions.math.test_atan2.ATan2Tests.test_integer) ... ok 262s test_null (db_functions.math.test_atan2.ATan2Tests.test_null) ... ok 262s test_decimal (db_functions.math.test_ceil.CeilTests.test_decimal) ... ok 262s test_float (db_functions.math.test_ceil.CeilTests.test_float) ... ok 262s test_integer (db_functions.math.test_ceil.CeilTests.test_integer) ... ok 262s test_null (db_functions.math.test_ceil.CeilTests.test_null) ... ok 262s test_transform (db_functions.math.test_ceil.CeilTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_cos.CosTests.test_decimal) ... ok 262s test_float (db_functions.math.test_cos.CosTests.test_float) ... ok 262s test_integer (db_functions.math.test_cos.CosTests.test_integer) ... ok 262s test_null (db_functions.math.test_cos.CosTests.test_null) ... ok 262s test_transform (db_functions.math.test_cos.CosTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_degrees.DegreesTests.test_decimal) ... ok 262s test_float (db_functions.math.test_degrees.DegreesTests.test_float) ... ok 262s test_integer (db_functions.math.test_degrees.DegreesTests.test_integer) ... ok 262s test_null (db_functions.math.test_degrees.DegreesTests.test_null) ... ok 262s test_transform (db_functions.math.test_degrees.DegreesTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_cot.CotTests.test_decimal) ... ok 262s test_float (db_functions.math.test_cot.CotTests.test_float) ... ok 262s test_integer (db_functions.math.test_cot.CotTests.test_integer) ... ok 262s test_null (db_functions.math.test_cot.CotTests.test_null) ... ok 262s test_transform (db_functions.math.test_cot.CotTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_floor.FloorTests.test_decimal) ... ok 262s test_float (db_functions.math.test_floor.FloorTests.test_float) ... ok 262s test_integer (db_functions.math.test_floor.FloorTests.test_integer) ... ok 262s test_null (db_functions.math.test_floor.FloorTests.test_null) ... ok 262s test_transform (db_functions.math.test_floor.FloorTests.test_transform) ... ok 262s test_decimal (db_functions.math.test_exp.ExpTests.test_decimal) ... ok 262s test_float (db_functions.math.test_exp.ExpTests.test_float) ... ok 262s test_integer (db_functions.math.test_exp.ExpTests.test_integer) ... ok 262s test_null (db_functions.math.test_exp.ExpTests.test_null) ... ok 262s test_transform (db_functions.math.test_exp.ExpTests.test_transform) ... ok 263s test_decimal (db_functions.math.test_log.LogTests.test_decimal) ... ok 263s test_float (db_functions.math.test_log.LogTests.test_float) ... ok 263s test_integer (db_functions.math.test_log.LogTests.test_integer) ... ok 263s test_null (db_functions.math.test_log.LogTests.test_null) ... ok 263s test_decimal (db_functions.math.test_ln.LnTests.test_decimal) ... ok 263s test_float (db_functions.math.test_ln.LnTests.test_float) ... ok 263s test_integer (db_functions.math.test_ln.LnTests.test_integer) ... ok 263s test_null (db_functions.math.test_ln.LnTests.test_null) ... ok 263s test_transform (db_functions.math.test_ln.LnTests.test_transform) ... ok 263s test (db_functions.math.test_pi.PiTests.test) ... ok 263s test_decimal (db_functions.math.test_mod.ModTests.test_decimal) ... ok 263s test_float (db_functions.math.test_mod.ModTests.test_float) ... ok 263s test_integer (db_functions.math.test_mod.ModTests.test_integer) ... ok 263s test_null (db_functions.math.test_mod.ModTests.test_null) ... ok 263s test_decimal (db_functions.math.test_power.PowerTests.test_decimal) ... ok 263s test_float (db_functions.math.test_power.PowerTests.test_float) ... ok 263s test_integer (db_functions.math.test_power.PowerTests.test_integer) ... ok 263s test_null (db_functions.math.test_power.PowerTests.test_null) ... ok 263s test (db_functions.math.test_random.RandomTests.test) ... ok 263s test_decimal (db_functions.math.test_radians.RadiansTests.test_decimal) ... ok 263s test_float (db_functions.math.test_radians.RadiansTests.test_float) ... ok 263s test_integer (db_functions.math.test_radians.RadiansTests.test_integer) ... ok 263s test_null (db_functions.math.test_radians.RadiansTests.test_null) ... ok 263s test_transform (db_functions.math.test_radians.RadiansTests.test_transform) ... ok 263s test_decimal (db_functions.math.test_sign.SignTests.test_decimal) ... ok 263s test_float (db_functions.math.test_sign.SignTests.test_float) ... ok 263s test_integer (db_functions.math.test_sign.SignTests.test_integer) ... ok 263s test_null (db_functions.math.test_sign.SignTests.test_null) ... ok 263s test_transform (db_functions.math.test_sign.SignTests.test_transform) ... ok 263s test_decimal (db_functions.math.test_round.RoundTests.test_decimal) ... ok 263s test_decimal_with_negative_precision (db_functions.math.test_round.RoundTests.test_decimal_with_negative_precision) ... skipped "SQLite doesn't support negative precision for ROUND()." 263s test_decimal_with_precision (db_functions.math.test_round.RoundTests.test_decimal_with_precision) ... ok 263s test_float (db_functions.math.test_round.RoundTests.test_float) ... ok 263s test_float_with_negative_precision (db_functions.math.test_round.RoundTests.test_float_with_negative_precision) ... skipped "SQLite doesn't support negative precision for ROUND()." 263s test_float_with_precision (db_functions.math.test_round.RoundTests.test_float_with_precision) ... ok 263s test_integer (db_functions.math.test_round.RoundTests.test_integer) ... ok 263s test_integer_with_negative_precision (db_functions.math.test_round.RoundTests.test_integer_with_negative_precision) ... skipped "SQLite doesn't support negative precision for ROUND()." 263s test_integer_with_precision (db_functions.math.test_round.RoundTests.test_integer_with_precision) ... ok 263s test_null (db_functions.math.test_round.RoundTests.test_null) ... ok 263s test_null_with_negative_precision (db_functions.math.test_round.RoundTests.test_null_with_negative_precision) ... skipped "SQLite doesn't support negative precision for ROUND()." 263s test_null_with_precision (db_functions.math.test_round.RoundTests.test_null_with_precision) ... ok 263s test_transform (db_functions.math.test_round.RoundTests.test_transform) ... ok 263s test_unsupported_negative_precision (db_functions.math.test_round.RoundTests.test_unsupported_negative_precision) ... ok 263s test_decimal (db_functions.math.test_sin.SinTests.test_decimal) ... ok 263s test_float (db_functions.math.test_sin.SinTests.test_float) ... ok 263s test_integer (db_functions.math.test_sin.SinTests.test_integer) ... ok 263s test_null (db_functions.math.test_sin.SinTests.test_null) ... ok 263s test_transform (db_functions.math.test_sin.SinTests.test_transform) ... ok 263s test_decimal (db_functions.math.test_sqrt.SqrtTests.test_decimal) ... ok 263s test_float (db_functions.math.test_sqrt.SqrtTests.test_float) ... ok 263s test_integer (db_functions.math.test_sqrt.SqrtTests.test_integer) ... ok 263s test_null (db_functions.math.test_sqrt.SqrtTests.test_null) ... ok 263s test_transform (db_functions.math.test_sqrt.SqrtTests.test_transform) ... ok 263s test_decimal (db_functions.math.test_tan.TanTests.test_decimal) ... ok 263s test_float (db_functions.math.test_tan.TanTests.test_float) ... ok 263s test_integer (db_functions.math.test_tan.TanTests.test_integer) ... ok 263s test_null (db_functions.math.test_tan.TanTests.test_null) ... ok 263s test_transform (db_functions.math.test_tan.TanTests.test_transform) ... ok 263s test_func_transform_bilateral (db_functions.tests.FunctionTests.test_func_transform_bilateral) ... ok 263s test_func_transform_bilateral_multivalue (db_functions.tests.FunctionTests.test_func_transform_bilateral_multivalue) ... ok 263s test_function_as_filter (db_functions.tests.FunctionTests.test_function_as_filter) ... ok 263s test_nested_function_ordering (db_functions.tests.FunctionTests.test_nested_function_ordering) ... ok 264s test_basic (db_functions.text.test_chr.ChrTests.test_basic) ... ok 264s test_non_ascii (db_functions.text.test_chr.ChrTests.test_non_ascii) ... ok 264s test_transform (db_functions.text.test_chr.ChrTests.test_transform) ... ok 264s test_basic (db_functions.text.test_concat.ConcatTests.test_basic) ... ok 264s test_coalesce_idempotent (db_functions.text.test_concat.ConcatTests.test_coalesce_idempotent) ... ok 264s test_gt_two_expressions (db_functions.text.test_concat.ConcatTests.test_gt_two_expressions) ... ok 264s test_many (db_functions.text.test_concat.ConcatTests.test_many) ... ok 264s test_mixed_char_text (db_functions.text.test_concat.ConcatTests.test_mixed_char_text) ... ok 264s test_sql_generation_idempotency (db_functions.text.test_concat.ConcatTests.test_sql_generation_idempotency) ... ok 264s test_basic (db_functions.text.test_left.LeftTests.test_basic) ... ok 264s test_expressions (db_functions.text.test_left.LeftTests.test_expressions) ... ok 264s test_invalid_length (db_functions.text.test_left.LeftTests.test_invalid_length) ... ok 264s test_basic (db_functions.text.test_length.LengthTests.test_basic) ... ok 264s test_ordering (db_functions.text.test_length.LengthTests.test_ordering) ... ok 264s test_transform (db_functions.text.test_length.LengthTests.test_transform) ... ok 264s test_basic (db_functions.text.test_lower.LowerTests.test_basic) ... ok 264s test_num_args (db_functions.text.test_lower.LowerTests.test_num_args) ... ok 264s test_transform (db_functions.text.test_lower.LowerTests.test_transform) ... ok 264s test_basic (db_functions.text.test_md5.MD5Tests.test_basic) ... ok 264s test_transform (db_functions.text.test_md5.MD5Tests.test_transform) ... ok 264s test_basic (db_functions.text.test_ord.OrdTests.test_basic) ... ok 264s test_transform (db_functions.text.test_ord.OrdTests.test_transform) ... ok 264s test_combined_with_length (db_functions.text.test_pad.PadTests.test_combined_with_length) ... ok 264s test_pad (db_functions.text.test_pad.PadTests.test_pad) ... ok 264s test_pad_negative_length (db_functions.text.test_pad.PadTests.test_pad_negative_length) ... ok 264s test_basic (db_functions.text.test_repeat.RepeatTests.test_basic) ... ok 264s test_negative_number (db_functions.text.test_repeat.RepeatTests.test_negative_number) ... ok 264s test_basic (db_functions.text.test_reverse.ReverseTests.test_basic) ... ok 264s test_expressions (db_functions.text.test_reverse.ReverseTests.test_expressions) ... ok 264s test_null (db_functions.text.test_reverse.ReverseTests.test_null) ... ok 264s test_transform (db_functions.text.test_reverse.ReverseTests.test_transform) ... ok 264s test_case_sensitive (db_functions.text.test_replace.ReplaceTests.test_case_sensitive) ... ok 264s test_replace_expression (db_functions.text.test_replace.ReplaceTests.test_replace_expression) ... ok 264s test_replace_with_default_arg (db_functions.text.test_replace.ReplaceTests.test_replace_with_default_arg) ... ok 264s test_replace_with_empty_string (db_functions.text.test_replace.ReplaceTests.test_replace_with_empty_string) ... ok 264s test_update (db_functions.text.test_replace.ReplaceTests.test_update) ... ok 264s test_basic (db_functions.text.test_sha1.SHA1Tests.test_basic) ... ok 264s test_transform (db_functions.text.test_sha1.SHA1Tests.test_transform) ... ok 264s test_basic (db_functions.text.test_right.RightTests.test_basic) ... ok 264s test_expressions (db_functions.text.test_right.RightTests.test_expressions) ... ok 264s test_invalid_length (db_functions.text.test_right.RightTests.test_invalid_length) ... ok 264s test_basic (db_functions.text.test_sha224.SHA224Tests.test_basic) ... ok 264s test_transform (db_functions.text.test_sha224.SHA224Tests.test_transform) ... ok 264s test_unsupported (db_functions.text.test_sha224.SHA224Tests.test_unsupported) ... skipped "Oracle doesn't support SHA224." 264s test_basic (db_functions.text.test_sha384.SHA384Tests.test_basic) ... ok 264s test_transform (db_functions.text.test_sha384.SHA384Tests.test_transform) ... ok 264s test_basic (db_functions.text.test_sha512.SHA512Tests.test_basic) ... ok 264s test_transform (db_functions.text.test_sha512.SHA512Tests.test_transform) ... ok 264s test_basic (db_functions.text.test_sha256.SHA256Tests.test_basic) ... ok 264s test_transform (db_functions.text.test_sha256.SHA256Tests.test_transform) ... ok 264s test_annotate_charfield (db_functions.text.test_strindex.StrIndexTests.test_annotate_charfield) ... ok 264s test_annotate_textfield (db_functions.text.test_strindex.StrIndexTests.test_annotate_textfield) ... ok 264s test_filtering (db_functions.text.test_strindex.StrIndexTests.test_filtering) ... ok 264s test_order_by (db_functions.text.test_strindex.StrIndexTests.test_order_by) ... ok 264s test_unicode_values (db_functions.text.test_strindex.StrIndexTests.test_unicode_values) ... ok 264s test_basic (db_functions.text.test_substr.SubstrTests.test_basic) ... ok 264s test_expressions (db_functions.text.test_substr.SubstrTests.test_expressions) ... ok 264s test_pos_gt_zero (db_functions.text.test_substr.SubstrTests.test_pos_gt_zero) ... ok 264s test_start (db_functions.text.test_substr.SubstrTests.test_start) ... ok 264s test_trim (db_functions.text.test_trim.TrimTests.test_trim) ... ok 264s test_trim_transform (db_functions.text.test_trim.TrimTests.test_trim_transform) ... ok 264s test_basic (db_functions.text.test_upper.UpperTests.test_basic) ... ok 264s test_transform (db_functions.text.test_upper.UpperTests.test_transform) ... ok 265s test_add_on_symmetrical_m2m_with_intermediate_model (m2m_through.tests.M2mThroughReferentialTests.test_add_on_symmetrical_m2m_with_intermediate_model) ... ok 265s test_self_referential_empty_qs (m2m_through.tests.M2mThroughReferentialTests.test_self_referential_empty_qs) ... ok 265s test_self_referential_non_symmetrical_both (m2m_through.tests.M2mThroughReferentialTests.test_self_referential_non_symmetrical_both) ... ok 265s test_self_referential_non_symmetrical_clear_first_side (m2m_through.tests.M2mThroughReferentialTests.test_self_referential_non_symmetrical_clear_first_side) ... ok 265s test_self_referential_non_symmetrical_first_side (m2m_through.tests.M2mThroughReferentialTests.test_self_referential_non_symmetrical_first_side) ... ok 265s test_self_referential_non_symmetrical_second_side (m2m_through.tests.M2mThroughReferentialTests.test_self_referential_non_symmetrical_second_side) ... ok 265s test_self_referential_symmetrical (m2m_through.tests.M2mThroughReferentialTests.test_self_referential_symmetrical) ... ok 265s test_set_on_symmetrical_m2m_with_intermediate_model (m2m_through.tests.M2mThroughReferentialTests.test_set_on_symmetrical_m2m_with_intermediate_model) ... ok 265s test_through_fields_self_referential (m2m_through.tests.M2mThroughReferentialTests.test_through_fields_self_referential) ... ok 265s test_choices (m2m_through.tests.M2mThroughToFieldsTests.test_choices) ... ok 265s test_retrieval (m2m_through.tests.M2mThroughToFieldsTests.test_retrieval) ... ok 265s test_earliest (get_earliest_or_latest.tests.EarliestOrLatestTests.test_earliest) ... ok 265s test_earliest_sliced_queryset (get_earliest_or_latest.tests.EarliestOrLatestTests.test_earliest_sliced_queryset) ... ok 265s test_latest (get_earliest_or_latest.tests.EarliestOrLatestTests.test_latest) ... ok 265s test_latest_manual (get_earliest_or_latest.tests.EarliestOrLatestTests.test_latest_manual) ... ok 265s test_latest_sliced_queryset (get_earliest_or_latest.tests.EarliestOrLatestTests.test_latest_sliced_queryset) ... ok 265s test_first (get_earliest_or_latest.tests.TestFirstLast.test_first) ... ok 265s test_first_last_unordered_qs_aggregation_error (get_earliest_or_latest.tests.TestFirstLast.test_first_last_unordered_qs_aggregation_error) ... ok 265s test_index_error_not_suppressed (get_earliest_or_latest.tests.TestFirstLast.test_index_error_not_suppressed) 265s #23555 -- Unexpected IndexError exceptions in QuerySet iteration ... ok 265s test_last (get_earliest_or_latest.tests.TestFirstLast.test_last) ... ok 265s test_add_on_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_add_on_m2m_with_intermediate_model) ... ok 265s test_add_on_m2m_with_intermediate_model_callable_through_default (m2m_through.tests.M2mThroughTests.test_add_on_m2m_with_intermediate_model_callable_through_default) ... ok 265s test_add_on_m2m_with_intermediate_model_value_required (m2m_through.tests.M2mThroughTests.test_add_on_m2m_with_intermediate_model_value_required) ... ok 265s test_add_on_m2m_with_intermediate_model_value_required_fails (m2m_through.tests.M2mThroughTests.test_add_on_m2m_with_intermediate_model_value_required_fails) ... ok 265s test_add_on_reverse_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_add_on_reverse_m2m_with_intermediate_model) ... ok 265s test_clear_on_reverse_removes_all_the_m2m_relationships (m2m_through.tests.M2mThroughTests.test_clear_on_reverse_removes_all_the_m2m_relationships) ... ok 265s test_clear_removes_all_the_m2m_relationships (m2m_through.tests.M2mThroughTests.test_clear_removes_all_the_m2m_relationships) ... ok 265s test_create_on_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_create_on_m2m_with_intermediate_model) ... ok 265s test_create_on_m2m_with_intermediate_model_callable_through_default (m2m_through.tests.M2mThroughTests.test_create_on_m2m_with_intermediate_model_callable_through_default) ... ok 265s test_create_on_m2m_with_intermediate_model_value_required (m2m_through.tests.M2mThroughTests.test_create_on_m2m_with_intermediate_model_value_required) ... ok 265s test_create_on_m2m_with_intermediate_model_value_required_fails (m2m_through.tests.M2mThroughTests.test_create_on_m2m_with_intermediate_model_value_required_fails) ... ok 265s test_create_on_reverse_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_create_on_reverse_m2m_with_intermediate_model) ... ok 265s test_custom_related_name_doesnt_conflict_with_fky_related_name (m2m_through.tests.M2mThroughTests.test_custom_related_name_doesnt_conflict_with_fky_related_name) ... ok 265s test_custom_related_name_forward_empty_qs (m2m_through.tests.M2mThroughTests.test_custom_related_name_forward_empty_qs) ... ok 265s test_custom_related_name_forward_non_empty_qs (m2m_through.tests.M2mThroughTests.test_custom_related_name_forward_non_empty_qs) ... ok 265s test_custom_related_name_reverse_empty_qs (m2m_through.tests.M2mThroughTests.test_custom_related_name_reverse_empty_qs) ... ok 265s test_custom_related_name_reverse_non_empty_qs (m2m_through.tests.M2mThroughTests.test_custom_related_name_reverse_non_empty_qs) ... ok 265s test_filter_on_intermediate_model (m2m_through.tests.M2mThroughTests.test_filter_on_intermediate_model) ... ok 265s test_get_on_intermediate_model (m2m_through.tests.M2mThroughTests.test_get_on_intermediate_model) ... ok 265s test_get_or_create_on_m2m_with_intermediate_model_value_required (m2m_through.tests.M2mThroughTests.test_get_or_create_on_m2m_with_intermediate_model_value_required) ... ok 265s test_get_or_create_on_m2m_with_intermediate_model_value_required_fails (m2m_through.tests.M2mThroughTests.test_get_or_create_on_m2m_with_intermediate_model_value_required_fails) ... ok 265s test_order_by_relational_field_through_model (m2m_through.tests.M2mThroughTests.test_order_by_relational_field_through_model) ... ok 265s test_query_first_model_by_intermediate_model_attribute (m2m_through.tests.M2mThroughTests.test_query_first_model_by_intermediate_model_attribute) ... ok 265s test_query_model_by_attribute_name_of_related_model (m2m_through.tests.M2mThroughTests.test_query_model_by_attribute_name_of_related_model) ... ok 265s test_query_model_by_custom_related_name (m2m_through.tests.M2mThroughTests.test_query_model_by_custom_related_name) ... ok 265s test_query_model_by_intermediate_can_return_non_unique_queryset (m2m_through.tests.M2mThroughTests.test_query_model_by_intermediate_can_return_non_unique_queryset) ... ok 265s test_query_model_by_related_model_name (m2m_through.tests.M2mThroughTests.test_query_model_by_related_model_name) ... ok 265s test_query_second_model_by_intermediate_model_attribute (m2m_through.tests.M2mThroughTests.test_query_second_model_by_intermediate_model_attribute) ... ok 265s test_remove_on_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_remove_on_m2m_with_intermediate_model) ... ok 265s test_remove_on_m2m_with_intermediate_model_multiple (m2m_through.tests.M2mThroughTests.test_remove_on_m2m_with_intermediate_model_multiple) ... ok 265s test_remove_on_reverse_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_remove_on_reverse_m2m_with_intermediate_model) ... ok 265s test_retrieve_intermediate_items (m2m_through.tests.M2mThroughTests.test_retrieve_intermediate_items) ... ok 265s test_retrieve_reverse_intermediate_items (m2m_through.tests.M2mThroughTests.test_retrieve_reverse_intermediate_items) ... ok 265s test_reverse_inherited_m2m_with_through_fields_list_hashable (m2m_through.tests.M2mThroughTests.test_reverse_inherited_m2m_with_through_fields_list_hashable) ... ok 265s test_set_on_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_set_on_m2m_with_intermediate_model) ... ok 265s test_set_on_m2m_with_intermediate_model_callable_through_default (m2m_through.tests.M2mThroughTests.test_set_on_m2m_with_intermediate_model_callable_through_default) ... ok 265s test_set_on_m2m_with_intermediate_model_value_required (m2m_through.tests.M2mThroughTests.test_set_on_m2m_with_intermediate_model_value_required) ... ok 265s test_set_on_m2m_with_intermediate_model_value_required_fails (m2m_through.tests.M2mThroughTests.test_set_on_m2m_with_intermediate_model_value_required_fails) ... ok 265s test_set_on_reverse_m2m_with_intermediate_model (m2m_through.tests.M2mThroughTests.test_set_on_reverse_m2m_with_intermediate_model) ... ok 265s test_through_fields (m2m_through.tests.M2mThroughTests.test_through_fields) 265s Relations with intermediary tables with multiple FKs ... ok 265s test_update_or_create_on_m2m_with_intermediate_model_value_required (m2m_through.tests.M2mThroughTests.test_update_or_create_on_m2m_with_intermediate_model_value_required) ... ok 265s test_update_or_create_on_m2m_with_intermediate_model_value_required_fails (m2m_through.tests.M2mThroughTests.test_update_or_create_on_m2m_with_intermediate_model_value_required_fails) ... ok 266s test_attribute_error (custom_columns.tests.CustomColumnsTests.test_attribute_error) ... ok 266s test_author_filtering (custom_columns.tests.CustomColumnsTests.test_author_filtering) ... ok 266s test_author_get (custom_columns.tests.CustomColumnsTests.test_author_get) ... ok 266s test_author_get_attributes (custom_columns.tests.CustomColumnsTests.test_author_get_attributes) ... ok 266s test_author_querying (custom_columns.tests.CustomColumnsTests.test_author_querying) ... ok 266s test_field_error (custom_columns.tests.CustomColumnsTests.test_field_error) ... ok 266s test_filter_first_name (custom_columns.tests.CustomColumnsTests.test_filter_first_name) ... ok 266s test_filter_on_nonexistent_field (custom_columns.tests.CustomColumnsTests.test_filter_on_nonexistent_field) ... ok 266s test_get_all_articles_for_an_author (custom_columns.tests.CustomColumnsTests.test_get_all_articles_for_an_author) ... ok 266s test_get_all_authors_for_an_article (custom_columns.tests.CustomColumnsTests.test_get_all_authors_for_an_article) ... ok 266s test_get_author_m2m_relation (custom_columns.tests.CustomColumnsTests.test_get_author_m2m_relation) ... ok 266s test_get_first_name (custom_columns.tests.CustomColumnsTests.test_get_first_name) ... ok 266s test_m2m_table (custom_columns.tests.CustomColumnsTests.test_m2m_table) ... ok 266s test_query_all_available_authors (custom_columns.tests.CustomColumnsTests.test_query_all_available_authors) ... ok 266s test_allow_empty_archive_view (generic_views.test_dates.ArchiveIndexViewTests.test_allow_empty_archive_view) ... ok 266s test_archive_view (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view) ... ok 266s test_archive_view_by_month (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_by_month) ... ok 266s test_archive_view_context_object_name (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_context_object_name) ... ok 266s test_archive_view_custom_sorting (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_custom_sorting) ... ok 266s test_archive_view_custom_sorting_dec (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_custom_sorting_dec) ... ok 266s test_archive_view_invalid (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_invalid) ... ok 266s test_archive_view_template (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_template) ... ok 266s test_archive_view_template_suffix (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_template_suffix) ... ok 266s test_archive_view_without_date_field (generic_views.test_dates.ArchiveIndexViewTests.test_archive_view_without_date_field) ... ok 266s test_aware_datetime_archive_view (generic_views.test_dates.ArchiveIndexViewTests.test_aware_datetime_archive_view) ... ok 266s test_date_list_order (generic_views.test_dates.ArchiveIndexViewTests.test_date_list_order) 266s date_list should be sorted descending in index ... ok 266s test_datetime_archive_view (generic_views.test_dates.ArchiveIndexViewTests.test_datetime_archive_view) ... ok 266s test_empty_archive_view (generic_views.test_dates.ArchiveIndexViewTests.test_empty_archive_view) ... ok 266s test_no_duplicate_query (generic_views.test_dates.ArchiveIndexViewTests.test_no_duplicate_query) ... ok 266s test_paginated_archive_view (generic_views.test_dates.ArchiveIndexViewTests.test_paginated_archive_view) ... ok 266s test_paginated_archive_view_does_not_load_entire_table (generic_views.test_dates.ArchiveIndexViewTests.test_paginated_archive_view_does_not_load_entire_table) ... ok 267s test_aware_datetime_date_detail (generic_views.test_dates.DateDetailViewTests.test_aware_datetime_date_detail) ... ok 267s test_date_detail_allow_future (generic_views.test_dates.DateDetailViewTests.test_date_detail_allow_future) ... ok 267s test_date_detail_by_pk (generic_views.test_dates.DateDetailViewTests.test_date_detail_by_pk) ... ok 267s test_date_detail_by_slug (generic_views.test_dates.DateDetailViewTests.test_date_detail_by_slug) ... ok 267s test_date_detail_custom_month_format (generic_views.test_dates.DateDetailViewTests.test_date_detail_custom_month_format) ... ok 267s test_datetime_date_detail (generic_views.test_dates.DateDetailViewTests.test_datetime_date_detail) ... ok 267s test_get_object_custom_queryset (generic_views.test_dates.DateDetailViewTests.test_get_object_custom_queryset) 267s Custom querysets are used when provided to ... ok 267s test_get_object_custom_queryset_numqueries (generic_views.test_dates.DateDetailViewTests.test_get_object_custom_queryset_numqueries) ... ok 267s test_invalid_url (generic_views.test_dates.DateDetailViewTests.test_invalid_url) ... ok 267s test_year_out_of_range (generic_views.test_dates.DateDetailViewTests.test_year_out_of_range) ... ok 267s test_aware_datetime_day_view (generic_views.test_dates.DayArchiveViewTests.test_aware_datetime_day_view) ... ok 267s test_custom_month_format (generic_views.test_dates.DayArchiveViewTests.test_custom_month_format) ... ok 267s test_datetime_day_view (generic_views.test_dates.DayArchiveViewTests.test_datetime_day_view) ... ok 267s test_day_view (generic_views.test_dates.DayArchiveViewTests.test_day_view) ... ok 267s test_day_view_allow_empty (generic_views.test_dates.DayArchiveViewTests.test_day_view_allow_empty) ... ok 267s test_day_view_allow_future (generic_views.test_dates.DayArchiveViewTests.test_day_view_allow_future) ... ok 267s test_day_view_invalid_pattern (generic_views.test_dates.DayArchiveViewTests.test_day_view_invalid_pattern) ... ok 267s test_day_view_paginated (generic_views.test_dates.DayArchiveViewTests.test_day_view_paginated) ... ok 267s test_next_prev_context (generic_views.test_dates.DayArchiveViewTests.test_next_prev_context) ... ok 267s test_today_view (generic_views.test_dates.DayArchiveViewTests.test_today_view) ... ok 267s test_case_insensitive (swappable_models.tests.SwappableModelTests.test_case_insensitive) 267s Model names are case insensitive. Model swapping honors this. ... ok 267s test_generated_data (swappable_models.tests.SwappableModelTests.test_generated_data) 267s Permissions and content types are not created for a swapped model ... ok 267s test_aware_datetime_month_view (generic_views.test_dates.MonthArchiveViewTests.test_aware_datetime_month_view) ... ok 267s test_custom_month_format (generic_views.test_dates.MonthArchiveViewTests.test_custom_month_format) ... ok 267s test_date_list_order (generic_views.test_dates.MonthArchiveViewTests.test_date_list_order) 267s date_list should be sorted ascending in month view ... ok 267s test_datetime_month_view (generic_views.test_dates.MonthArchiveViewTests.test_datetime_month_view) ... ok 267s test_month_view (generic_views.test_dates.MonthArchiveViewTests.test_month_view) ... ok 267s test_month_view_allow_empty (generic_views.test_dates.MonthArchiveViewTests.test_month_view_allow_empty) ... ok 267s test_month_view_allow_future (generic_views.test_dates.MonthArchiveViewTests.test_month_view_allow_future) ... ok 267s test_month_view_get_month_from_request (generic_views.test_dates.MonthArchiveViewTests.test_month_view_get_month_from_request) ... ok 267s test_month_view_invalid_pattern (generic_views.test_dates.MonthArchiveViewTests.test_month_view_invalid_pattern) ... ok 267s test_month_view_paginated (generic_views.test_dates.MonthArchiveViewTests.test_month_view_paginated) ... ok 267s test_month_view_without_month_in_url (generic_views.test_dates.MonthArchiveViewTests.test_month_view_without_month_in_url) ... ok 267s test_previous_month_without_content (generic_views.test_dates.MonthArchiveViewTests.test_previous_month_without_content) 267s Content can exist on any day of the previous month. Refs #14711 ... ok 267s test_aware_datetime_week_view (generic_views.test_dates.WeekArchiveViewTests.test_aware_datetime_week_view) ... ok 267s test_datetime_week_view (generic_views.test_dates.WeekArchiveViewTests.test_datetime_week_view) ... ok 267s test_incompatible_iso_week_format_view (generic_views.test_dates.WeekArchiveViewTests.test_incompatible_iso_week_format_view) ... ok 267s test_unknown_week_format (generic_views.test_dates.WeekArchiveViewTests.test_unknown_week_format) ... ok 267s test_week_iso_format (generic_views.test_dates.WeekArchiveViewTests.test_week_iso_format) ... ok 267s test_week_start_Monday (generic_views.test_dates.WeekArchiveViewTests.test_week_start_Monday) ... ok 267s test_week_view (generic_views.test_dates.WeekArchiveViewTests.test_week_view) ... ok 267s test_week_view_allow_empty (generic_views.test_dates.WeekArchiveViewTests.test_week_view_allow_empty) ... ok 267s test_week_view_allow_future (generic_views.test_dates.WeekArchiveViewTests.test_week_view_allow_future) ... ok 267s test_week_view_invalid_pattern (generic_views.test_dates.WeekArchiveViewTests.test_week_view_invalid_pattern) ... ok 267s test_week_view_paginated (generic_views.test_dates.WeekArchiveViewTests.test_week_view_paginated) ... ok 268s test_aware_datetime_year_view (generic_views.test_dates.YearArchiveViewTests.test_aware_datetime_year_view) ... ok 268s test_date_list_order (generic_views.test_dates.YearArchiveViewTests.test_date_list_order) 268s date_list should be sorted ascending in year view ... ok 268s test_datetime_year_view (generic_views.test_dates.YearArchiveViewTests.test_datetime_year_view) ... ok 268s test_get_context_data_receives_extra_context (generic_views.test_dates.YearArchiveViewTests.test_get_context_data_receives_extra_context) 268s MultipleObjectMixin.get_context_data() receives the context set by ... ok 268s test_get_dated_items_not_implemented (generic_views.test_dates.YearArchiveViewTests.test_get_dated_items_not_implemented) ... ok 268s test_no_duplicate_query (generic_views.test_dates.YearArchiveViewTests.test_no_duplicate_query) ... ok 268s test_year_view (generic_views.test_dates.YearArchiveViewTests.test_year_view) ... ok 268s test_year_view_allow_future (generic_views.test_dates.YearArchiveViewTests.test_year_view_allow_future) ... ok 268s test_year_view_custom_sort_order (generic_views.test_dates.YearArchiveViewTests.test_year_view_custom_sort_order) ... ok 268s test_year_view_empty (generic_views.test_dates.YearArchiveViewTests.test_year_view_empty) ... ok 268s test_year_view_invalid_pattern (generic_views.test_dates.YearArchiveViewTests.test_year_view_invalid_pattern) ... ok 268s test_year_view_make_object_list (generic_views.test_dates.YearArchiveViewTests.test_year_view_make_object_list) ... ok 268s test_year_view_paginated (generic_views.test_dates.YearArchiveViewTests.test_year_view_paginated) ... ok 268s test_year_view_two_custom_sort_orders (generic_views.test_dates.YearArchiveViewTests.test_year_view_two_custom_sort_orders) ... ok 268s test_late_form_validation (generic_views.test_edit.BasicFormTests.test_late_form_validation) 268s A form can be marked invalid in the form_valid() method (#25548). ... ok 268s test_post_data (generic_views.test_edit.BasicFormTests.test_post_data) ... ok 268s test_context_object_name (generic_views.test_detail.DetailViewTest.test_context_object_name) ... ok 268s test_custom_detail (generic_views.test_detail.DetailViewTest.test_custom_detail) 268s AuthorCustomDetail overrides get() and ensures that ... ok 268s test_deferred_queryset_context_object_name (generic_views.test_detail.DetailViewTest.test_deferred_queryset_context_object_name) ... ok 268s test_deferred_queryset_template_name (generic_views.test_detail.DetailViewTest.test_deferred_queryset_template_name) ... ok 268s test_detail_by_custom_pk (generic_views.test_detail.DetailViewTest.test_detail_by_custom_pk) ... ok 268s test_detail_by_custom_slug (generic_views.test_detail.DetailViewTest.test_detail_by_custom_slug) ... ok 268s test_detail_by_pk (generic_views.test_detail.DetailViewTest.test_detail_by_pk) ... ok 268s test_detail_by_pk_and_slug (generic_views.test_detail.DetailViewTest.test_detail_by_pk_and_slug) ... ok 268s test_detail_by_pk_and_slug_mismatch_404 (generic_views.test_detail.DetailViewTest.test_detail_by_pk_and_slug_mismatch_404) ... ok 268s test_detail_by_pk_ignore_slug (generic_views.test_detail.DetailViewTest.test_detail_by_pk_ignore_slug) ... ok 268s test_detail_by_pk_ignore_slug_mismatch (generic_views.test_detail.DetailViewTest.test_detail_by_pk_ignore_slug_mismatch) ... ok 268s test_detail_by_slug (generic_views.test_detail.DetailViewTest.test_detail_by_slug) ... ok 268s test_detail_missing_object (generic_views.test_detail.DetailViewTest.test_detail_missing_object) ... ok 268s test_detail_object_does_not_exist (generic_views.test_detail.DetailViewTest.test_detail_object_does_not_exist) ... ok 268s test_duplicated_context_object_name (generic_views.test_detail.DetailViewTest.test_duplicated_context_object_name) ... ok 268s test_invalid_queryset (generic_views.test_detail.DetailViewTest.test_invalid_queryset) ... ok 268s test_invalid_url (generic_views.test_detail.DetailViewTest.test_invalid_url) ... ok 268s test_non_model_object_with_meta (generic_views.test_detail.DetailViewTest.test_non_model_object_with_meta) ... ok 268s test_simple_object (generic_views.test_detail.DetailViewTest.test_simple_object) ... ok 268s test_template_name (generic_views.test_detail.DetailViewTest.test_template_name) ... ok 268s test_template_name_field (generic_views.test_detail.DetailViewTest.test_template_name_field) ... ok 268s test_template_name_suffix (generic_views.test_detail.DetailViewTest.test_template_name_suffix) ... ok 268s test_verbose_name (generic_views.test_detail.DetailViewTest.test_verbose_name) ... ok 268s test_create (generic_views.test_edit.CreateViewTests.test_create) ... ok 268s test_create_invalid (generic_views.test_edit.CreateViewTests.test_create_invalid) ... ok 268s test_create_restricted (generic_views.test_edit.CreateViewTests.test_create_restricted) ... ok 268s test_create_view_all_fields (generic_views.test_edit.CreateViewTests.test_create_view_all_fields) ... ok 268s test_create_view_with_restricted_fields (generic_views.test_edit.CreateViewTests.test_create_view_with_restricted_fields) ... ok 268s test_create_view_without_explicit_fields (generic_views.test_edit.CreateViewTests.test_create_view_without_explicit_fields) ... ok 268s test_create_with_interpolated_redirect (generic_views.test_edit.CreateViewTests.test_create_with_interpolated_redirect) ... ok 268s test_create_with_object_url (generic_views.test_edit.CreateViewTests.test_create_with_object_url) ... ok 268s test_create_with_redirect (generic_views.test_edit.CreateViewTests.test_create_with_redirect) ... ok 268s test_create_with_special_properties (generic_views.test_edit.CreateViewTests.test_create_with_special_properties) ... ok 268s test_create_without_redirect (generic_views.test_edit.CreateViewTests.test_create_without_redirect) ... ok 268s test_define_both_fields_and_form_class (generic_views.test_edit.CreateViewTests.test_define_both_fields_and_form_class) ... ok 268s test_delete_by_delete (generic_views.test_edit.DeleteViewTests.test_delete_by_delete) ... ok 268s test_delete_by_post (generic_views.test_edit.DeleteViewTests.test_delete_by_post) ... ok 268s test_delete_with_custom_delete (generic_views.test_edit.DeleteViewTests.test_delete_with_custom_delete) ... ok 268s test_delete_with_form_as_post (generic_views.test_edit.DeleteViewTests.test_delete_with_form_as_post) ... ok 268s test_delete_with_form_as_post_with_validation_error (generic_views.test_edit.DeleteViewTests.test_delete_with_form_as_post_with_validation_error) ... ok 268s test_delete_with_interpolated_redirect (generic_views.test_edit.DeleteViewTests.test_delete_with_interpolated_redirect) ... ok 268s test_delete_with_redirect (generic_views.test_edit.DeleteViewTests.test_delete_with_redirect) ... ok 268s test_delete_with_special_properties (generic_views.test_edit.DeleteViewTests.test_delete_with_special_properties) ... ok 268s test_delete_without_redirect (generic_views.test_edit.DeleteViewTests.test_delete_without_redirect) ... ok 268s test_update_get_object (generic_views.test_edit.UpdateViewTests.test_update_get_object) ... ok 268s test_update_invalid (generic_views.test_edit.UpdateViewTests.test_update_invalid) ... ok 268s test_update_post (generic_views.test_edit.UpdateViewTests.test_update_post) ... ok 268s test_update_with_interpolated_redirect (generic_views.test_edit.UpdateViewTests.test_update_with_interpolated_redirect) ... ok 268s test_update_with_object_url (generic_views.test_edit.UpdateViewTests.test_update_with_object_url) ... ok 268s test_update_with_redirect (generic_views.test_edit.UpdateViewTests.test_update_with_redirect) ... ok 268s test_update_with_special_properties (generic_views.test_edit.UpdateViewTests.test_update_with_special_properties) ... ok 268s test_update_without_redirect (generic_views.test_edit.UpdateViewTests.test_update_without_redirect) ... ok 269s test_allow_empty_false (generic_views.test_list.ListViewTests.test_allow_empty_false) ... ok 269s test_context_object_name (generic_views.test_list.ListViewTests.test_context_object_name) ... ok 269s test_duplicate_context_object_name (generic_views.test_list.ListViewTests.test_duplicate_context_object_name) ... ok 269s test_explicitly_ordered_list_view (generic_views.test_list.ListViewTests.test_explicitly_ordered_list_view) ... ok 269s test_invalid_get_queryset (generic_views.test_list.ListViewTests.test_invalid_get_queryset) ... ok 269s test_items (generic_views.test_list.ListViewTests.test_items) ... ok 269s test_missing_items (generic_views.test_list.ListViewTests.test_missing_items) ... ok 269s test_paginated_custom_page_kwarg (generic_views.test_list.ListViewTests.test_paginated_custom_page_kwarg) ... ok 269s test_paginated_custom_paginator_class (generic_views.test_list.ListViewTests.test_paginated_custom_paginator_class) ... ok 269s test_paginated_custom_paginator_constructor (generic_views.test_list.ListViewTests.test_paginated_custom_paginator_constructor) ... ok 269s test_paginated_get_last_page_by_query_string (generic_views.test_list.ListViewTests.test_paginated_get_last_page_by_query_string) ... ok 269s test_paginated_get_page_by_query_string (generic_views.test_list.ListViewTests.test_paginated_get_page_by_query_string) ... ok 269s test_paginated_get_page_by_urlvar (generic_views.test_list.ListViewTests.test_paginated_get_page_by_urlvar) ... ok 269s test_paginated_invalid_page (generic_views.test_list.ListViewTests.test_paginated_invalid_page) ... ok 269s test_paginated_list_view_does_not_load_entire_table (generic_views.test_list.ListViewTests.test_paginated_list_view_does_not_load_entire_table) ... ok 269s test_paginated_list_view_returns_useful_message_on_invalid_page (generic_views.test_list.ListViewTests.test_paginated_list_view_returns_useful_message_on_invalid_page) ... ok 269s test_paginated_non_queryset (generic_views.test_list.ListViewTests.test_paginated_non_queryset) ... ok 269s test_paginated_orphaned_queryset (generic_views.test_list.ListViewTests.test_paginated_orphaned_queryset) ... ok 269s test_paginated_page_out_of_range (generic_views.test_list.ListViewTests.test_paginated_page_out_of_range) ... ok 269s test_paginated_queryset (generic_views.test_list.ListViewTests.test_paginated_queryset) ... ok 269s test_paginated_queryset_shortdata (generic_views.test_list.ListViewTests.test_paginated_queryset_shortdata) ... ok 269s test_queryset (generic_views.test_list.ListViewTests.test_queryset) ... ok 269s test_template_name (generic_views.test_list.ListViewTests.test_template_name) ... ok 269s test_template_name_suffix (generic_views.test_list.ListViewTests.test_template_name_suffix) ... ok 269s test_verbose_name (generic_views.test_list.ListViewTests.test_verbose_name) ... ok 269s test_set_messages_success (messages_tests.test_mixins.SuccessMessageMixinTests.test_set_messages_success) ... ok 269s test_set_messages_success_on_delete (messages_tests.test_mixins.SuccessMessageMixinTests.test_set_messages_success_on_delete) ... ok 269s test_add (many_to_one.tests.ManyToOneTests.test_add) ... ok 269s test_add_after_prefetch (many_to_one.tests.ManyToOneTests.test_add_after_prefetch) ... ok 269s test_add_remove_set_by_pk_raises (many_to_one.tests.ManyToOneTests.test_add_remove_set_by_pk_raises) ... ok 269s test_add_then_remove_after_prefetch (many_to_one.tests.ManyToOneTests.test_add_then_remove_after_prefetch) ... ok 269s test_assign (many_to_one.tests.ManyToOneTests.test_assign) ... ok 269s test_assign_fk_id_none (many_to_one.tests.ManyToOneTests.test_assign_fk_id_none) ... ok 269s test_assign_fk_id_value (many_to_one.tests.ManyToOneTests.test_assign_fk_id_value) ... ok 269s test_cached_foreign_key_with_to_field_not_cleared_by_save (many_to_one.tests.ManyToOneTests.test_cached_foreign_key_with_to_field_not_cleared_by_save) ... ok 269s test_cached_relation_invalidated_on_save (many_to_one.tests.ManyToOneTests.test_cached_relation_invalidated_on_save) 269s Model.save() invalidates stale ForeignKey relations after a primary key ... ok 269s test_clear_after_prefetch (many_to_one.tests.ManyToOneTests.test_clear_after_prefetch) ... ok 269s test_create (many_to_one.tests.ManyToOneTests.test_create) ... ok 269s test_create_relation_with_gettext_lazy (many_to_one.tests.ManyToOneTests.test_create_relation_with_gettext_lazy) ... ok 269s test_deepcopy_and_circular_references (many_to_one.tests.ManyToOneTests.test_deepcopy_and_circular_references) ... ok 269s test_delete (many_to_one.tests.ManyToOneTests.test_delete) ... ok 269s test_explicit_fk (many_to_one.tests.ManyToOneTests.test_explicit_fk) ... ok 269s test_fk_assignment_and_related_object_cache (many_to_one.tests.ManyToOneTests.test_fk_assignment_and_related_object_cache) ... ok 269s test_fk_instantiation_outside_model (many_to_one.tests.ManyToOneTests.test_fk_instantiation_outside_model) ... ok 269s test_fk_to_bigautofield (many_to_one.tests.ManyToOneTests.test_fk_to_bigautofield) ... ok 269s test_fk_to_smallautofield (many_to_one.tests.ManyToOneTests.test_fk_to_smallautofield) ... ok 269s test_get (many_to_one.tests.ManyToOneTests.test_get) ... ok 269s test_hasattr_related_object (many_to_one.tests.ManyToOneTests.test_hasattr_related_object) ... ok 269s test_manager_class_caching (many_to_one.tests.ManyToOneTests.test_manager_class_caching) ... ok 269s test_multiple_foreignkeys (many_to_one.tests.ManyToOneTests.test_multiple_foreignkeys) ... ok 269s test_related_object (many_to_one.tests.ManyToOneTests.test_related_object) ... ok 269s test_relation_unsaved (many_to_one.tests.ManyToOneTests.test_relation_unsaved) ... ok 269s test_remove_after_prefetch (many_to_one.tests.ManyToOneTests.test_remove_after_prefetch) ... ok 269s test_reverse_assignment_deprecation (many_to_one.tests.ManyToOneTests.test_reverse_assignment_deprecation) ... ok 269s test_reverse_foreign_key_instance_to_field_caching (many_to_one.tests.ManyToOneTests.test_reverse_foreign_key_instance_to_field_caching) ... ok 269s test_reverse_selects (many_to_one.tests.ManyToOneTests.test_reverse_selects) ... ok 269s test_save_fk_after_parent_with_non_numeric_pk_set_on_child (many_to_one.tests.ManyToOneTests.test_save_fk_after_parent_with_non_numeric_pk_set_on_child) ... ok 269s test_save_nullable_fk_after_parent (many_to_one.tests.ManyToOneTests.test_save_nullable_fk_after_parent) ... ok 269s test_save_nullable_fk_after_parent_with_to_field (many_to_one.tests.ManyToOneTests.test_save_nullable_fk_after_parent_with_to_field) ... ok 269s test_save_parent_after_assign (many_to_one.tests.ManyToOneTests.test_save_parent_after_assign) ... ok 269s test_select_related (many_to_one.tests.ManyToOneTests.test_select_related) ... ok 269s test_selects (many_to_one.tests.ManyToOneTests.test_selects) ... ok 269s test_set (many_to_one.tests.ManyToOneTests.test_set) ... ok 269s test_set_after_prefetch (many_to_one.tests.ManyToOneTests.test_set_after_prefetch) ... ok 269s test_values_list_exception (many_to_one.tests.ManyToOneTests.test_values_list_exception) ... ok 269s test_defer_baseclass_when_subclass_has_added_field (defer.tests.BigChildDeferTests.test_defer_baseclass_when_subclass_has_added_field) ... ok 269s test_defer_subclass (defer.tests.BigChildDeferTests.test_defer_subclass) ... ok 269s test_defer_subclass_both (defer.tests.BigChildDeferTests.test_defer_subclass_both) ... ok 269s test_only_baseclass_when_subclass_has_added_field (defer.tests.BigChildDeferTests.test_only_baseclass_when_subclass_has_added_field) ... ok 269s test_only_subclass (defer.tests.BigChildDeferTests.test_only_subclass) ... ok 269s test_add (messages_tests.test_session.SessionTests.test_add) ... ok 269s test_add_lazy_translation (messages_tests.test_session.SessionTests.test_add_lazy_translation) ... ok 269s test_add_update (messages_tests.test_session.SessionTests.test_add_update) ... ok 269s test_context_processor_message_levels (messages_tests.test_session.SessionTests.test_context_processor_message_levels) ... ok 269s test_custom_tags (messages_tests.test_session.SessionTests.test_custom_tags) ... ok 269s test_default_level (messages_tests.test_session.SessionTests.test_default_level) ... ok 269s test_existing_add (messages_tests.test_session.SessionTests.test_existing_add) ... ok 269s test_existing_add_read_update (messages_tests.test_session.SessionTests.test_existing_add_read_update) ... ok 269s test_existing_read (messages_tests.test_session.SessionTests.test_existing_read) 269s Reading the existing storage doesn't cause the data to be lost. ... ok 269s test_existing_read_add_update (messages_tests.test_session.SessionTests.test_existing_read_add_update) ... ok 269s test_full_request_response_cycle (messages_tests.test_session.SessionTests.test_full_request_response_cycle) 269s With the message middleware enabled, messages are properly stored and ... ok 269s test_get (messages_tests.test_session.SessionTests.test_get) ... ok 269s test_high_level (messages_tests.test_session.SessionTests.test_high_level) ... ok 269s test_level_tag (messages_tests.test_session.SessionTests.test_level_tag) ... ok 269s test_low_level (messages_tests.test_session.SessionTests.test_low_level) ... ok 269s test_middleware_disabled (messages_tests.test_session.SessionTests.test_middleware_disabled) 269s When the middleware is disabled, an exception is raised when one ... ok 269s test_middleware_disabled_fail_silently (messages_tests.test_session.SessionTests.test_middleware_disabled_fail_silently) 269s When the middleware is disabled, an exception is not raised ... ok 269s test_multiple_posts (messages_tests.test_session.SessionTests.test_multiple_posts) 269s Messages persist properly when multiple POSTs are made before a GET. ... ok 269s test_no_session (messages_tests.test_session.SessionTests.test_no_session) ... ok 269s test_no_update (messages_tests.test_session.SessionTests.test_no_update) ... ok 269s test_repr (messages_tests.test_session.SessionTests.test_repr) ... ok 269s test_safedata (messages_tests.test_session.SessionTests.test_safedata) 269s A message containing SafeData keeps its safe status when retrieved from ... ok 269s test_settings_level (messages_tests.test_session.SessionTests.test_settings_level) ... ok 269s test_tags (messages_tests.test_session.SessionTests.test_tags) ... ok 269s test_with_template_response (messages_tests.test_session.SessionTests.test_with_template_response) ... ok 270s test_custom_refresh_on_deferred_loading (defer.tests.TestDefer2.test_custom_refresh_on_deferred_loading) ... ok 270s test_defer_inheritance_pk_chaining (defer.tests.TestDefer2.test_defer_inheritance_pk_chaining) 270s When an inherited model is fetched from the DB, its PK is also fetched. ... ok 270s test_defer_proxy (defer.tests.TestDefer2.test_defer_proxy) 270s Ensure select_related together with only on a proxy model behaves ... ok 270s test_eq (defer.tests.TestDefer2.test_eq) ... ok 270s test_refresh_not_loading_deferred_fields (defer.tests.TestDefer2.test_refresh_not_loading_deferred_fields) ... ok 270s test_defer (defer.tests.DeferTests.test_defer) ... ok 270s test_defer_baseclass_when_subclass_has_no_added_fields (defer.tests.DeferTests.test_defer_baseclass_when_subclass_has_no_added_fields) ... ok 270s test_defer_extra (defer.tests.DeferTests.test_defer_extra) ... ok 270s test_defer_fk_attname (defer.tests.DeferTests.test_defer_fk_attname) ... ok 270s test_defer_foreign_keys_are_deferred_and_not_traversed (defer.tests.DeferTests.test_defer_foreign_keys_are_deferred_and_not_traversed) ... ok 270s test_defer_none_to_clear_deferred_set (defer.tests.DeferTests.test_defer_none_to_clear_deferred_set) ... ok 270s test_defer_of_overridden_scalar (defer.tests.DeferTests.test_defer_of_overridden_scalar) ... ok 270s test_defer_on_an_already_deferred_field (defer.tests.DeferTests.test_defer_on_an_already_deferred_field) ... ok 270s test_defer_only_chaining (defer.tests.DeferTests.test_defer_only_chaining) ... ok 270s test_defer_only_clear (defer.tests.DeferTests.test_defer_only_clear) ... ok 270s test_defer_values_does_not_defer (defer.tests.DeferTests.test_defer_values_does_not_defer) ... ok 270s test_defer_with_select_related (defer.tests.DeferTests.test_defer_with_select_related) ... ok 270s test_get (defer.tests.DeferTests.test_get) ... ok 270s test_only (defer.tests.DeferTests.test_only) ... ok 270s test_only_baseclass_when_subclass_has_no_added_fields (defer.tests.DeferTests.test_only_baseclass_when_subclass_has_no_added_fields) ... ok 270s test_only_none_raises_error (defer.tests.DeferTests.test_only_none_raises_error) ... ok 270s test_only_values_does_not_defer (defer.tests.DeferTests.test_only_values_does_not_defer) ... ok 270s test_only_with_select_related (defer.tests.DeferTests.test_only_with_select_related) ... ok 270s test_saving_object_with_deferred_field (defer.tests.DeferTests.test_saving_object_with_deferred_field) ... ok 270s test_datetime_output_field (custom_lookups.tests.DateTimeLookupTests.test_datetime_output_field) ... skipped 'MySQL specific SQL used' 270s test_bilateral_fexpr (custom_lookups.tests.BilateralTransformTests.test_bilateral_fexpr) ... ok 270s test_bilateral_inner_qs (custom_lookups.tests.BilateralTransformTests.test_bilateral_inner_qs) ... ok 270s test_bilateral_multi_value (custom_lookups.tests.BilateralTransformTests.test_bilateral_multi_value) ... ok 270s test_bilateral_order (custom_lookups.tests.BilateralTransformTests.test_bilateral_order) ... ok 270s test_bilateral_upper (custom_lookups.tests.BilateralTransformTests.test_bilateral_upper) ... ok 270s test_div3_bilateral_extract (custom_lookups.tests.BilateralTransformTests.test_div3_bilateral_extract) ... ok 270s test_transform_order_by (custom_lookups.tests.BilateralTransformTests.test_transform_order_by) ... ok 270s test_subquery_usage (custom_lookups.tests.SubqueryTransformTests.test_subquery_usage) ... ok 270s test_custom_implementation_year_exact (custom_lookups.tests.YearLteTests.test_custom_implementation_year_exact) ... ok 270s test_postgres_year_exact (custom_lookups.tests.YearLteTests.test_postgres_year_exact) ... ok 270s test_year_lte (custom_lookups.tests.YearLteTests.test_year_lte) ... skipped 'PostgreSQL specific SQL used' 270s test_year_lte_fexpr (custom_lookups.tests.YearLteTests.test_year_lte_fexpr) ... skipped 'PostgreSQL specific SQL used' 270s test_year_lte_sql (custom_lookups.tests.YearLteTests.test_year_lte_sql) ... ok 270s test_basic_lookup (custom_lookups.tests.LookupTests.test_basic_lookup) ... ok 270s test_birthdate_month (custom_lookups.tests.LookupTests.test_birthdate_month) ... skipped 'PostgreSQL specific SQL used' 270s test_custom_exact_lookup_none_rhs (custom_lookups.tests.LookupTests.test_custom_exact_lookup_none_rhs) 270s __exact=None is transformed to __isnull=True if a custom lookup class ... ok 270s test_custom_name_lookup (custom_lookups.tests.LookupTests.test_custom_name_lookup) ... ok 270s test_div3_extract (custom_lookups.tests.LookupTests.test_div3_extract) ... ok 270s test_foreignobject_lookup_registration (custom_lookups.tests.LookupTests.test_foreignobject_lookup_registration) ... ok 270s test_lookups_caching (custom_lookups.tests.LookupTests.test_lookups_caching) ... ok 270s test_decorators (signals.tests.SignalTests.test_decorators) ... ok 270s test_delete_signals (signals.tests.SignalTests.test_delete_signals) ... ok 270s test_delete_signals_origin_model (signals.tests.SignalTests.test_delete_signals_origin_model) ... ok 270s test_delete_signals_origin_queryset (signals.tests.SignalTests.test_delete_signals_origin_queryset) ... ok 270s test_disconnect_in_dispatch (signals.tests.SignalTests.test_disconnect_in_dispatch) 270s Signals that disconnect when being called don't mess future ... ok 270s test_disconnect_model (signals.tests.SignalTests.test_disconnect_model) ... ok 270s test_lazy_model_signal (signals.tests.SignalTests.test_lazy_model_signal) ... ok 270s test_model_pre_init_and_post_init (signals.tests.SignalTests.test_model_pre_init_and_post_init) ... ok 270s test_save_and_delete_signals_with_m2m (signals.tests.SignalTests.test_save_and_delete_signals_with_m2m) ... ok 270s test_save_signals (signals.tests.SignalTests.test_save_signals) ... ok 270s test_sqlflush_no_tables (empty_models.test_commands.CoreCommandsNoOutputTests.test_sqlflush_no_tables) ... ok 270s test_sqlsequencereset_no_sequences (empty_models.test_commands.CoreCommandsNoOutputTests.test_sqlsequencereset_no_sequences) ... ok 271s test_assign_none_null_reverse_relation (one_to_one.tests.OneToOneTests.test_assign_none_null_reverse_relation) ... ok 271s test_assign_none_reverse_relation (one_to_one.tests.OneToOneTests.test_assign_none_reverse_relation) ... ok 271s test_assign_none_to_null_cached_reverse_relation (one_to_one.tests.OneToOneTests.test_assign_none_to_null_cached_reverse_relation) ... ok 271s test_assign_o2o_id_none (one_to_one.tests.OneToOneTests.test_assign_o2o_id_none) ... ok 271s test_assign_o2o_id_value (one_to_one.tests.OneToOneTests.test_assign_o2o_id_value) ... ok 271s test_cached_relation_invalidated_on_save (one_to_one.tests.OneToOneTests.test_cached_relation_invalidated_on_save) 271s Model.save() invalidates stale OneToOneField relations after a primary ... ok 271s test_create_models_m2m (one_to_one.tests.OneToOneTests.test_create_models_m2m) 271s Models are created via the m2m relation if the remote model has a ... ok 271s test_filter_one_to_one_relations (one_to_one.tests.OneToOneTests.test_filter_one_to_one_relations) 271s Regression test for #9968 ... ok 271s test_foreign_key (one_to_one.tests.OneToOneTests.test_foreign_key) ... ok 271s test_get_reverse_on_unsaved_object (one_to_one.tests.OneToOneTests.test_get_reverse_on_unsaved_object) 271s Regression for #18153 and #19089. ... ok 271s test_getter (one_to_one.tests.OneToOneTests.test_getter) ... ok 271s test_hasattr_related_object (one_to_one.tests.OneToOneTests.test_hasattr_related_object) ... ok 271s test_hidden_accessor (one_to_one.tests.OneToOneTests.test_hidden_accessor) 271s When a '+' ending related name is specified no reverse accessor should ... ok 271s test_manager_all (one_to_one.tests.OneToOneTests.test_manager_all) ... ok 271s test_manager_get (one_to_one.tests.OneToOneTests.test_manager_get) ... ok 271s test_multiple_o2o (one_to_one.tests.OneToOneTests.test_multiple_o2o) ... ok 271s test_nullable_o2o_delete (one_to_one.tests.OneToOneTests.test_nullable_o2o_delete) ... ok 271s test_o2o_primary_key_delete (one_to_one.tests.OneToOneTests.test_o2o_primary_key_delete) ... ok 271s test_primary_key_to_field_filter (one_to_one.tests.OneToOneTests.test_primary_key_to_field_filter) ... ok 271s test_rel_pk_exact (one_to_one.tests.OneToOneTests.test_rel_pk_exact) ... ok 271s test_rel_pk_subquery (one_to_one.tests.OneToOneTests.test_rel_pk_subquery) ... ok 271s test_related_object (one_to_one.tests.OneToOneTests.test_related_object) ... ok 271s test_related_object_cache (one_to_one.tests.OneToOneTests.test_related_object_cache) 271s Regression test for #6886 (the related-object cache) ... ok 271s test_related_object_cached_when_reverse_is_accessed (one_to_one.tests.OneToOneTests.test_related_object_cached_when_reverse_is_accessed) 271s Regression for #13839 and #17439. ... ok 271s test_reverse_object_cache (one_to_one.tests.OneToOneTests.test_reverse_object_cache) 271s The name of the cache for the reverse object is correct (#7173). ... ok 271s test_reverse_object_cached_when_related_is_accessed (one_to_one.tests.OneToOneTests.test_reverse_object_cached_when_related_is_accessed) 271s Regression for #13839 and #17439. ... ok 271s test_reverse_object_cached_when_related_is_set (one_to_one.tests.OneToOneTests.test_reverse_object_cached_when_related_is_set) 271s Regression for #13839 and #17439. ... ok 271s test_reverse_object_cached_when_related_is_unset (one_to_one.tests.OneToOneTests.test_reverse_object_cached_when_related_is_unset) 271s Regression for #13839 and #17439. ... ok 271s test_reverse_object_does_not_exist_cache (one_to_one.tests.OneToOneTests.test_reverse_object_does_not_exist_cache) 271s Regression for #13839 and #17439. ... ok 271s test_reverse_relationship_cache_cascade (one_to_one.tests.OneToOneTests.test_reverse_relationship_cache_cascade) 271s Regression test for #9023: accessing the reverse relationship shouldn't ... ok 271s test_save_nullable_o2o_after_parent (one_to_one.tests.OneToOneTests.test_save_nullable_o2o_after_parent) ... ok 271s test_set_reverse_on_unsaved_object (one_to_one.tests.OneToOneTests.test_set_reverse_on_unsaved_object) 271s Writing to the reverse relation on an unsaved object ... ok 271s test_setter (one_to_one.tests.OneToOneTests.test_setter) ... ok 271s test_unsaved_object (one_to_one.tests.OneToOneTests.test_unsaved_object) 271s #10811 -- Assigning an unsaved object to a OneToOneField ... ok 271s test_update_one_to_one_pk (one_to_one.tests.OneToOneTests.test_update_one_to_one_pk) ... ok 271s test_db_table_comment (invalid_models_tests.test_models.DbTableCommentTests.test_db_table_comment) ... ok 271s test_db_table_comment_required_db_features (invalid_models_tests.test_models.DbTableCommentTests.test_db_table_comment_required_db_features) ... ok 271s test_M2M_long_column_name (invalid_models_tests.test_models.FieldNamesTests.test_M2M_long_column_name) 271s #13711 -- Model check for long M2M column names when database has ... skipped "The database doesn't have a column name length limit." 271s test_db_column_clash (invalid_models_tests.test_models.FieldNamesTests.test_db_column_clash) ... ok 271s test_ending_with_underscore (invalid_models_tests.test_models.FieldNamesTests.test_ending_with_underscore) ... ok 271s test_including_separator (invalid_models_tests.test_models.FieldNamesTests.test_including_separator) ... ok 271s test_local_field_long_column_name (invalid_models_tests.test_models.FieldNamesTests.test_local_field_long_column_name) 271s #13711 -- Model check for long column names ... skipped "The database doesn't have a column name length limit." 271s test_pk (invalid_models_tests.test_models.FieldNamesTests.test_pk) ... ok 271s test_check_constraint_pointing_to_fk (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_fk) ... ok 271s test_check_constraint_pointing_to_joined_fields (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_joined_fields) ... ok 271s test_check_constraint_pointing_to_joined_fields_complex_check (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_joined_fields_complex_check) ... ok 271s test_check_constraint_pointing_to_m2m_field (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_m2m_field) ... ok 271s test_check_constraint_pointing_to_missing_field (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_missing_field) ... ok 271s test_check_constraint_pointing_to_non_local_field (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_non_local_field) ... ok 271s test_check_constraint_pointing_to_pk (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_pk) ... ok 271s test_check_constraint_pointing_to_reverse_fk (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_reverse_fk) ... ok 271s test_check_constraint_pointing_to_reverse_o2o (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_pointing_to_reverse_o2o) ... ok 271s test_check_constraint_raw_sql_check (invalid_models_tests.test_models.ConstraintsTests.test_check_constraint_raw_sql_check) ... ok 271s test_check_constraints (invalid_models_tests.test_models.ConstraintsTests.test_check_constraints) ... ok 271s test_check_constraints_required_db_features (invalid_models_tests.test_models.ConstraintsTests.test_check_constraints_required_db_features) ... ok 271s test_deferrable_unique_constraint (invalid_models_tests.test_models.ConstraintsTests.test_deferrable_unique_constraint) ... ok 271s test_deferrable_unique_constraint_required_db_features (invalid_models_tests.test_models.ConstraintsTests.test_deferrable_unique_constraint_required_db_features) ... ok 271s test_func_unique_constraint (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint) ... ok 271s test_func_unique_constraint_expression_custom_lookup (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint_expression_custom_lookup) ... ok 271s test_func_unique_constraint_pointing_to_fk (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint_pointing_to_fk) ... ok 271s test_func_unique_constraint_pointing_to_m2m_field (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint_pointing_to_m2m_field) ... ok 271s test_func_unique_constraint_pointing_to_missing_field (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint_pointing_to_missing_field) ... ok 271s test_func_unique_constraint_pointing_to_missing_field_nested (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint_pointing_to_missing_field_nested) ... ok 271s test_func_unique_constraint_pointing_to_non_local_field (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint_pointing_to_non_local_field) ... ok 271s test_func_unique_constraint_required_db_features (invalid_models_tests.test_models.ConstraintsTests.test_func_unique_constraint_required_db_features) ... ok 271s test_unique_constraint_condition_pointing_to_joined_fields (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_condition_pointing_to_joined_fields) ... ok 271s test_unique_constraint_condition_pointing_to_missing_field (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_condition_pointing_to_missing_field) ... ok 271s test_unique_constraint_include_pointing_to_fk (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_include_pointing_to_fk) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_unique_constraint_include_pointing_to_m2m_field (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_include_pointing_to_m2m_field) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_unique_constraint_include_pointing_to_missing_field (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_include_pointing_to_missing_field) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_unique_constraint_include_pointing_to_non_local_field (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_include_pointing_to_non_local_field) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_unique_constraint_pointing_to_fk (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_pointing_to_fk) ... ok 271s test_unique_constraint_pointing_to_m2m_field (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_pointing_to_m2m_field) ... ok 271s test_unique_constraint_pointing_to_missing_field (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_pointing_to_missing_field) ... ok 271s test_unique_constraint_pointing_to_non_local_field (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_pointing_to_non_local_field) ... ok 271s test_unique_constraint_pointing_to_reverse_o2o (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_pointing_to_reverse_o2o) ... ok 271s test_unique_constraint_with_condition (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_with_condition) ... ok 271s test_unique_constraint_with_condition_required_db_features (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_with_condition_required_db_features) ... ok 271s test_unique_constraint_with_include (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_with_include) ... ok 271s test_unique_constraint_with_include_required_db_features (invalid_models_tests.test_models.ConstraintsTests.test_unique_constraint_with_include_required_db_features) ... ok 271s test_check_jsonfield (invalid_models_tests.test_models.JSONFieldTests.test_check_jsonfield) ... ok 271s test_check_jsonfield_required_db_features (invalid_models_tests.test_models.JSONFieldTests.test_check_jsonfield_required_db_features) ... ok 271s test_ordering_pointing_to_json_field_value (invalid_models_tests.test_models.JSONFieldTests.test_ordering_pointing_to_json_field_value) ... ok 271s test_multiple_autofields (invalid_models_tests.test_models.MultipleAutoFieldsTests.test_multiple_autofields) ... ok 271s test_func_index (invalid_models_tests.test_models.IndexesTests.test_func_index) ... ok 271s test_func_index_complex_expression_custom_lookup (invalid_models_tests.test_models.IndexesTests.test_func_index_complex_expression_custom_lookup) ... ok 271s test_func_index_pointing_to_fk (invalid_models_tests.test_models.IndexesTests.test_func_index_pointing_to_fk) ... ok 271s test_func_index_pointing_to_m2m_field (invalid_models_tests.test_models.IndexesTests.test_func_index_pointing_to_m2m_field) ... ok 271s test_func_index_pointing_to_missing_field (invalid_models_tests.test_models.IndexesTests.test_func_index_pointing_to_missing_field) ... ok 271s test_func_index_pointing_to_missing_field_nested (invalid_models_tests.test_models.IndexesTests.test_func_index_pointing_to_missing_field_nested) ... ok 271s test_func_index_pointing_to_non_local_field (invalid_models_tests.test_models.IndexesTests.test_func_index_pointing_to_non_local_field) ... ok 271s test_func_index_required_db_features (invalid_models_tests.test_models.IndexesTests.test_func_index_required_db_features) ... ok 271s test_index_include_pointing_to_fk (invalid_models_tests.test_models.IndexesTests.test_index_include_pointing_to_fk) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_index_include_pointing_to_m2m_field (invalid_models_tests.test_models.IndexesTests.test_index_include_pointing_to_m2m_field) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_index_include_pointing_to_missing_field (invalid_models_tests.test_models.IndexesTests.test_index_include_pointing_to_missing_field) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_index_include_pointing_to_non_local_field (invalid_models_tests.test_models.IndexesTests.test_index_include_pointing_to_non_local_field) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 271s test_index_with_condition (invalid_models_tests.test_models.IndexesTests.test_index_with_condition) ... ok 271s test_index_with_condition_required_db_features (invalid_models_tests.test_models.IndexesTests.test_index_with_condition_required_db_features) ... ok 271s test_index_with_include (invalid_models_tests.test_models.IndexesTests.test_index_with_include) ... ok 271s test_index_with_include_required_db_features (invalid_models_tests.test_models.IndexesTests.test_index_with_include_required_db_features) ... ok 271s test_max_name_length (invalid_models_tests.test_models.IndexesTests.test_max_name_length) ... ok 271s test_name_constraints (invalid_models_tests.test_models.IndexesTests.test_name_constraints) ... ok 271s test_pointing_to_fk (invalid_models_tests.test_models.IndexesTests.test_pointing_to_fk) ... ok 271s test_pointing_to_m2m_field (invalid_models_tests.test_models.IndexesTests.test_pointing_to_m2m_field) ... ok 271s test_pointing_to_missing_field (invalid_models_tests.test_models.IndexesTests.test_pointing_to_missing_field) ... ok 271s test_pointing_to_non_local_field (invalid_models_tests.test_models.IndexesTests.test_pointing_to_non_local_field) ... ok 271s test_db_comment (invalid_models_tests.test_ordinary_fields.DbCommentTests.test_db_comment) ... ok 271s test_db_comment_required_db_features (invalid_models_tests.test_ordinary_fields.DbCommentTests.test_db_comment_required_db_features) ... ok 272s test_invalid_default (invalid_models_tests.test_ordinary_fields.JSONFieldTests.test_invalid_default) ... ok 272s test_valid_callable_default (invalid_models_tests.test_ordinary_fields.JSONFieldTests.test_valid_callable_default) ... ok 272s test_valid_default (invalid_models_tests.test_ordinary_fields.JSONFieldTests.test_valid_default) ... ok 272s test_valid_default_none (invalid_models_tests.test_ordinary_fields.JSONFieldTests.test_valid_default_none) ... ok 272s test_db_collation (invalid_models_tests.test_ordinary_fields.TextFieldTests.test_db_collation) ... ok 272s test_db_collation_required_db_features (invalid_models_tests.test_ordinary_fields.TextFieldTests.test_db_collation_required_db_features) ... ok 272s test_max_length_warning (invalid_models_tests.test_ordinary_fields.TextFieldTests.test_max_length_warning) ... skipped 'Database has feature(s) supports_index_on_text_field' 272s test_bad_db_index_value (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_bad_db_index_value) ... ok 272s test_bad_max_length_value (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_bad_max_length_value) ... ok 272s test_bad_validators (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_bad_validators) ... ok 272s test_choices_containing_lazy (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_choices_containing_lazy) ... ok 272s test_choices_containing_non_pairs (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_choices_containing_non_pairs) ... ok 272s test_choices_in_max_length (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_choices_in_max_length) ... ok 272s test_choices_named_group (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_choices_named_group) ... ok 272s test_choices_named_group_bad_structure (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_choices_named_group_bad_structure) ... ok 272s test_choices_named_group_lazy (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_choices_named_group_lazy) ... ok 272s test_choices_named_group_non_pairs (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_choices_named_group_non_pairs) ... ok 272s test_db_collation (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_db_collation) ... ok 272s test_db_collation_required_db_features (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_db_collation_required_db_features) ... ok 272s test_iterable_of_iterable_choices (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_iterable_of_iterable_choices) ... ok 272s test_lazy_choices (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_lazy_choices) ... ok 272s test_missing_max_length (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_missing_max_length) ... ok 272s test_negative_max_length (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_negative_max_length) ... ok 272s test_non_iterable_choices (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_non_iterable_choices) ... ok 272s test_non_iterable_choices_two_letters (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_non_iterable_choices_two_letters) 272s Two letters isn't a valid choice pair. ... ok 272s test_str_max_length_type (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_str_max_length_type) ... ok 272s test_str_max_length_value (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_str_max_length_value) ... ok 272s test_too_long_char_field_under_mysql (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_too_long_char_field_under_mysql) ... skipped 'Test valid only for MySQL' 272s test_valid_field (invalid_models_tests.test_ordinary_fields.CharFieldTests.test_valid_field) ... ok 272s test_choices_named_group (invalid_models_tests.test_ordinary_fields.UUIDFieldTests.test_choices_named_group) ... ok 272s test_fallback_flatpage (flatpages_tests.test_csrf.FlatpageCSRFTests.test_fallback_flatpage) 272s A flatpage can be served by the fallback middleware ... ok 272s test_fallback_non_existent_flatpage (flatpages_tests.test_csrf.FlatpageCSRFTests.test_fallback_non_existent_flatpage) 272s A nonexistent flatpage raises a 404 when served by the fallback ... ok 272s test_post_fallback_flatpage (flatpages_tests.test_csrf.FlatpageCSRFTests.test_post_fallback_flatpage) 272s POSTing to a flatpage served by the middleware will raise a CSRF error ... ok 272s test_post_unknown_page (flatpages_tests.test_csrf.FlatpageCSRFTests.test_post_unknown_page) 272s POSTing to an unknown page isn't caught as a 403 CSRF error ... ok 272s test_post_view_flatpage (flatpages_tests.test_csrf.FlatpageCSRFTests.test_post_view_flatpage) 272s POSTing to a flatpage served through a view will raise a CSRF error if ... ok 272s test_view_authenticated_flatpage (flatpages_tests.test_csrf.FlatpageCSRFTests.test_view_authenticated_flatpage) 272s A flatpage served through a view can require authentication ... ok 272s test_view_flatpage (flatpages_tests.test_csrf.FlatpageCSRFTests.test_view_flatpage) 272s A flatpage can be served through a view, even when the middleware is in use ... ok 272s test_view_non_existent_flatpage (flatpages_tests.test_csrf.FlatpageCSRFTests.test_view_non_existent_flatpage) 272s A nonexistent flatpage raises 404 when served through a view, even when ... ok 272s test_flatpage_admin_form_edit (flatpages_tests.test_forms.FlatpageAdminFormTests.test_flatpage_admin_form_edit) 272s Existing flatpages can be edited in the admin form without triggering ... ok 272s test_flatpage_admin_form_url_uniqueness_validation (flatpages_tests.test_forms.FlatpageAdminFormTests.test_flatpage_admin_form_url_uniqueness_validation) 272s The flatpage admin form correctly enforces url uniqueness among ... ok 272s test_flatpage_admin_form_url_validation (flatpages_tests.test_forms.FlatpageAdminFormTests.test_flatpage_admin_form_url_validation) 272s The flatpage admin form correctly validates urls ... ok 272s test_flatpage_doesnt_requires_trailing_slash_without_append_slash (flatpages_tests.test_forms.FlatpageAdminFormTests.test_flatpage_doesnt_requires_trailing_slash_without_append_slash) ... ok 272s test_flatpage_nosites (flatpages_tests.test_forms.FlatpageAdminFormTests.test_flatpage_nosites) ... ok 272s test_flatpage_requires_leading_slash (flatpages_tests.test_forms.FlatpageAdminFormTests.test_flatpage_requires_leading_slash) ... ok 272s test_flatpage_requires_trailing_slash_with_append_slash (flatpages_tests.test_forms.FlatpageAdminFormTests.test_flatpage_requires_trailing_slash_with_append_slash) ... ok 272s test_redirect_fallback_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareAppendSlashTests.test_redirect_fallback_flatpage) 272s A flatpage can be served by the fallback middleware and should add a slash ... ok 272s test_redirect_fallback_flatpage_root (flatpages_tests.test_middleware.FlatpageMiddlewareAppendSlashTests.test_redirect_fallback_flatpage_root) 272s A flatpage at / should not cause a redirect loop when APPEND_SLASH is set ... ok 272s test_redirect_fallback_flatpage_special_chars (flatpages_tests.test_middleware.FlatpageMiddlewareAppendSlashTests.test_redirect_fallback_flatpage_special_chars) 272s A flatpage with special chars in the URL can be served by the fallback ... ok 272s test_redirect_fallback_non_existent_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareAppendSlashTests.test_redirect_fallback_non_existent_flatpage) 272s A nonexistent flatpage raises a 404 when served by the fallback ... ok 272s test_redirect_view_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareAppendSlashTests.test_redirect_view_flatpage) 272s A flatpage can be served through a view and should add a slash ... ok 272s test_redirect_view_non_existent_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareAppendSlashTests.test_redirect_view_non_existent_flatpage) 272s A nonexistent flatpage raises 404 when served through a view and ... ok 272s test_flatpage_sitemap (flatpages_tests.test_sitemaps.FlatpagesSitemapTests.test_flatpage_sitemap) ... ok 272s test_fallback_authenticated_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareTests.test_fallback_authenticated_flatpage) 272s A flatpage served by the middleware can require authentication ... ok 272s test_fallback_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareTests.test_fallback_flatpage) 272s A flatpage can be served by the fallback middleware ... ok 272s test_fallback_flatpage_special_chars (flatpages_tests.test_middleware.FlatpageMiddlewareTests.test_fallback_flatpage_special_chars) 272s A flatpage with special chars in the URL can be served by the fallback ... ok 272s test_fallback_non_existent_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareTests.test_fallback_non_existent_flatpage) 272s A nonexistent flatpage raises a 404 when served by the fallback ... ok 272s test_view_authenticated_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareTests.test_view_authenticated_flatpage) 272s A flatpage served through a view can require authentication ... ok 272s test_view_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareTests.test_view_flatpage) 272s A flatpage can be served through a view, even when the middleware is in use ... ok 272s test_view_non_existent_flatpage (flatpages_tests.test_middleware.FlatpageMiddlewareTests.test_view_non_existent_flatpage) 272s A nonexistent flatpage raises 404 when served through a view, even when ... ok 272s test_redirect_fallback_flatpage (flatpages_tests.test_views.FlatpageViewAppendSlashTests.test_redirect_fallback_flatpage) 272s A fallback flatpage won't be served if the middleware is disabled and ... ok 272s test_redirect_fallback_non_existent_flatpage (flatpages_tests.test_views.FlatpageViewAppendSlashTests.test_redirect_fallback_non_existent_flatpage) 272s A nonexistent flatpage won't be served if the fallback middleware is ... ok 272s test_redirect_view_flatpage (flatpages_tests.test_views.FlatpageViewAppendSlashTests.test_redirect_view_flatpage) 272s A flatpage can be served through a view and should add a slash ... ok 272s test_redirect_view_flatpage_special_chars (flatpages_tests.test_views.FlatpageViewAppendSlashTests.test_redirect_view_flatpage_special_chars) 272s A flatpage with special chars in the URL can be served through a view ... ok 272s test_redirect_view_non_existent_flatpage (flatpages_tests.test_views.FlatpageViewAppendSlashTests.test_redirect_view_non_existent_flatpage) 272s A nonexistent flatpage raises 404 when served through a view and ... ok 272s test_get_flatpages_tag (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_get_flatpages_tag) 272s The flatpage template tag retrieves unregistered prefixed flatpages by default ... ok 272s test_get_flatpages_tag_for_anon_user (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_get_flatpages_tag_for_anon_user) 272s The flatpage template tag retrieves unregistered flatpages for an ... ok 272s test_get_flatpages_tag_for_user (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_get_flatpages_tag_for_user) 272s The flatpage template tag retrieves all flatpages for an authenticated user ... ok 272s test_get_flatpages_with_prefix (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_get_flatpages_with_prefix) 272s The flatpage template tag retrieves unregistered prefixed flatpages by default ... ok 272s test_get_flatpages_with_prefix_for_anon_user (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_get_flatpages_with_prefix_for_anon_user) 272s The flatpage template tag retrieves unregistered prefixed flatpages for ... ok 272s test_get_flatpages_with_prefix_for_user (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_get_flatpages_with_prefix_for_user) 272s The flatpage template tag retrieve prefixed flatpages for an ... ok 272s test_get_flatpages_with_variable_prefix (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_get_flatpages_with_variable_prefix) 272s The prefix for the flatpage template tag can be a template variable ... ok 272s test_parsing_errors (flatpages_tests.test_templatetags.FlatpageTemplateTagTests.test_parsing_errors) 272s There are various ways that the flatpages template tag won't parse ... ok 273s test_fallback_flatpage (flatpages_tests.test_views.FlatpageViewTests.test_fallback_flatpage) 273s A fallback flatpage won't be served if the middleware is disabled ... ok 273s test_fallback_non_existent_flatpage (flatpages_tests.test_views.FlatpageViewTests.test_fallback_non_existent_flatpage) 273s A nonexistent flatpage won't be served if the fallback middleware is ... ok 273s test_view_authenticated_flatpage (flatpages_tests.test_views.FlatpageViewTests.test_view_authenticated_flatpage) 273s A flatpage served through a view can require authentication ... ok 273s test_view_flatpage (flatpages_tests.test_views.FlatpageViewTests.test_view_flatpage) 273s A flatpage can be served through a view ... ok 273s test_view_flatpage_special_chars (flatpages_tests.test_views.FlatpageViewTests.test_view_flatpage_special_chars) 273s A flatpage with special chars in the URL can be served through a view ... ok 273s test_view_non_existent_flatpage (flatpages_tests.test_views.FlatpageViewTests.test_view_non_existent_flatpage) 273s A nonexistent flatpage raises 404 when served through a view. ... ok 273s test_m2m_prefetch_proxied (m2m_through_regress.test_multitable.MultiTableTests.test_m2m_prefetch_proxied) ... ok 273s test_m2m_prefetch_reverse_proxied (m2m_through_regress.test_multitable.MultiTableTests.test_m2m_prefetch_reverse_proxied) ... ok 273s test_m2m_query (m2m_through_regress.test_multitable.MultiTableTests.test_m2m_query) ... ok 273s test_m2m_query_proxied (m2m_through_regress.test_multitable.MultiTableTests.test_m2m_query_proxied) ... ok 273s test_m2m_reverse_query (m2m_through_regress.test_multitable.MultiTableTests.test_m2m_reverse_query) ... ok 273s test_m2m_reverse_query_proxied (m2m_through_regress.test_multitable.MultiTableTests.test_m2m_reverse_query_proxied) ... ok 273s test_serialization (m2m_through_regress.tests.M2MThroughSerializationTestCase.test_serialization) 273s m2m-through models aren't serialized as m2m fields. Refs #8134 ... ok 273s test_join_trimming_forwards (m2m_through_regress.tests.M2MThroughTestCase.test_join_trimming_forwards) 273s Too many copies of the intermediate table aren't involved when doing a ... ok 273s test_join_trimming_reverse (m2m_through_regress.tests.M2MThroughTestCase.test_join_trimming_reverse) ... ok 273s test_retrieve_forward_m2m_items (m2m_through_regress.tests.M2MThroughTestCase.test_retrieve_forward_m2m_items) ... ok 273s test_retrieve_forward_m2m_items_via_custom_id_intermediary (m2m_through_regress.tests.M2MThroughTestCase.test_retrieve_forward_m2m_items_via_custom_id_intermediary) ... ok 273s test_retrieve_reverse_m2m_items (m2m_through_regress.tests.M2MThroughTestCase.test_retrieve_reverse_m2m_items) ... ok 273s test_retrieve_reverse_m2m_items_via_custom_id_intermediary (m2m_through_regress.tests.M2MThroughTestCase.test_retrieve_reverse_m2m_items_via_custom_id_intermediary) ... ok 273s test_add (many_to_many.tests.ManyToManyTests.test_add) ... ok 273s test_add_after_prefetch (many_to_many.tests.ManyToManyTests.test_add_after_prefetch) ... ok 273s test_add_existing_different_type (many_to_many.tests.ManyToManyTests.test_add_existing_different_type) ... skipped 'Database has feature(s) supports_ignore_conflicts' 273s test_add_remove_invalid_type (many_to_many.tests.ManyToManyTests.test_add_remove_invalid_type) ... ok 273s test_add_remove_set_by_pk (many_to_many.tests.ManyToManyTests.test_add_remove_set_by_pk) ... ok 273s test_add_remove_set_by_to_field (many_to_many.tests.ManyToManyTests.test_add_remove_set_by_to_field) ... ok 273s test_add_then_remove_after_prefetch (many_to_many.tests.ManyToManyTests.test_add_then_remove_after_prefetch) ... ok 273s test_assign (many_to_many.tests.ManyToManyTests.test_assign) ... ok 273s test_assign_forward (many_to_many.tests.ManyToManyTests.test_assign_forward) ... ok 273s test_assign_ids (many_to_many.tests.ManyToManyTests.test_assign_ids) ... ok 273s test_assign_reverse (many_to_many.tests.ManyToManyTests.test_assign_reverse) ... ok 273s test_bulk_delete (many_to_many.tests.ManyToManyTests.test_bulk_delete) ... ok 273s test_clear (many_to_many.tests.ManyToManyTests.test_clear) ... ok 273s test_clear_after_prefetch (many_to_many.tests.ManyToManyTests.test_clear_after_prefetch) ... ok 273s test_custom_default_manager_exists_count (many_to_many.tests.ManyToManyTests.test_custom_default_manager_exists_count) ... ok 273s test_delete (many_to_many.tests.ManyToManyTests.test_delete) ... ok 273s test_fast_add_ignore_conflicts (many_to_many.tests.ManyToManyTests.test_fast_add_ignore_conflicts) 273s A single query is necessary to add auto-created through instances if ... ok 273s test_forward_assign_with_queryset (many_to_many.tests.ManyToManyTests.test_forward_assign_with_queryset) ... ok 273s test_inherited_models_selects (many_to_many.tests.ManyToManyTests.test_inherited_models_selects) 273s #24156 - Objects from child models where the parent's m2m field uses ... ok 273s test_related_manager_refresh (many_to_many.tests.ManyToManyTests.test_related_manager_refresh) ... ok 273s test_related_sets (many_to_many.tests.ManyToManyTests.test_related_sets) ... ok 273s test_remove (many_to_many.tests.ManyToManyTests.test_remove) ... ok 273s test_remove_after_prefetch (many_to_many.tests.ManyToManyTests.test_remove_after_prefetch) ... ok 273s test_reverse_add (many_to_many.tests.ManyToManyTests.test_reverse_add) ... ok 273s test_reverse_assign_with_queryset (many_to_many.tests.ManyToManyTests.test_reverse_assign_with_queryset) ... ok 273s test_reverse_selects (many_to_many.tests.ManyToManyTests.test_reverse_selects) ... ok 273s test_selects (many_to_many.tests.ManyToManyTests.test_selects) ... ok 273s test_set (many_to_many.tests.ManyToManyTests.test_set) ... ok 273s test_set_after_prefetch (many_to_many.tests.ManyToManyTests.test_set_after_prefetch) ... ok 273s test_set_existing_different_type (many_to_many.tests.ManyToManyTests.test_set_existing_different_type) ... ok 273s test_slow_add_ignore_conflicts (many_to_many.tests.ManyToManyTests.test_slow_add_ignore_conflicts) ... ok 273s test_sequence_creation (m2m_through_regress.tests.ThroughLoadDataTestCase.test_sequence_creation) 273s Sequences on an m2m_through are created for the through model, not a ... ok 273s test_deep_mixed_backward (foreign_object.test_agnostic_order_trimjoin.TestLookupQuery.test_deep_mixed_backward) ... ok 273s test_deep_mixed_forward (foreign_object.test_agnostic_order_trimjoin.TestLookupQuery.test_deep_mixed_forward) ... ok 273s test_add (m2m_through_regress.tests.ToFieldThroughTests.test_add) ... ok 273s test_add_null_reverse (m2m_through_regress.tests.ToFieldThroughTests.test_add_null_reverse) ... ok 273s test_add_null_reverse_related (m2m_through_regress.tests.ToFieldThroughTests.test_add_null_reverse_related) ... ok 273s test_add_related_null (m2m_through_regress.tests.ToFieldThroughTests.test_add_related_null) ... ok 273s test_add_reverse (m2m_through_regress.tests.ToFieldThroughTests.test_add_reverse) ... ok 273s test_m2m_relations_unusable_on_null_pk_obj (m2m_through_regress.tests.ToFieldThroughTests.test_m2m_relations_unusable_on_null_pk_obj) ... ok 273s test_m2m_relations_unusable_on_null_to_field (m2m_through_regress.tests.ToFieldThroughTests.test_m2m_relations_unusable_on_null_to_field) ... ok 273s test_remove (m2m_through_regress.tests.ToFieldThroughTests.test_remove) ... ok 273s test_remove_reverse (m2m_through_regress.tests.ToFieldThroughTests.test_remove_reverse) ... ok 273s test_to_field (m2m_through_regress.tests.ToFieldThroughTests.test_to_field) ... ok 273s test_to_field_clear (m2m_through_regress.tests.ToFieldThroughTests.test_to_field_clear) ... ok 273s test_to_field_clear_reverse (m2m_through_regress.tests.ToFieldThroughTests.test_to_field_clear_reverse) ... ok 273s test_to_field_reverse (m2m_through_regress.tests.ToFieldThroughTests.test_to_field_reverse) ... ok 273s test_empty_join_conditions (foreign_object.test_empty_join.RestrictedConditionsTests.test_empty_join_conditions) ... ok 273s test_restrictions_with_no_joining_columns (foreign_object.test_empty_join.RestrictedConditionsTests.test_restrictions_with_no_joining_columns) 273s It's possible to create a working related field that doesn't ... ok 273s test_foreign_object_form (foreign_object.test_forms.FormsTests.test_foreign_object_form) ... ok 273s test_copy_removes_direct_cached_values (foreign_object.tests.TestCachedPathInfo.test_copy_removes_direct_cached_values) 273s Shallow copying a ForeignObject (or a ForeignObjectRel) removes the ... ok 273s test_deepcopy_removes_cached_values (foreign_object.tests.TestCachedPathInfo.test_deepcopy_removes_cached_values) 273s Deep copying a ForeignObject removes the object's cached PathInfo ... ok 273s test_equality (foreign_object.tests.TestCachedPathInfo.test_equality) 273s The path_infos and reverse_path_infos attributes are equivalent to ... ok 273s test_pickling_foreignobject (foreign_object.tests.TestCachedPathInfo.test_pickling_foreignobject) 273s Pickling a ForeignObject does not remove the cached PathInfo values. ... ok 273s test_pickling_foreignobjectrel (foreign_object.tests.TestCachedPathInfo.test_pickling_foreignobjectrel) 273s Pickling a ForeignObjectRel removes the path_infos attribute. ... ok 273s test_extra_join_filter_q (foreign_object.tests.TestExtraJoinFilterQ.test_extra_join_filter_q) ... ok 274s test_ordering_across_null_fk (null_fk_ordering.tests.NullFkOrderingTests.test_ordering_across_null_fk) 274s Regression test for #7512 ... ok 274s test_foreignkey_forward (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_foreignkey_forward) ... ok 274s test_foreignkey_reverse (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_foreignkey_reverse) ... ok 274s test_m2m_forward (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_m2m_forward) ... ok 274s test_m2m_reverse (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_m2m_reverse) ... ok 274s test_m2m_then_m2m (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_m2m_then_m2m) 274s A m2m can be followed through another m2m. ... ok 274s test_prefetch_object (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_prefetch_object) ... ok 274s test_prefetch_object_to_attr (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_prefetch_object_to_attr) ... ok 274s test_prefetch_object_to_attr_twice (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_prefetch_object_to_attr_twice) ... ok 274s test_prefetch_object_twice (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_prefetch_object_twice) ... ok 274s test_prefetch_queryset (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_prefetch_queryset) ... ok 274s test_unknown (prefetch_related.test_prefetch_related_objects.PrefetchRelatedObjectsTests.test_unknown) ... ok 274s test_batch_create_foreign_object (foreign_object.tests.MultiColumnFKTests.test_batch_create_foreign_object) ... ok 274s test_double_nested_query (foreign_object.tests.MultiColumnFKTests.test_double_nested_query) ... ok 274s test_foreign_key_raises_informative_does_not_exist (foreign_object.tests.MultiColumnFKTests.test_foreign_key_raises_informative_does_not_exist) ... ok 274s test_foreign_key_related_query_name (foreign_object.tests.MultiColumnFKTests.test_foreign_key_related_query_name) ... ok 274s test_forward_in_lookup_filters_correctly (foreign_object.tests.MultiColumnFKTests.test_forward_in_lookup_filters_correctly) ... ok 274s test_get_fails_on_multicolumn_mismatch (foreign_object.tests.MultiColumnFKTests.test_get_fails_on_multicolumn_mismatch) ... ok 274s test_get_succeeds_on_multicolumn_match (foreign_object.tests.MultiColumnFKTests.test_get_succeeds_on_multicolumn_match) ... ok 274s test_inheritance (foreign_object.tests.MultiColumnFKTests.test_inheritance) ... ok 274s test_isnull_lookup (foreign_object.tests.MultiColumnFKTests.test_isnull_lookup) ... ok 274s test_m2m_through_forward_ignores_invalid_members (foreign_object.tests.MultiColumnFKTests.test_m2m_through_forward_ignores_invalid_members) ... ok 274s test_m2m_through_forward_returns_valid_members (foreign_object.tests.MultiColumnFKTests.test_m2m_through_forward_returns_valid_members) ... ok 274s test_m2m_through_on_self_ignores_mismatch_columns (foreign_object.tests.MultiColumnFKTests.test_m2m_through_on_self_ignores_mismatch_columns) ... ok 274s test_m2m_through_on_self_works (foreign_object.tests.MultiColumnFKTests.test_m2m_through_on_self_works) ... ok 274s test_m2m_through_reverse_ignores_invalid_members (foreign_object.tests.MultiColumnFKTests.test_m2m_through_reverse_ignores_invalid_members) ... ok 274s test_m2m_through_reverse_returns_valid_members (foreign_object.tests.MultiColumnFKTests.test_m2m_through_reverse_returns_valid_members) ... ok 274s test_many_to_many_related_query_name (foreign_object.tests.MultiColumnFKTests.test_many_to_many_related_query_name) ... ok 274s test_prefetch_foreignkey_forward_works (foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignkey_forward_works) ... ok 274s test_prefetch_foreignkey_reverse_works (foreign_object.tests.MultiColumnFKTests.test_prefetch_foreignkey_reverse_works) ... ok 274s test_prefetch_related_m2m_forward_works (foreign_object.tests.MultiColumnFKTests.test_prefetch_related_m2m_forward_works) ... ok 274s test_prefetch_related_m2m_reverse_works (foreign_object.tests.MultiColumnFKTests.test_prefetch_related_m2m_reverse_works) ... ok 274s test_query_filters_correctly (foreign_object.tests.MultiColumnFKTests.test_query_filters_correctly) ... ok 274s test_reverse_query_filters_correctly (foreign_object.tests.MultiColumnFKTests.test_reverse_query_filters_correctly) ... ok 274s test_reverse_query_returns_correct_result (foreign_object.tests.MultiColumnFKTests.test_reverse_query_returns_correct_result) ... ok 274s test_select_related_foreignkey_forward_works (foreign_object.tests.MultiColumnFKTests.test_select_related_foreignkey_forward_works) ... ok 274s test_translations (foreign_object.tests.MultiColumnFKTests.test_translations) ... ok 274s test_prefetch_related_from_uuid_model (prefetch_related.test_uuid.UUIDPrefetchRelated.test_prefetch_related_from_uuid_model) ... ok 274s test_prefetch_related_from_uuid_model_to_uuid_model (prefetch_related.test_uuid.UUIDPrefetchRelated.test_prefetch_related_from_uuid_model_to_uuid_model) ... ok 274s test_prefetch_related_from_uuid_model_to_uuid_model_with_values_flat (prefetch_related.test_uuid.UUIDPrefetchRelated.test_prefetch_related_from_uuid_model_to_uuid_model_with_values_flat) ... ok 274s test_prefetch_related_to_uuid_model (prefetch_related.test_uuid.UUIDPrefetchRelated.test_prefetch_related_to_uuid_model) ... ok 274s test_from_integer_pk_lookup_integer_pk_uuid_pk (prefetch_related.test_uuid.UUIDPrefetchRelatedLookups.test_from_integer_pk_lookup_integer_pk_uuid_pk) ... ok 274s test_from_integer_pk_lookup_integer_pk_uuid_pk_uuid_pk (prefetch_related.test_uuid.UUIDPrefetchRelatedLookups.test_from_integer_pk_lookup_integer_pk_uuid_pk_uuid_pk) ... ok 274s test_from_integer_pk_lookup_uuid_pk_integer_pk (prefetch_related.test_uuid.UUIDPrefetchRelatedLookups.test_from_integer_pk_lookup_uuid_pk_integer_pk) ... ok 274s test_from_uuid_pk_lookup_integer_pk2_uuid_pk2 (prefetch_related.test_uuid.UUIDPrefetchRelatedLookups.test_from_uuid_pk_lookup_integer_pk2_uuid_pk2) ... ok 274s test_from_uuid_pk_lookup_uuid_pk_integer_pk (prefetch_related.test_uuid.UUIDPrefetchRelatedLookups.test_from_uuid_pk_lookup_uuid_pk_integer_pk) ... ok 274s test_m2m_then_m2m (prefetch_related.tests.DefaultManagerTests.test_m2m_then_m2m) ... ok 274s test_ambiguous (prefetch_related.tests.CustomPrefetchTests.test_ambiguous) ... ok 274s test_custom_qs (prefetch_related.tests.CustomPrefetchTests.test_custom_qs) ... ok 274s test_filter_deferred (prefetch_related.tests.CustomPrefetchTests.test_filter_deferred) 274s Related filtering of prefetched querysets is deferred until necessary. ... ok 274s test_generic_rel (prefetch_related.tests.CustomPrefetchTests.test_generic_rel) ... ok 274s test_m2m (prefetch_related.tests.CustomPrefetchTests.test_m2m) ... ok 274s test_m2m_through_fk (prefetch_related.tests.CustomPrefetchTests.test_m2m_through_fk) ... ok 274s test_m2m_through_gfk (prefetch_related.tests.CustomPrefetchTests.test_m2m_through_gfk) ... ok 274s test_nested_prefetch_related_are_not_overwritten (prefetch_related.tests.CustomPrefetchTests.test_nested_prefetch_related_are_not_overwritten) ... ok 274s test_nested_prefetch_related_with_duplicate_prefetcher (prefetch_related.tests.CustomPrefetchTests.test_nested_prefetch_related_with_duplicate_prefetcher) 274s Nested prefetches whose name clashes with descriptor names ... ok 274s test_o2m_through_m2m (prefetch_related.tests.CustomPrefetchTests.test_o2m_through_m2m) ... ok 274s test_raw_queryset (prefetch_related.tests.CustomPrefetchTests.test_raw_queryset) ... ok 274s test_reverse_m2m (prefetch_related.tests.CustomPrefetchTests.test_reverse_m2m) ... ok 274s test_to_attr_cached_property (prefetch_related.tests.CustomPrefetchTests.test_to_attr_cached_property) ... ok 274s test_to_attr_doesnt_cache_through_attr_as_list (prefetch_related.tests.CustomPrefetchTests.test_to_attr_doesnt_cache_through_attr_as_list) ... ok 274s test_traverse_multiple_items_property (prefetch_related.tests.CustomPrefetchTests.test_traverse_multiple_items_property) ... ok 274s test_traverse_qs (prefetch_related.tests.CustomPrefetchTests.test_traverse_qs) ... ok 274s test_traverse_single_item_property (prefetch_related.tests.CustomPrefetchTests.test_traverse_single_item_property) ... ok 274s test_values_queryset (prefetch_related.tests.CustomPrefetchTests.test_values_queryset) ... ok 274s test_add_clears_prefetched_objects (prefetch_related.tests.DirectPrefetchedObjectCacheReuseTests.test_add_clears_prefetched_objects) ... ok 274s test_detect_is_fetched (prefetch_related.tests.DirectPrefetchedObjectCacheReuseTests.test_detect_is_fetched) 274s Nested prefetch_related() shouldn't trigger duplicate queries for the same ... ok 274s test_detect_is_fetched_with_to_attr (prefetch_related.tests.DirectPrefetchedObjectCacheReuseTests.test_detect_is_fetched_with_to_attr) ... ok 274s test_prefetch_reverse_foreign_key (prefetch_related.tests.DirectPrefetchedObjectCacheReuseTests.test_prefetch_reverse_foreign_key) ... ok 274s test_remove_clears_prefetched_objects (prefetch_related.tests.DirectPrefetchedObjectCacheReuseTests.test_remove_clears_prefetched_objects) ... ok 274s test_foreignkey (prefetch_related.tests.ForeignKeyToFieldTest.test_foreignkey) ... ok 274s test_m2m (prefetch_related.tests.ForeignKeyToFieldTest.test_m2m) ... ok 274s test_order (prefetch_related.tests.LookupOrderingTest.test_order) ... ok 275s test_charfield_GFK (prefetch_related.tests.GenericRelationTests.test_charfield_GFK) ... ok 275s test_custom_queryset (prefetch_related.tests.GenericRelationTests.test_custom_queryset) ... ok 275s test_deleted_GFK (prefetch_related.tests.GenericRelationTests.test_deleted_GFK) ... ok 275s test_generic_relation (prefetch_related.tests.GenericRelationTests.test_generic_relation) ... ok 275s test_nullable_GFK (prefetch_related.tests.GenericRelationTests.test_nullable_GFK) ... ok 275s test_prefetch_GFK (prefetch_related.tests.GenericRelationTests.test_prefetch_GFK) ... ok 275s test_prefetch_GFK_fk_pk (prefetch_related.tests.GenericRelationTests.test_prefetch_GFK_fk_pk) ... ok 275s test_prefetch_GFK_nonint_pk (prefetch_related.tests.GenericRelationTests.test_prefetch_GFK_nonint_pk) ... ok 275s test_prefetch_GFK_uuid_pk (prefetch_related.tests.GenericRelationTests.test_prefetch_GFK_uuid_pk) ... ok 275s test_traverse_GFK (prefetch_related.tests.GenericRelationTests.test_traverse_GFK) 275s A 'content_object' can be traversed with prefetch_related() and ... ok 275s test_using_is_honored_custom_qs (prefetch_related.tests.MultiDbTests.test_using_is_honored_custom_qs) ... ok 275s test_using_is_honored_fkey (prefetch_related.tests.MultiDbTests.test_using_is_honored_fkey) ... ok 275s test_using_is_honored_inheritance (prefetch_related.tests.MultiDbTests.test_using_is_honored_inheritance) ... ok 275s test_using_is_honored_m2m (prefetch_related.tests.MultiDbTests.test_using_is_honored_m2m) ... ok 275s test_nested_prefetch_is_not_overwritten_by_related_object (prefetch_related.tests.NestedPrefetchTests.test_nested_prefetch_is_not_overwritten_by_related_object) 275s The prefetched relationship is used rather than populating the reverse ... ok 275s test_child_link_prefetch (prefetch_related.tests.MultiTableInheritanceTest.test_child_link_prefetch) ... ok 275s test_foreignkey (prefetch_related.tests.MultiTableInheritanceTest.test_foreignkey) ... ok 275s test_foreignkey_to_inherited (prefetch_related.tests.MultiTableInheritanceTest.test_foreignkey_to_inherited) ... ok 275s test_m2m_to_inheriting_model (prefetch_related.tests.MultiTableInheritanceTest.test_m2m_to_inheriting_model) ... ok 275s test_parent_link_prefetch (prefetch_related.tests.MultiTableInheritanceTest.test_parent_link_prefetch) ... ok 275s test_in_bulk (prefetch_related.tests.NullableTest.test_in_bulk) 275s In-bulk does correctly prefetch objects by not using .iterator() ... ok 275s test_prefetch_nullable (prefetch_related.tests.NullableTest.test_prefetch_nullable) ... ok 275s test_traverse_nullable (prefetch_related.tests.NullableTest.test_traverse_nullable) ... ok 275s test_foreignkey_reverse (prefetch_related.tests.PrefetchLimitTests.test_foreignkey_reverse) ... ok 275s test_m2m_forward (prefetch_related.tests.PrefetchLimitTests.test_m2m_forward) ... ok 275s test_m2m_reverse (prefetch_related.tests.PrefetchLimitTests.test_m2m_reverse) ... ok 275s test_reverse_ordering (prefetch_related.tests.PrefetchLimitTests.test_reverse_ordering) ... ok 275s test_window_not_supported (prefetch_related.tests.PrefetchLimitTests.test_window_not_supported) ... skipped 'Database has feature(s) supports_over_clause' 275s test_basic (prefetch_related.tests.RawQuerySetTests.test_basic) ... ok 275s test_clear (prefetch_related.tests.RawQuerySetTests.test_clear) ... ok 275s test_prefetch_before_raw (prefetch_related.tests.RawQuerySetTests.test_prefetch_before_raw) ... ok 275s test_retrieves_results_from_prefetched_objects_cache (prefetch_related.tests.ReadPrefetchedObjectsCacheTests.test_retrieves_results_from_prefetched_objects_cache) 275s When intermediary results are prefetched without a destination ... ok 275s test_bug (prefetch_related.tests.Ticket19607Tests.test_bug) ... ok 275s test_bug (prefetch_related.tests.Ticket21410Tests.test_bug) ... ok 275s test_attribute_error (prefetch_related.tests.PrefetchRelatedTests.test_attribute_error) ... ok 275s test_bool (prefetch_related.tests.PrefetchRelatedTests.test_bool) ... ok 275s test_clear (prefetch_related.tests.PrefetchRelatedTests.test_clear) ... ok 275s test_count (prefetch_related.tests.PrefetchRelatedTests.test_count) ... ok 275s test_exists (prefetch_related.tests.PrefetchRelatedTests.test_exists) ... ok 275s test_filter_deferred (prefetch_related.tests.PrefetchRelatedTests.test_filter_deferred) 275s Related filtering of prefetched querysets is deferred on m2m and ... ok 275s test_foreign_key_then_m2m (prefetch_related.tests.PrefetchRelatedTests.test_foreign_key_then_m2m) 275s A m2m relation can be followed after a relation like ForeignKey that ... ok 275s test_foreignkey_forward (prefetch_related.tests.PrefetchRelatedTests.test_foreignkey_forward) ... ok 275s test_foreignkey_reverse (prefetch_related.tests.PrefetchRelatedTests.test_foreignkey_reverse) ... ok 275s test_forward_m2m_to_attr_conflict (prefetch_related.tests.PrefetchRelatedTests.test_forward_m2m_to_attr_conflict) ... ok 275s test_get (prefetch_related.tests.PrefetchRelatedTests.test_get) 275s Objects retrieved with .get() get the prefetch behavior. ... ok 275s test_in_and_prefetch_related (prefetch_related.tests.PrefetchRelatedTests.test_in_and_prefetch_related) 275s Regression test for #20242 - QuerySet "in" didn't work the first time ... ok 275s test_invalid_final_lookup (prefetch_related.tests.PrefetchRelatedTests.test_invalid_final_lookup) ... ok 275s test_len (prefetch_related.tests.PrefetchRelatedTests.test_len) ... ok 275s test_m2m_forward (prefetch_related.tests.PrefetchRelatedTests.test_m2m_forward) ... ok 275s test_m2m_prefetching_iterator_with_chunks (prefetch_related.tests.PrefetchRelatedTests.test_m2m_prefetching_iterator_with_chunks) ... ok 275s test_m2m_prefetching_iterator_without_chunks (prefetch_related.tests.PrefetchRelatedTests.test_m2m_prefetching_iterator_without_chunks) ... ok 275s test_m2m_prefetching_iterator_without_chunks_warning (prefetch_related.tests.PrefetchRelatedTests.test_m2m_prefetching_iterator_without_chunks_warning) ... ok 275s test_m2m_reverse (prefetch_related.tests.PrefetchRelatedTests.test_m2m_reverse) ... ok 275s test_m2m_then_m2m (prefetch_related.tests.PrefetchRelatedTests.test_m2m_then_m2m) 275s A m2m can be followed through another m2m. ... ok 275s test_m2m_then_m2m_object_ids (prefetch_related.tests.PrefetchRelatedTests.test_m2m_then_m2m_object_ids) ... ok 275s test_m2m_then_reverse_fk_object_ids (prefetch_related.tests.PrefetchRelatedTests.test_m2m_then_reverse_fk_object_ids) ... ok 275s test_m2m_then_reverse_one_to_one_object_ids (prefetch_related.tests.PrefetchRelatedTests.test_m2m_then_reverse_one_to_one_object_ids) ... ok 275s test_named_values_list (prefetch_related.tests.PrefetchRelatedTests.test_named_values_list) ... ok 275s test_onetoone_reverse_no_match (prefetch_related.tests.PrefetchRelatedTests.test_onetoone_reverse_no_match) ... ok 275s test_onetoone_reverse_with_to_field_pk (prefetch_related.tests.PrefetchRelatedTests.test_onetoone_reverse_with_to_field_pk) 275s A model (Bio) with a OneToOneField primary key (author) that references ... ok 275s test_overriding_prefetch (prefetch_related.tests.PrefetchRelatedTests.test_overriding_prefetch) ... ok 275s test_prefetch_eq (prefetch_related.tests.PrefetchRelatedTests.test_prefetch_eq) ... ok 275s test_reverse_m2m_to_attr_conflict (prefetch_related.tests.PrefetchRelatedTests.test_reverse_m2m_to_attr_conflict) ... ok 275s test_reverse_one_to_one_then_m2m (prefetch_related.tests.PrefetchRelatedTests.test_reverse_one_to_one_then_m2m) 275s A m2m relation can be followed after going through the select_related ... ok 275s test_survives_clone (prefetch_related.tests.PrefetchRelatedTests.test_survives_clone) ... ok 275s test_bug (prefetch_related.tests.Ticket21760Tests.test_bug) ... ok 276s test_chained_values_with_expression (expressions.test_queryset_values.ValuesExpressionsTests.test_chained_values_with_expression) ... ok 276s test_values_expression (expressions.test_queryset_values.ValuesExpressionsTests.test_values_expression) ... ok 276s test_values_expression_alias_sql_injection (expressions.test_queryset_values.ValuesExpressionsTests.test_values_expression_alias_sql_injection) ... ok 276s test_values_expression_alias_sql_injection_json_field (expressions.test_queryset_values.ValuesExpressionsTests.test_values_expression_alias_sql_injection_json_field) ... ok 276s test_values_expression_group_by (expressions.test_queryset_values.ValuesExpressionsTests.test_values_expression_group_by) ... ok 276s test_values_list_expression (expressions.test_queryset_values.ValuesExpressionsTests.test_values_list_expression) ... ok 276s test_values_list_expression_flat (expressions.test_queryset_values.ValuesExpressionsTests.test_values_list_expression_flat) ... ok 276s test_negated_empty_exists (expressions.tests.ExistsTests.test_negated_empty_exists) ... ok 276s test_optimizations (expressions.tests.ExistsTests.test_optimizations) ... ok 276s test_select_negated_empty_exists (expressions.tests.ExistsTests.test_select_negated_empty_exists) ... ok 276s test_lefthand_addition (expressions.tests.ExpressionOperatorTests.test_lefthand_addition) ... ok 276s test_lefthand_bitwise_and (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_and) ... ok 276s test_lefthand_bitwise_left_shift_operator (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_left_shift_operator) ... ok 276s test_lefthand_bitwise_or (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_or) ... ok 276s test_lefthand_bitwise_right_shift_operator (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_right_shift_operator) ... ok 276s test_lefthand_bitwise_xor (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_xor) ... ok 276s test_lefthand_bitwise_xor_not_supported (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_xor_not_supported) ... skipped "Oracle doesn't support bitwise XOR." 276s test_lefthand_bitwise_xor_null (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_xor_null) ... ok 276s test_lefthand_bitwise_xor_right_null (expressions.tests.ExpressionOperatorTests.test_lefthand_bitwise_xor_right_null) ... ok 276s test_lefthand_division (expressions.tests.ExpressionOperatorTests.test_lefthand_division) ... ok 276s test_lefthand_modulo (expressions.tests.ExpressionOperatorTests.test_lefthand_modulo) ... ok 276s test_lefthand_modulo_null (expressions.tests.ExpressionOperatorTests.test_lefthand_modulo_null) ... ok 276s test_lefthand_multiplication (expressions.tests.ExpressionOperatorTests.test_lefthand_multiplication) ... ok 276s test_lefthand_power (expressions.tests.ExpressionOperatorTests.test_lefthand_power) ... ok 276s test_lefthand_subtraction (expressions.tests.ExpressionOperatorTests.test_lefthand_subtraction) ... ok 276s test_lefthand_transformed_field_bitwise_or (expressions.tests.ExpressionOperatorTests.test_lefthand_transformed_field_bitwise_or) ... ok 276s test_right_hand_addition (expressions.tests.ExpressionOperatorTests.test_right_hand_addition) ... ok 276s test_right_hand_division (expressions.tests.ExpressionOperatorTests.test_right_hand_division) ... ok 276s test_right_hand_modulo (expressions.tests.ExpressionOperatorTests.test_right_hand_modulo) ... ok 276s test_right_hand_multiplication (expressions.tests.ExpressionOperatorTests.test_right_hand_multiplication) ... ok 276s test_right_hand_subtraction (expressions.tests.ExpressionOperatorTests.test_right_hand_subtraction) ... ok 276s test_righthand_power (expressions.tests.ExpressionOperatorTests.test_righthand_power) ... ok 276s test_complex_expressions (expressions.tests.ExpressionsNumericTests.test_complex_expressions) 276s Complex expressions of different connection types are possible. ... ok 276s test_decimal_expression (expressions.tests.ExpressionsNumericTests.test_decimal_expression) ... ok 276s test_fill_with_value_from_same_object (expressions.tests.ExpressionsNumericTests.test_fill_with_value_from_same_object) 276s We can fill a value in all objects with an other value of the ... ok 276s test_filter_decimal_expression (expressions.tests.ExpressionsNumericTests.test_filter_decimal_expression) ... ok 276s test_filter_not_equals_other_field (expressions.tests.ExpressionsNumericTests.test_filter_not_equals_other_field) 276s We can filter for objects, where a value is not equals the value ... ok 276s test_increment_value (expressions.tests.ExpressionsNumericTests.test_increment_value) 276s We can increment a value of all objects in a query set. ... ok 276s test_F_reuse (expressions.tests.ExpressionsTests.test_F_reuse) ... ok 276s test_insensitive_patterns_escape (expressions.tests.ExpressionsTests.test_insensitive_patterns_escape) 276s Special characters (e.g. %, _ and \) stored in database are ... ok 276s test_patterns_escape (expressions.tests.ExpressionsTests.test_patterns_escape) 276s Special characters (e.g. %, _ and \) stored in database are ... ok 277s test_aggregate_rawsql_annotation (expressions.tests.BasicExpressionsTests.test_aggregate_rawsql_annotation) ... ok 277s test_aggregate_subquery_annotation (expressions.tests.BasicExpressionsTests.test_aggregate_subquery_annotation) ... ok 277s test_annotate_values_aggregate (expressions.tests.BasicExpressionsTests.test_annotate_values_aggregate) ... ok 277s test_annotate_values_count (expressions.tests.BasicExpressionsTests.test_annotate_values_count) ... ok 277s test_annotate_values_filter (expressions.tests.BasicExpressionsTests.test_annotate_values_filter) ... ok 277s test_annotation_with_deeply_nested_outerref (expressions.tests.BasicExpressionsTests.test_annotation_with_deeply_nested_outerref) ... ok 277s test_annotation_with_nested_outerref (expressions.tests.BasicExpressionsTests.test_annotation_with_nested_outerref) ... ok 277s test_annotation_with_outerref (expressions.tests.BasicExpressionsTests.test_annotation_with_outerref) ... ok 277s test_annotations_within_subquery (expressions.tests.BasicExpressionsTests.test_annotations_within_subquery) ... ok 277s test_arithmetic (expressions.tests.BasicExpressionsTests.test_arithmetic) ... ok 277s test_boolean_expression_combined (expressions.tests.BasicExpressionsTests.test_boolean_expression_combined) ... ok 277s test_boolean_expression_combined_with_empty_Q (expressions.tests.BasicExpressionsTests.test_boolean_expression_combined_with_empty_Q) ... ok 277s test_boolean_expression_in_Q (expressions.tests.BasicExpressionsTests.test_boolean_expression_in_Q) ... ok 277s test_case_in_filter_if_boolean_output_field (expressions.tests.BasicExpressionsTests.test_case_in_filter_if_boolean_output_field) ... ok 277s test_exist_single_field_output_field (expressions.tests.BasicExpressionsTests.test_exist_single_field_output_field) ... ok 277s test_exists_in_filter (expressions.tests.BasicExpressionsTests.test_exists_in_filter) ... ok 277s test_explicit_output_field (expressions.tests.BasicExpressionsTests.test_explicit_output_field) ... ok 277s test_filter_inter_attribute (expressions.tests.BasicExpressionsTests.test_filter_inter_attribute) ... ok 277s test_filter_with_join (expressions.tests.BasicExpressionsTests.test_filter_with_join) ... ok 277s test_filtering_on_annotate_that_uses_q (expressions.tests.BasicExpressionsTests.test_filtering_on_annotate_that_uses_q) ... ok 277s test_filtering_on_q_that_is_boolean (expressions.tests.BasicExpressionsTests.test_filtering_on_q_that_is_boolean) ... ok 277s test_filtering_on_rawsql_that_is_boolean (expressions.tests.BasicExpressionsTests.test_filtering_on_rawsql_that_is_boolean) ... ok 277s test_in_subquery (expressions.tests.BasicExpressionsTests.test_in_subquery) ... ok 277s test_incorrect_field_in_F_expression (expressions.tests.BasicExpressionsTests.test_incorrect_field_in_F_expression) ... ok 277s test_incorrect_joined_field_in_F_expression (expressions.tests.BasicExpressionsTests.test_incorrect_joined_field_in_F_expression) ... ok 277s test_nested_outerref_with_function (expressions.tests.BasicExpressionsTests.test_nested_outerref_with_function) ... ok 277s test_nested_subquery (expressions.tests.BasicExpressionsTests.test_nested_subquery) ... ok 277s test_nested_subquery_join_outer_ref (expressions.tests.BasicExpressionsTests.test_nested_subquery_join_outer_ref) ... ok 277s test_nested_subquery_outer_ref_2 (expressions.tests.BasicExpressionsTests.test_nested_subquery_outer_ref_2) ... ok 277s test_nested_subquery_outer_ref_with_autofield (expressions.tests.BasicExpressionsTests.test_nested_subquery_outer_ref_with_autofield) ... ok 277s test_new_object_create (expressions.tests.BasicExpressionsTests.test_new_object_create) ... ok 277s test_new_object_save (expressions.tests.BasicExpressionsTests.test_new_object_save) ... ok 277s test_object_create_with_aggregate (expressions.tests.BasicExpressionsTests.test_object_create_with_aggregate) ... ok 277s test_object_create_with_f_expression_in_subquery (expressions.tests.BasicExpressionsTests.test_object_create_with_f_expression_in_subquery) ... ok 277s test_object_update (expressions.tests.BasicExpressionsTests.test_object_update) ... ok 277s test_object_update_fk (expressions.tests.BasicExpressionsTests.test_object_update_fk) ... ok 277s test_object_update_unsaved_objects (expressions.tests.BasicExpressionsTests.test_object_update_unsaved_objects) ... ok 277s test_order_by_exists (expressions.tests.BasicExpressionsTests.test_order_by_exists) ... ok 277s test_order_by_multiline_sql (expressions.tests.BasicExpressionsTests.test_order_by_multiline_sql) ... ok 277s test_order_of_operations (expressions.tests.BasicExpressionsTests.test_order_of_operations) ... ok 277s test_outerref (expressions.tests.BasicExpressionsTests.test_outerref) ... ok 277s test_outerref_mixed_case_table_name (expressions.tests.BasicExpressionsTests.test_outerref_mixed_case_table_name) ... ok 277s test_outerref_with_operator (expressions.tests.BasicExpressionsTests.test_outerref_with_operator) ... ok 277s test_parenthesis_priority (expressions.tests.BasicExpressionsTests.test_parenthesis_priority) ... ok 277s test_pickle_expression (expressions.tests.BasicExpressionsTests.test_pickle_expression) ... ok 277s test_subquery (expressions.tests.BasicExpressionsTests.test_subquery) ... ok 277s test_subquery_eq (expressions.tests.BasicExpressionsTests.test_subquery_eq) ... ok 277s test_subquery_filter_by_aggregate (expressions.tests.BasicExpressionsTests.test_subquery_filter_by_aggregate) ... ok 277s test_subquery_filter_by_lazy (expressions.tests.BasicExpressionsTests.test_subquery_filter_by_lazy) ... ok 277s test_subquery_group_by_outerref_in_filter (expressions.tests.BasicExpressionsTests.test_subquery_group_by_outerref_in_filter) ... ok 277s test_subquery_in_filter (expressions.tests.BasicExpressionsTests.test_subquery_in_filter) ... ok 277s test_subquery_references_joined_table_twice (expressions.tests.BasicExpressionsTests.test_subquery_references_joined_table_twice) ... ok 277s test_subquery_sql (expressions.tests.BasicExpressionsTests.test_subquery_sql) ... ok 277s test_ticket_11722_iexact_lookup (expressions.tests.BasicExpressionsTests.test_ticket_11722_iexact_lookup) ... ok 277s test_ticket_16731_startswith_lookup (expressions.tests.BasicExpressionsTests.test_ticket_16731_startswith_lookup) ... ok 277s test_ticket_18375_chained_filters (expressions.tests.BasicExpressionsTests.test_ticket_18375_chained_filters) ... ok 277s test_ticket_18375_join_reuse (expressions.tests.BasicExpressionsTests.test_ticket_18375_join_reuse) ... ok 277s test_ticket_18375_kwarg_ordering (expressions.tests.BasicExpressionsTests.test_ticket_18375_kwarg_ordering) ... ok 277s test_ticket_18375_kwarg_ordering_2 (expressions.tests.BasicExpressionsTests.test_ticket_18375_kwarg_ordering_2) ... ok 277s test_update (expressions.tests.BasicExpressionsTests.test_update) ... ok 277s test_update_inherited_field_value (expressions.tests.BasicExpressionsTests.test_update_inherited_field_value) ... ok 277s test_update_with_fk (expressions.tests.BasicExpressionsTests.test_update_with_fk) ... ok 277s test_update_with_none (expressions.tests.BasicExpressionsTests.test_update_with_none) ... ok 277s test_uuid_pk_subquery (expressions.tests.BasicExpressionsTests.test_uuid_pk_subquery) ... ok 277s test_month_aggregation (expressions.tests.FieldTransformTests.test_month_aggregation) ... ok 277s test_multiple_transforms_in_values (expressions.tests.FieldTransformTests.test_multiple_transforms_in_values) ... ok 277s test_transform_in_values (expressions.tests.FieldTransformTests.test_transform_in_values) ... ok 277s test_expressions_in_lookups_join_choice (expressions.tests.IterableLookupInnerExpressionsTests.test_expressions_in_lookups_join_choice) ... ok 277s test_expressions_not_introduce_sql_injection_via_untrusted_string_inclusion (expressions.tests.IterableLookupInnerExpressionsTests.test_expressions_not_introduce_sql_injection_via_untrusted_string_inclusion) 277s This tests that SQL injection isn't possible using compilation of ... ok 277s test_in_lookup_allows_F_expressions_and_expressions_for_datetimes (expressions.tests.IterableLookupInnerExpressionsTests.test_in_lookup_allows_F_expressions_and_expressions_for_datetimes) ... ok 277s test_in_lookup_allows_F_expressions_and_expressions_for_integers (expressions.tests.IterableLookupInnerExpressionsTests.test_in_lookup_allows_F_expressions_and_expressions_for_integers) ... ok 277s test_range_lookup_allows_F_expressions_and_expressions_for_integers (expressions.tests.IterableLookupInnerExpressionsTests.test_range_lookup_allows_F_expressions_and_expressions_for_integers) ... ok 277s test_range_lookup_namedtuple (expressions.tests.IterableLookupInnerExpressionsTests.test_range_lookup_namedtuple) ... ok 277s test_filter (expressions.tests.NegatedExpressionTests.test_filter) ... ok 277s test_invert (expressions.tests.NegatedExpressionTests.test_invert) ... ok 277s test_values (expressions.tests.NegatedExpressionTests.test_values) ... ok 277s test_date_case_subtraction (expressions.tests.FTimeDeltaTests.test_date_case_subtraction) ... ok 277s test_date_comparison (expressions.tests.FTimeDeltaTests.test_date_comparison) ... ok 277s test_date_minus_duration (expressions.tests.FTimeDeltaTests.test_date_minus_duration) ... ok 277s test_date_subquery_subtraction (expressions.tests.FTimeDeltaTests.test_date_subquery_subtraction) ... ok 277s test_date_subtraction (expressions.tests.FTimeDeltaTests.test_date_subtraction) ... ok 277s test_datetime_and_duration_field_addition_with_annotate_and_no_output_field (expressions.tests.FTimeDeltaTests.test_datetime_and_duration_field_addition_with_annotate_and_no_output_field) ... ok 277s test_datetime_and_durationfield_addition_with_filter (expressions.tests.FTimeDeltaTests.test_datetime_and_durationfield_addition_with_filter) ... ok 277s test_datetime_subquery_subtraction (expressions.tests.FTimeDeltaTests.test_datetime_subquery_subtraction) ... ok 277s test_datetime_subtraction (expressions.tests.FTimeDeltaTests.test_datetime_subtraction) ... ok 277s test_datetime_subtraction_microseconds (expressions.tests.FTimeDeltaTests.test_datetime_subtraction_microseconds) ... ok 277s test_datetime_subtraction_with_annotate_and_no_output_field (expressions.tests.FTimeDeltaTests.test_datetime_subtraction_with_annotate_and_no_output_field) ... ok 277s test_delta_add (expressions.tests.FTimeDeltaTests.test_delta_add) ... ok 277s test_delta_subtract (expressions.tests.FTimeDeltaTests.test_delta_subtract) ... ok 277s test_delta_update (expressions.tests.FTimeDeltaTests.test_delta_update) ... ok 277s test_duration_expressions (expressions.tests.FTimeDeltaTests.test_duration_expressions) ... ok 277s test_duration_with_datetime (expressions.tests.FTimeDeltaTests.test_duration_with_datetime) ... ok 277s test_duration_with_datetime_microseconds (expressions.tests.FTimeDeltaTests.test_duration_with_datetime_microseconds) ... ok 277s test_durationfield_add (expressions.tests.FTimeDeltaTests.test_durationfield_add) ... ok 277s test_durationfield_multiply_divide (expressions.tests.FTimeDeltaTests.test_durationfield_multiply_divide) ... ok 277s test_exclude (expressions.tests.FTimeDeltaTests.test_exclude) ... ok 277s test_invalid_operator (expressions.tests.FTimeDeltaTests.test_invalid_operator) ... ok 277s test_mixed_comparisons1 (expressions.tests.FTimeDeltaTests.test_mixed_comparisons1) ... expected failure 277s test_mixed_comparisons2 (expressions.tests.FTimeDeltaTests.test_mixed_comparisons2) ... ok 277s test_multiple_query_compilation (expressions.tests.FTimeDeltaTests.test_multiple_query_compilation) ... ok 277s test_negative_timedelta_update (expressions.tests.FTimeDeltaTests.test_negative_timedelta_update) ... ok 277s test_query_clone (expressions.tests.FTimeDeltaTests.test_query_clone) ... ok 277s test_time_subquery_subtraction (expressions.tests.FTimeDeltaTests.test_time_subquery_subtraction) ... ok 277s test_time_subtraction (expressions.tests.FTimeDeltaTests.test_time_subtraction) ... ok 277s test_first_page (pagination.tests.ModelPaginationTests.test_first_page) ... ok 277s test_last_page (pagination.tests.ModelPaginationTests.test_last_page) ... ok 277s test_page_getitem (pagination.tests.ModelPaginationTests.test_page_getitem) 277s Tests proper behavior of a paginator page __getitem__ (queryset ... ok 277s test_paginating_empty_queryset_does_not_warn (pagination.tests.ModelPaginationTests.test_paginating_empty_queryset_does_not_warn) ... ok 277s test_paginating_unordered_object_list_raises_warning (pagination.tests.ModelPaginationTests.test_paginating_unordered_object_list_raises_warning) 277s Unordered object list warning with an object that has an ordered ... ok 277s test_paginating_unordered_queryset_raises_warning (pagination.tests.ModelPaginationTests.test_paginating_unordered_queryset_raises_warning) ... ok 278s test_dates (reserved_names.tests.ReservedNameTests.test_dates) ... ok 278s test_fields (reserved_names.tests.ReservedNameTests.test_fields) ... ok 278s test_month_filter (reserved_names.tests.ReservedNameTests.test_month_filter) ... ok 278s test_order_by (reserved_names.tests.ReservedNameTests.test_order_by) ... ok 278s test_simple (reserved_names.tests.ReservedNameTests.test_simple) ... ok 278s test_compile_unresolved (expressions.tests.ValueTests.test_compile_unresolved) ... ok 278s test_deconstruct (expressions.tests.ValueTests.test_deconstruct) ... ok 278s test_deconstruct_output_field (expressions.tests.ValueTests.test_deconstruct_output_field) ... ok 278s test_equal (expressions.tests.ValueTests.test_equal) ... ok 278s test_equal_output_field (expressions.tests.ValueTests.test_equal_output_field) ... ok 278s test_hash (expressions.tests.ValueTests.test_hash) ... ok 278s test_output_field_decimalfield (expressions.tests.ValueTests.test_output_field_decimalfield) ... ok 278s test_output_field_does_not_create_broken_validators (expressions.tests.ValueTests.test_output_field_does_not_create_broken_validators) 278s The output field for a given Value doesn't get cleaned & validated, ... ok 278s test_raise_empty_expressionlist (expressions.tests.ValueTests.test_raise_empty_expressionlist) ... ok 278s test_repr (expressions.tests.ValueTests.test_repr) ... ok 278s test_resolve_output_field (expressions.tests.ValueTests.test_resolve_output_field) ... ok 278s test_resolve_output_field_failure (expressions.tests.ValueTests.test_resolve_output_field_failure) ... ok 278s test_update_TimeField_using_Value (expressions.tests.ValueTests.test_update_TimeField_using_Value) ... ok 278s test_update_UUIDField_using_Value (expressions.tests.ValueTests.test_update_UUIDField_using_Value) ... ok 278s test_aggregate_alias (annotations.tests.AliasTests.test_aggregate_alias) ... ok 278s test_alias_after_annotation (annotations.tests.AliasTests.test_alias_after_annotation) ... ok 278s test_alias_annotate_with_aggregation (annotations.tests.AliasTests.test_alias_annotate_with_aggregation) ... ok 278s test_alias_annotation_expression (annotations.tests.AliasTests.test_alias_annotation_expression) ... ok 278s test_alias_default_alias_expression (annotations.tests.AliasTests.test_alias_default_alias_expression) ... ok 278s test_alias_sql_injection (annotations.tests.AliasTests.test_alias_sql_injection) ... ok 278s test_basic_alias (annotations.tests.AliasTests.test_basic_alias) ... ok 278s test_basic_alias_annotation (annotations.tests.AliasTests.test_basic_alias_annotation) ... ok 278s test_basic_alias_f_annotation (annotations.tests.AliasTests.test_basic_alias_f_annotation) ... ok 278s test_basic_alias_f_transform_annotation (annotations.tests.AliasTests.test_basic_alias_f_transform_annotation) ... ok 278s test_dates_alias (annotations.tests.AliasTests.test_dates_alias) ... ok 278s test_datetimes_alias (annotations.tests.AliasTests.test_datetimes_alias) ... ok 278s test_defer_only_alias (annotations.tests.AliasTests.test_defer_only_alias) ... ok 278s test_distinct_on_alias (annotations.tests.AliasTests.test_distinct_on_alias) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 278s test_filter_alias_agg_with_double_f (annotations.tests.AliasTests.test_filter_alias_agg_with_double_f) ... ok 278s test_filter_alias_with_double_f (annotations.tests.AliasTests.test_filter_alias_with_double_f) ... ok 278s test_filter_alias_with_f (annotations.tests.AliasTests.test_filter_alias_with_f) ... ok 278s test_joined_alias_annotation (annotations.tests.AliasTests.test_joined_alias_annotation) ... ok 278s test_order_by_alias (annotations.tests.AliasTests.test_order_by_alias) ... ok 278s test_order_by_alias_aggregate (annotations.tests.AliasTests.test_order_by_alias_aggregate) ... ok 278s test_overwrite_alias_with_annotation (annotations.tests.AliasTests.test_overwrite_alias_with_annotation) ... ok 278s test_overwrite_annotation_with_alias (annotations.tests.AliasTests.test_overwrite_annotation_with_alias) ... ok 278s test_update_with_alias (annotations.tests.AliasTests.test_update_with_alias) ... ok 278s test_values_alias (annotations.tests.AliasTests.test_values_alias) ... ok 279s test_aggregate_over_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_aggregate_over_annotation) ... ok 279s test_aggregate_over_full_expression_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_aggregate_over_full_expression_annotation) ... ok 279s test_alias_forbidden_chars (annotations.tests.NonAggregateAnnotationTestCase.test_alias_forbidden_chars) ... ok 279s test_alias_sql_injection (annotations.tests.NonAggregateAnnotationTestCase.test_alias_sql_injection) ... ok 279s test_annotate_exists (annotations.tests.NonAggregateAnnotationTestCase.test_annotate_exists) ... ok 279s test_annotate_with_aggregation (annotations.tests.NonAggregateAnnotationTestCase.test_annotate_with_aggregation) ... ok 279s test_annotation_aggregate_with_m2o (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_aggregate_with_m2o) ... ok 279s test_annotation_and_alias_filter_in_subquery (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_and_alias_filter_in_subquery) ... ok 279s test_annotation_and_alias_filter_related_in_subquery (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_and_alias_filter_related_in_subquery) ... ok 279s test_annotation_exists_aggregate_values_chaining (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_exists_aggregate_values_chaining) ... ok 279s test_annotation_exists_none_query (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_exists_none_query) ... ok 279s test_annotation_filter_with_subquery (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_filter_with_subquery) ... ok 279s test_annotation_in_f_grouped_by_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_in_f_grouped_by_annotation) ... ok 279s test_annotation_reverse_m2m (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_reverse_m2m) ... ok 279s test_annotation_subquery_and_aggregate_values_chaining (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_subquery_and_aggregate_values_chaining) ... ok 279s test_annotation_subquery_outerref_transform (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_subquery_outerref_transform) ... ok 279s test_annotation_with_m2m (annotations.tests.NonAggregateAnnotationTestCase.test_annotation_with_m2m) ... ok 279s test_arguments_must_be_expressions (annotations.tests.NonAggregateAnnotationTestCase.test_arguments_must_be_expressions) ... ok 279s test_basic_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_basic_annotation) ... ok 279s test_basic_f_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_basic_f_annotation) ... ok 279s test_boolean_value_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_boolean_value_annotation) ... ok 279s test_chaining_annotation_filter_with_m2m (annotations.tests.NonAggregateAnnotationTestCase.test_chaining_annotation_filter_with_m2m) ... ok 279s test_chaining_transforms (annotations.tests.NonAggregateAnnotationTestCase.test_chaining_transforms) ... ok 279s test_column_field_ordering (annotations.tests.NonAggregateAnnotationTestCase.test_column_field_ordering) 279s Columns are aligned in the correct order for resolve_columns. This test ... ok 279s test_column_field_ordering_with_deferred (annotations.tests.NonAggregateAnnotationTestCase.test_column_field_ordering_with_deferred) ... ok 279s test_combined_annotation_commutative (annotations.tests.NonAggregateAnnotationTestCase.test_combined_annotation_commutative) ... ok 279s test_combined_expression_annotation_with_aggregation (annotations.tests.NonAggregateAnnotationTestCase.test_combined_expression_annotation_with_aggregation) ... ok 279s test_combined_f_expression_annotation_with_aggregation (annotations.tests.NonAggregateAnnotationTestCase.test_combined_f_expression_annotation_with_aggregation) ... ok 279s test_custom_functions (annotations.tests.NonAggregateAnnotationTestCase.test_custom_functions) ... ok 279s test_custom_functions_can_ref_other_functions (annotations.tests.NonAggregateAnnotationTestCase.test_custom_functions_can_ref_other_functions) ... ok 279s test_custom_transform_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_custom_transform_annotation) ... ok 279s test_decimal_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_decimal_annotation) ... ok 279s test_defer_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_defer_annotation) 279s Deferred attributes can be referenced by an annotation, ... ok 279s test_distinct_on_with_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_distinct_on_with_annotation) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 279s test_empty_expression_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_empty_expression_annotation) ... ok 279s test_empty_queryset_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_empty_queryset_annotation) ... ok 279s test_filter_agg_with_double_f (annotations.tests.NonAggregateAnnotationTestCase.test_filter_agg_with_double_f) ... ok 279s test_filter_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_filter_annotation) ... ok 279s test_filter_annotation_with_double_f (annotations.tests.NonAggregateAnnotationTestCase.test_filter_annotation_with_double_f) ... ok 279s test_filter_annotation_with_f (annotations.tests.NonAggregateAnnotationTestCase.test_filter_annotation_with_f) ... ok 279s test_filter_decimal_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_filter_decimal_annotation) ... ok 279s test_filter_wrong_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_filter_wrong_annotation) ... ok 279s test_full_expression_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_full_expression_annotation) ... ok 279s test_full_expression_annotation_with_aggregation (annotations.tests.NonAggregateAnnotationTestCase.test_full_expression_annotation_with_aggregation) ... ok 279s test_full_expression_wrapped_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_full_expression_wrapped_annotation) ... ok 279s test_grouping_by_q_expression_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_grouping_by_q_expression_annotation) ... ok 279s test_joined_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_joined_annotation) ... ok 279s test_joined_transformed_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_joined_transformed_annotation) ... ok 279s test_mixed_type_annotation_date_interval (annotations.tests.NonAggregateAnnotationTestCase.test_mixed_type_annotation_date_interval) ... ok 279s test_mixed_type_annotation_numbers (annotations.tests.NonAggregateAnnotationTestCase.test_mixed_type_annotation_numbers) ... ok 279s test_mti_annotations (annotations.tests.NonAggregateAnnotationTestCase.test_mti_annotations) 279s Fields on an inherited model can be referenced by an ... ok 279s test_null_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_null_annotation) 279s Annotating None onto a model round-trips ... ok 279s test_order_by_aggregate (annotations.tests.NonAggregateAnnotationTestCase.test_order_by_aggregate) ... ok 279s test_order_by_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_order_by_annotation) ... ok 279s test_q_expression_annotation_with_aggregation (annotations.tests.NonAggregateAnnotationTestCase.test_q_expression_annotation_with_aggregation) ... ok 279s test_raw_sql_with_inherited_field (annotations.tests.NonAggregateAnnotationTestCase.test_raw_sql_with_inherited_field) ... ok 279s test_update_with_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_update_with_annotation) ... ok 279s test_values_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_values_annotation) 279s Annotations can reference fields in a values clause, ... ok 279s test_values_with_pk_annotation (annotations.tests.NonAggregateAnnotationTestCase.test_values_with_pk_annotation) ... ok 279s test_default_ordering (ordering.tests.OrderingTests.test_default_ordering) 279s By default, Article.objects.all() orders by pub_date descending, then ... ok 279s test_default_ordering_by_f_expression (ordering.tests.OrderingTests.test_default_ordering_by_f_expression) 279s F expressions can be used in Meta.ordering. ... ok 279s test_default_ordering_does_not_affect_group_by (ordering.tests.OrderingTests.test_default_ordering_does_not_affect_group_by) ... ok 279s test_default_ordering_override (ordering.tests.OrderingTests.test_default_ordering_override) 279s Override ordering with order_by, which is in the same format as the ... ok 279s test_default_ordering_override_unknown_field (ordering.tests.OrderingTests.test_default_ordering_override_unknown_field) 279s Attempts to override default ordering on related models with an unknown ... ok 279s test_extra_ordering (ordering.tests.OrderingTests.test_extra_ordering) 279s Ordering can be based on fields included from an 'extra' clause ... ok 279s test_extra_ordering_quoting (ordering.tests.OrderingTests.test_extra_ordering_quoting) 279s If the extra clause uses an SQL keyword for a name, it will be ... ok 279s test_extra_ordering_with_table_name (ordering.tests.OrderingTests.test_extra_ordering_with_table_name) ... ok 279s test_no_reordering_after_slicing (ordering.tests.OrderingTests.test_no_reordering_after_slicing) ... ok 279s test_order_by_constant_value (ordering.tests.OrderingTests.test_order_by_constant_value) ... ok 279s test_order_by_expr_query_reuse (ordering.tests.OrderingTests.test_order_by_expr_query_reuse) ... ok 279s test_order_by_expression_ref (ordering.tests.OrderingTests.test_order_by_expression_ref) ... ok 279s test_order_by_f_expression (ordering.tests.OrderingTests.test_order_by_f_expression) ... ok 279s test_order_by_f_expression_duplicates (ordering.tests.OrderingTests.test_order_by_f_expression_duplicates) 279s A column may only be included once (the first occurrence) so we check ... ok 279s test_order_by_fk_attname (ordering.tests.OrderingTests.test_order_by_fk_attname) 279s ordering by a foreign key by its attribute name prevents the query ... ok 279s test_order_by_grandparent_fk_with_expression_in_default_ordering (ordering.tests.OrderingTests.test_order_by_grandparent_fk_with_expression_in_default_ordering) ... ok 279s test_order_by_nulls_first (ordering.tests.OrderingTests.test_order_by_nulls_first) ... ok 279s test_order_by_nulls_first_and_last (ordering.tests.OrderingTests.test_order_by_nulls_first_and_last) ... ok 279s test_order_by_nulls_last (ordering.tests.OrderingTests.test_order_by_nulls_last) ... ok 279s test_order_by_override (ordering.tests.OrderingTests.test_order_by_override) 279s Only the last order_by has any effect (since they each override any ... ok 279s test_order_by_parent_fk_with_expression_in_default_ordering (ordering.tests.OrderingTests.test_order_by_parent_fk_with_expression_in_default_ordering) ... ok 279s test_order_by_pk (ordering.tests.OrderingTests.test_order_by_pk) 279s 'pk' works as an ordering option in Meta. ... ok 279s test_order_by_ptr_field_with_default_ordering_by_expression (ordering.tests.OrderingTests.test_order_by_ptr_field_with_default_ordering_by_expression) ... ok 279s test_order_by_self_referential_fk (ordering.tests.OrderingTests.test_order_by_self_referential_fk) ... ok 279s test_ordering_select_related_collision (ordering.tests.OrderingTests.test_ordering_select_related_collision) ... ok 279s test_orders_nulls_first_on_filtered_subquery (ordering.tests.OrderingTests.test_orders_nulls_first_on_filtered_subquery) ... ok 279s test_random_ordering (ordering.tests.OrderingTests.test_random_ordering) 279s Use '?' to order randomly. ... ok 279s test_related_ordering_duplicate_table_reference (ordering.tests.OrderingTests.test_related_ordering_duplicate_table_reference) 279s An ordering referencing a model with an ordering referencing a model ... ok 279s test_reverse_meta_ordering_pure (ordering.tests.OrderingTests.test_reverse_meta_ordering_pure) ... ok 279s test_reverse_ordering_pure (ordering.tests.OrderingTests.test_reverse_ordering_pure) ... ok 279s test_reversed_ordering (ordering.tests.OrderingTests.test_reversed_ordering) 279s Ordering can be reversed using the reverse() method on a queryset. ... ok 279s test_stop_slicing (ordering.tests.OrderingTests.test_stop_slicing) 279s Use the 'stop' part of slicing notation to limit the results. ... ok 279s test_stop_start_slicing (ordering.tests.OrderingTests.test_stop_start_slicing) 279s Use the 'stop' and 'start' parts of slicing notation to offset the ... ok 279s test_21432 (datetimes.tests.DateTimesTests.test_21432) ... ok 279s test_datetimes_ambiguous_and_invalid_times (datetimes.tests.DateTimesTests.test_datetimes_ambiguous_and_invalid_times) ... ok 279s test_datetimes_disallows_date_fields (datetimes.tests.DateTimesTests.test_datetimes_disallows_date_fields) ... ok 279s test_datetimes_fails_when_given_invalid_kind_argument (datetimes.tests.DateTimesTests.test_datetimes_fails_when_given_invalid_kind_argument) ... ok 279s test_datetimes_fails_when_given_invalid_order_argument (datetimes.tests.DateTimesTests.test_datetimes_fails_when_given_invalid_order_argument) ... ok 279s test_datetimes_has_lazy_iterator (datetimes.tests.DateTimesTests.test_datetimes_has_lazy_iterator) ... ok 279s test_datetimes_returns_available_dates_for_given_scope_and_given_field (datetimes.tests.DateTimesTests.test_datetimes_returns_available_dates_for_given_scope_and_given_field) ... ok 279s test_related_model_traverse (datetimes.tests.DateTimesTests.test_related_model_traverse) ... ok 279s test_add_m2m_with_base_class (m2m_regress.tests.M2MRegressionTests.test_add_m2m_with_base_class) ... ok 279s test_assigning_invalid_data_to_m2m_doesnt_clear_existing_relations (m2m_regress.tests.M2MRegressionTests.test_assigning_invalid_data_to_m2m_doesnt_clear_existing_relations) ... ok 279s test_create_copy_with_m2m (m2m_regress.tests.M2MRegressionTests.test_create_copy_with_m2m) ... ok 279s test_internal_related_name_not_in_error_msg (m2m_regress.tests.M2MRegressionTests.test_internal_related_name_not_in_error_msg) ... ok 279s test_m2m_abstract_split (m2m_regress.tests.M2MRegressionTests.test_m2m_abstract_split) ... ok 279s test_m2m_inheritance_symmetry (m2m_regress.tests.M2MRegressionTests.test_m2m_inheritance_symmetry) ... ok 279s test_m2m_pk_field_type (m2m_regress.tests.M2MRegressionTests.test_m2m_pk_field_type) ... ok 279s test_manager_class_caching (m2m_regress.tests.M2MRegressionTests.test_manager_class_caching) ... ok 279s test_multiple_forwards_only_m2m (m2m_regress.tests.M2MRegressionTests.test_multiple_forwards_only_m2m) ... ok 279s test_multiple_m2m (m2m_regress.tests.M2MRegressionTests.test_multiple_m2m) ... ok 279s test_filter_subquery (expressions_window.tests.WindowUnsupportedTests.test_filter_subquery) ... ok 279s test_unsupported_backend (expressions_window.tests.WindowUnsupportedTests.test_unsupported_backend) ... ok 279s test_dependency_sorting_m2m_complex (fixtures_regress.tests.M2MNaturalKeyFixtureTests.test_dependency_sorting_m2m_complex) 279s M2M relations with explicit through models should NOT count as ... ok 279s test_dependency_sorting_m2m_complex_circular_1 (fixtures_regress.tests.M2MNaturalKeyFixtureTests.test_dependency_sorting_m2m_complex_circular_1) 279s Circular M2M relations with explicit through models should be serializable ... ok 279s test_dependency_sorting_m2m_complex_circular_2 (fixtures_regress.tests.M2MNaturalKeyFixtureTests.test_dependency_sorting_m2m_complex_circular_2) 279s Circular M2M relations with explicit through models should be serializable ... ok 279s test_dependency_sorting_m2m_simple (fixtures_regress.tests.M2MNaturalKeyFixtureTests.test_dependency_sorting_m2m_simple) 279s M2M relations without explicit through models SHOULD count as dependencies ... ok 279s test_dependency_sorting_m2m_simple_circular (fixtures_regress.tests.M2MNaturalKeyFixtureTests.test_dependency_sorting_m2m_simple_circular) 279s Resolving circular M2M relations without explicit through models should ... ok 279s test_dump_and_load_m2m_simple (fixtures_regress.tests.M2MNaturalKeyFixtureTests.test_dump_and_load_m2m_simple) 279s Test serializing and deserializing back models with simple M2M relations ... ok 279s test_natural_key_dependencies (fixtures_regress.tests.NaturalKeyFixtureOnOtherDatabaseTests.test_natural_key_dependencies) 279s Natural keys with foreing keys in dependencies works in a multiple ... ok 280s test_dependency_self_referential (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_self_referential) ... ok 280s test_dependency_sorting (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting) 280s It doesn't matter what order you mention the models, Store *must* be ... ok 280s test_dependency_sorting_2 (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_2) ... ok 280s test_dependency_sorting_3 (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_3) ... ok 280s test_dependency_sorting_4 (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_4) ... ok 280s test_dependency_sorting_5 (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_5) ... ok 280s test_dependency_sorting_6 (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_6) ... ok 280s test_dependency_sorting_dangling (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_dangling) ... ok 280s test_dependency_sorting_long (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_long) ... ok 280s test_dependency_sorting_normal (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_normal) ... ok 280s test_dependency_sorting_tight_circular (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_tight_circular) ... ok 280s test_dependency_sorting_tight_circular_2 (fixtures_regress.tests.NaturalKeyFixtureTests.test_dependency_sorting_tight_circular_2) ... ok 280s test_nk_deserialize (fixtures_regress.tests.NaturalKeyFixtureTests.test_nk_deserialize) 280s Test for ticket #13030 - Python based parser version ... ok 280s test_nk_deserialize_xml (fixtures_regress.tests.NaturalKeyFixtureTests.test_nk_deserialize_xml) 280s Test for ticket #13030 - XML version ... ok 280s test_nk_on_serialize (fixtures_regress.tests.NaturalKeyFixtureTests.test_nk_on_serialize) 280s Natural key requirements are taken into account when serializing models. ... ok 280s test_normal_pk (fixtures_regress.tests.NaturalKeyFixtureTests.test_normal_pk) 280s Normal primary keys work on a model with natural key capabilities. ... ok 280s test_avg_salary_department (expressions_window.tests.WindowFunctionTests.test_avg_salary_department) ... ok 280s test_cume_dist (expressions_window.tests.WindowFunctionTests.test_cume_dist) 280s Compute the cumulative distribution for the employees based on the ... ok 280s test_dense_rank (expressions_window.tests.WindowFunctionTests.test_dense_rank) ... ok 280s test_department_salary (expressions_window.tests.WindowFunctionTests.test_department_salary) ... ok 280s test_distinct_window_function (expressions_window.tests.WindowFunctionTests.test_distinct_window_function) 280s Window functions are not aggregates, and hence a query to filter out ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 280s test_exclude (expressions_window.tests.WindowFunctionTests.test_exclude) ... ok 280s test_fail_insert (expressions_window.tests.WindowFunctionTests.test_fail_insert) 280s Window expressions can't be used in an INSERT statement. ... ok 280s test_fail_update (expressions_window.tests.WindowFunctionTests.test_fail_update) 280s Window expressions can't be used in an UPDATE statement. ... ok 280s test_filter (expressions_window.tests.WindowFunctionTests.test_filter) ... ok 280s test_filter_alias (expressions_window.tests.WindowFunctionTests.test_filter_alias) ... ok 280s test_filter_column_ref_rhs (expressions_window.tests.WindowFunctionTests.test_filter_column_ref_rhs) ... ok 280s test_filter_conditional_annotation (expressions_window.tests.WindowFunctionTests.test_filter_conditional_annotation) ... ok 280s test_filter_conditional_expression (expressions_window.tests.WindowFunctionTests.test_filter_conditional_expression) ... ok 280s test_filter_count (expressions_window.tests.WindowFunctionTests.test_filter_count) ... ok 280s test_filter_select_related (expressions_window.tests.WindowFunctionTests.test_filter_select_related) ... ok 280s test_filter_values (expressions_window.tests.WindowFunctionTests.test_filter_values) ... ok 280s test_first_value (expressions_window.tests.WindowFunctionTests.test_first_value) ... ok 280s test_function_list_of_values (expressions_window.tests.WindowFunctionTests.test_function_list_of_values) ... ok 280s test_heterogeneous_filter (expressions_window.tests.WindowFunctionTests.test_heterogeneous_filter) ... ok 280s test_invalid_end_value_range (expressions_window.tests.WindowFunctionTests.test_invalid_end_value_range) ... ok 280s test_invalid_filter (expressions_window.tests.WindowFunctionTests.test_invalid_filter) ... ok 280s test_invalid_start_value_range (expressions_window.tests.WindowFunctionTests.test_invalid_start_value_range) ... ok 280s test_invalid_type_end_row_range (expressions_window.tests.WindowFunctionTests.test_invalid_type_end_row_range) ... ok 280s test_invalid_type_end_value_range (expressions_window.tests.WindowFunctionTests.test_invalid_type_end_value_range) ... ok 280s test_invalid_type_start_row_range (expressions_window.tests.WindowFunctionTests.test_invalid_type_start_row_range) ... ok 280s test_invalid_type_start_value_range (expressions_window.tests.WindowFunctionTests.test_invalid_type_start_value_range) ... ok 280s test_key_transform (expressions_window.tests.WindowFunctionTests.test_key_transform) ... ok 280s test_lag (expressions_window.tests.WindowFunctionTests.test_lag) 280s Compute the difference between an employee's salary and the next ... ok 280s test_lag_decimalfield (expressions_window.tests.WindowFunctionTests.test_lag_decimalfield) ... ok 280s test_last_value (expressions_window.tests.WindowFunctionTests.test_last_value) ... ok 280s test_lead (expressions_window.tests.WindowFunctionTests.test_lead) 280s Determine what the next person hired in the same department makes. ... ok 280s test_lead_default (expressions_window.tests.WindowFunctionTests.test_lead_default) ... ok 280s test_lead_offset (expressions_window.tests.WindowFunctionTests.test_lead_offset) 280s Determine what the person hired after someone makes. Due to ... ok 280s test_limited_filter (expressions_window.tests.WindowFunctionTests.test_limited_filter) 280s A query filtering against a window function have its limit applied ... ok 280s test_max_per_year (expressions_window.tests.WindowFunctionTests.test_max_per_year) 280s Find the maximum salary awarded in the same year as the ... ok 280s test_min_department (expressions_window.tests.WindowFunctionTests.test_min_department) 280s An alternative way to specify a query for FirstValue. ... ok 280s test_multiple_ordering (expressions_window.tests.WindowFunctionTests.test_multiple_ordering) 280s Accumulate the salaries over the departments based on hire_date. ... ok 280s test_multiple_partitioning (expressions_window.tests.WindowFunctionTests.test_multiple_partitioning) 280s Find the maximum salary for each department for people hired in the ... ok 280s test_nth_returns_null (expressions_window.tests.WindowFunctionTests.test_nth_returns_null) 280s Find the nth row of the data set. None is returned since there are ... ok 280s test_nthvalue (expressions_window.tests.WindowFunctionTests.test_nthvalue) ... ok 280s test_ntile (expressions_window.tests.WindowFunctionTests.test_ntile) 280s Compute the group for each of the employees across the entire company, ... ok 280s test_percent_rank (expressions_window.tests.WindowFunctionTests.test_percent_rank) 280s Calculate the percentage rank of the employees across the entire ... ok 280s test_range_n_preceding_and_following (expressions_window.tests.WindowFunctionTests.test_range_n_preceding_and_following) ... ok 280s test_range_unbound (expressions_window.tests.WindowFunctionTests.test_range_unbound) 280s A query with RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING. ... ok 280s test_rank (expressions_window.tests.WindowFunctionTests.test_rank) 280s Rank the employees based on the year they're were hired. Since there ... ok 280s test_related_ordering_with_count (expressions_window.tests.WindowFunctionTests.test_related_ordering_with_count) ... ok 280s test_row_number (expressions_window.tests.WindowFunctionTests.test_row_number) 280s The row number window function computes the number based on the order ... ok 280s test_row_number_no_ordering (expressions_window.tests.WindowFunctionTests.test_row_number_no_ordering) 280s The row number window function computes the number based on the order ... ok 280s test_row_range_rank (expressions_window.tests.WindowFunctionTests.test_row_range_rank) 280s A query with ROWS BETWEEN UNBOUNDED PRECEDING AND 3 FOLLOWING. ... ok 280s test_subquery_row_range_rank (expressions_window.tests.WindowFunctionTests.test_subquery_row_range_rank) ... ok 280s test_unsupported_range_frame_end (expressions_window.tests.WindowFunctionTests.test_unsupported_range_frame_end) ... skipped "Database doesn't support feature(s): only_supports_unbounded_with_preceding_and_following" 280s test_unsupported_range_frame_start (expressions_window.tests.WindowFunctionTests.test_unsupported_range_frame_start) ... skipped "Database doesn't support feature(s): only_supports_unbounded_with_preceding_and_following" 280s test_window_expression_within_subquery (expressions_window.tests.WindowFunctionTests.test_window_expression_within_subquery) ... ok 280s test_fixtures_loaded (fixtures_regress.tests.TestLoadFixtureFromOtherAppDirectory.test_fixtures_loaded) ... ok 280s test_absolute_path (fixtures_regress.tests.TestFixtures.test_absolute_path) 280s Regression test for ticket #6436 -- ... ok 280s test_close_connection_after_loaddata (fixtures_regress.tests.TestFixtures.test_close_connection_after_loaddata) 280s Test for ticket #7572 -- MySQL has a problem if the same connection is ... ok 280s test_dumpdata_uses_default_manager (fixtures_regress.tests.TestFixtures.test_dumpdata_uses_default_manager) 280s Regression for #11286 ... ok 280s test_duplicate_pk (fixtures_regress.tests.TestFixtures.test_duplicate_pk) 280s This is a regression test for ticket #3790. ... ok 280s test_empty (fixtures_regress.tests.TestFixtures.test_empty) 280s Test for ticket #18213 -- Loading a fixture file with no data output a warning. ... ok 280s test_error_message (fixtures_regress.tests.TestFixtures.test_error_message) 280s Regression for #9011 - error message is correct. ... ok 280s test_field_value_coerce (fixtures_regress.tests.TestFixtures.test_field_value_coerce) 280s Test for tickets #8298, #9942 - Field values should be coerced into the ... ok 280s test_fixture_dirs_with_default_fixture_path (fixtures_regress.tests.TestFixtures.test_fixture_dirs_with_default_fixture_path) 280s settings.FIXTURE_DIRS cannot contain a default fixtures directory ... ok 280s test_fixture_dirs_with_default_fixture_path_as_pathlib (fixtures_regress.tests.TestFixtures.test_fixture_dirs_with_default_fixture_path_as_pathlib) 280s settings.FIXTURE_DIRS cannot contain a default fixtures directory ... ok 280s test_fixture_dirs_with_duplicates (fixtures_regress.tests.TestFixtures.test_fixture_dirs_with_duplicates) 280s settings.FIXTURE_DIRS cannot contain duplicates in order to avoid ... ok 280s test_fixtures_dir_pathlib (fixtures_regress.tests.TestFixtures.test_fixtures_dir_pathlib) ... ok 280s test_invalid_data (fixtures_regress.tests.TestFixtures.test_invalid_data) 280s Test for ticket #4371 -- Loading a fixture file with invalid data ... ok 280s test_invalid_data_no_ext (fixtures_regress.tests.TestFixtures.test_invalid_data_no_ext) 280s Test for ticket #4371 -- Loading a fixture file with invalid data ... ok 280s test_loaddata_forward_refs_split_fixtures (fixtures_regress.tests.TestFixtures.test_loaddata_forward_refs_split_fixtures) 280s Regression for #17530 - should be able to cope with forward references ... ok 280s test_loaddata_no_fixture_specified (fixtures_regress.tests.TestFixtures.test_loaddata_no_fixture_specified) 280s Error is quickly reported when no fixtures is provided in the command ... ok 280s test_loaddata_not_found_fields_ignore (fixtures_regress.tests.TestFixtures.test_loaddata_not_found_fields_ignore) 280s Test for ticket #9279 -- Ignores entries in ... ok 280s test_loaddata_not_found_fields_ignore_xml (fixtures_regress.tests.TestFixtures.test_loaddata_not_found_fields_ignore_xml) 280s Test for ticket #19998 -- Ignore entries in the XML serialized data ... ok 280s test_loaddata_not_found_fields_not_ignore (fixtures_regress.tests.TestFixtures.test_loaddata_not_found_fields_not_ignore) 280s Test for ticket #9279 -- Error is raised for entries in ... ok 280s test_loaddata_raises_error_when_fixture_has_invalid_foreign_key (fixtures_regress.tests.TestFixtures.test_loaddata_raises_error_when_fixture_has_invalid_foreign_key) 280s Data with nonexistent child key references raises error. ... ok 280s test_loaddata_with_m2m_to_self (fixtures_regress.tests.TestFixtures.test_loaddata_with_m2m_to_self) 280s Regression test for ticket #17946. ... ok 280s test_loaddata_with_valid_fixture_dirs (fixtures_regress.tests.TestFixtures.test_loaddata_with_valid_fixture_dirs) ... ok 280s test_loaddata_works_when_fixture_has_forward_refs (fixtures_regress.tests.TestFixtures.test_loaddata_works_when_fixture_has_forward_refs) 280s Forward references cause fixtures not to load in MySQL (InnoDB). ... ok 280s test_path_containing_dots (fixtures_regress.tests.TestFixtures.test_path_containing_dots) ... ok 280s test_pg_sequence_resetting_checks (fixtures_regress.tests.TestFixtures.test_pg_sequence_resetting_checks) 280s Test for ticket #7565 -- PostgreSQL sequence resetting checks shouldn't ... ok 280s test_pretty_print_xml (fixtures_regress.tests.TestFixtures.test_pretty_print_xml) 280s Regression test for ticket #4558 -- pretty printing of XML fixtures ... ok 280s test_pretty_print_xml_empty_strings (fixtures_regress.tests.TestFixtures.test_pretty_print_xml_empty_strings) 280s Regression test for ticket #4558 -- pretty printing of XML fixtures ... skipped "Database doesn't support feature(s): interprets_empty_strings_as_nulls" 280s test_proxy_model_included (fixtures_regress.tests.TestFixtures.test_proxy_model_included) 280s Regression for #11428 - Proxy models aren't included when you dumpdata ... ok 280s test_relative_path (fixtures_regress.tests.TestFixtures.test_relative_path) ... ok 280s test_relative_path_in_fixture_dirs (fixtures_regress.tests.TestFixtures.test_relative_path_in_fixture_dirs) ... ok 280s test_ticket_20820 (fixtures_regress.tests.TestFixtures.test_ticket_20820) 280s Regression for ticket #20820 -- loaddata on a model that inherits ... ok 280s test_ticket_22421 (fixtures_regress.tests.TestFixtures.test_ticket_22421) 280s Regression for ticket #22421 -- loaddata on a model that inherits from ... ok 280s test_unimportable_serializer (fixtures_regress.tests.TestFixtures.test_unimportable_serializer) 280s Failing serializer import raises the proper error ... ok 280s test_unknown_format (fixtures_regress.tests.TestFixtures.test_unknown_format) 280s Test for ticket #4371 -- Loading data of an unknown format should fail ... ok 280s test_loaddata (fixtures_model_package.tests.FixtureTestCase.test_loaddata) 280s Fixtures can load data into models defined in packages ... ok 280s test_class_fixtures (fixtures_model_package.tests.SampleTestCase.test_class_fixtures) 280s Test cases can load fixture objects into models defined in packages ... ok 281s test_abstract_name (constraints.tests.CheckConstraintTests.test_abstract_name) ... ok 281s test_database_constraint (constraints.tests.CheckConstraintTests.test_database_constraint) ... ok 281s test_database_constraint_unicode (constraints.tests.CheckConstraintTests.test_database_constraint_unicode) ... ok 281s test_deconstruction (constraints.tests.CheckConstraintTests.test_deconstruction) ... ok 281s test_eq (constraints.tests.CheckConstraintTests.test_eq) ... ok 281s test_invalid_check_types (constraints.tests.CheckConstraintTests.test_invalid_check_types) ... ok 281s test_name (constraints.tests.CheckConstraintTests.test_name) ... ok 281s test_repr (constraints.tests.CheckConstraintTests.test_repr) ... ok 281s test_validate (constraints.tests.CheckConstraintTests.test_validate) ... ok 281s test_validate_boolean_expressions (constraints.tests.CheckConstraintTests.test_validate_boolean_expressions) ... ok 281s test_validate_nullable_field_with_isnull (constraints.tests.CheckConstraintTests.test_validate_nullable_field_with_isnull) ... skipped 'Database has feature(s) supports_comparing_boolean_expr' 281s test_validate_nullable_field_with_none (constraints.tests.CheckConstraintTests.test_validate_nullable_field_with_none) ... ok 281s test_validate_nullable_jsonfield (constraints.tests.CheckConstraintTests.test_validate_nullable_jsonfield) ... ok 281s test_validate_rawsql_expressions_noop (constraints.tests.CheckConstraintTests.test_validate_rawsql_expressions_noop) ... ok 281s test_FK_raw_query (raw_query.tests.RawQueryTests.test_FK_raw_query) 281s Test of a simple raw query against a model containing a foreign key ... ok 281s test_annotations (raw_query.tests.RawQueryTests.test_annotations) ... ok 281s test_bool (raw_query.tests.RawQueryTests.test_bool) ... ok 281s test_db_column_handler (raw_query.tests.RawQueryTests.test_db_column_handler) 281s Test of a simple raw query against a model containing a field with ... ok 281s test_db_column_name_is_used_in_raw_query (raw_query.tests.RawQueryTests.test_db_column_name_is_used_in_raw_query) 281s Regression test that ensures the `column` attribute on the field is ... ok 281s test_decimal_parameter (raw_query.tests.RawQueryTests.test_decimal_parameter) ... ok 281s test_escaped_percent (raw_query.tests.RawQueryTests.test_escaped_percent) ... ok 281s test_extra_conversions (raw_query.tests.RawQueryTests.test_extra_conversions) 281s Extra translations are ignored. ... ok 281s test_get_item (raw_query.tests.RawQueryTests.test_get_item) ... ok 281s test_inheritance (raw_query.tests.RawQueryTests.test_inheritance) ... ok 281s test_iterator (raw_query.tests.RawQueryTests.test_iterator) ... ok 281s test_len (raw_query.tests.RawQueryTests.test_len) ... ok 281s test_many_to_many (raw_query.tests.RawQueryTests.test_many_to_many) 281s Test of a simple raw query against a model containing a m2m field ... ok 281s test_missing_fields (raw_query.tests.RawQueryTests.test_missing_fields) ... ok 281s test_missing_fields_without_PK (raw_query.tests.RawQueryTests.test_missing_fields_without_PK) ... ok 281s test_multiple_iterations (raw_query.tests.RawQueryTests.test_multiple_iterations) ... ok 281s test_order_handler (raw_query.tests.RawQueryTests.test_order_handler) 281s Test of raw raw query's tolerance for columns being returned in any ... ok 281s test_params (raw_query.tests.RawQueryTests.test_params) 281s Test passing optional query parameters ... ok 281s test_params_none (raw_query.tests.RawQueryTests.test_params_none) ... ok 281s test_pk_with_mixed_case_db_column (raw_query.tests.RawQueryTests.test_pk_with_mixed_case_db_column) 281s A raw query with a model that has a pk db_column with mixed case. ... ok 281s test_pyformat_params (raw_query.tests.RawQueryTests.test_pyformat_params) 281s Test passing optional query parameters ... ok 281s test_query_count (raw_query.tests.RawQueryTests.test_query_count) ... ok 281s test_query_representation (raw_query.tests.RawQueryTests.test_query_representation) 281s Test representation of raw query with parameters ... ok 281s test_raw_query_lazy (raw_query.tests.RawQueryTests.test_raw_query_lazy) 281s Raw queries are lazy: they aren't actually executed until they're ... ok 281s test_rawqueryset_repr (raw_query.tests.RawQueryTests.test_rawqueryset_repr) ... ok 281s test_result_caching (raw_query.tests.RawQueryTests.test_result_caching) ... ok 281s test_simple_raw_query (raw_query.tests.RawQueryTests.test_simple_raw_query) 281s Basic test of raw query with a simple database query ... ok 281s test_subquery_in_raw_sql (raw_query.tests.RawQueryTests.test_subquery_in_raw_sql) ... ok 281s test_translations (raw_query.tests.RawQueryTests.test_translations) 281s Test of raw query's optional ability to translate unexpected result ... ok 281s test_white_space_query (raw_query.tests.RawQueryTests.test_white_space_query) ... ok 281s test_ipaddress_on_postgresql (string_lookup.tests.StringLookupTests.test_ipaddress_on_postgresql) 281s Regression test for #708 ... ok 281s test_queries_on_textfields (string_lookup.tests.StringLookupTests.test_queries_on_textfields) 281s Regression tests for #5087 ... ok 281s test_string_form_referencing (string_lookup.tests.StringLookupTests.test_string_form_referencing) 281s Regression test for #1661 and #1662 ... ok 281s test_unicode_chars_in_queries (string_lookup.tests.StringLookupTests.test_unicode_chars_in_queries) 281s Regression tests for #3937 ... ok 281s test_circular_reference (fixtures.tests.CircularReferenceTests.test_circular_reference) ... ok 281s test_circular_reference_natural_key (fixtures.tests.CircularReferenceTests.test_circular_reference_natural_key) ... ok 281s test_condition_must_be_q (constraints.tests.UniqueConstraintTests.test_condition_must_be_q) ... ok 281s test_database_constraint (constraints.tests.UniqueConstraintTests.test_database_constraint) ... ok 281s test_database_constraint_with_condition (constraints.tests.UniqueConstraintTests.test_database_constraint_with_condition) ... ok 281s test_deconstruction (constraints.tests.UniqueConstraintTests.test_deconstruction) ... ok 281s test_deconstruction_with_condition (constraints.tests.UniqueConstraintTests.test_deconstruction_with_condition) ... ok 281s test_deconstruction_with_deferrable (constraints.tests.UniqueConstraintTests.test_deconstruction_with_deferrable) ... ok 281s test_deconstruction_with_expressions (constraints.tests.UniqueConstraintTests.test_deconstruction_with_expressions) ... ok 281s test_deconstruction_with_include (constraints.tests.UniqueConstraintTests.test_deconstruction_with_include) ... ok 281s test_deconstruction_with_opclasses (constraints.tests.UniqueConstraintTests.test_deconstruction_with_opclasses) ... ok 281s test_deferrable_with_condition (constraints.tests.UniqueConstraintTests.test_deferrable_with_condition) ... ok 281s test_deferrable_with_expressions (constraints.tests.UniqueConstraintTests.test_deferrable_with_expressions) ... ok 281s test_deferrable_with_include (constraints.tests.UniqueConstraintTests.test_deferrable_with_include) ... ok 281s test_deferrable_with_opclasses (constraints.tests.UniqueConstraintTests.test_deferrable_with_opclasses) ... ok 281s test_eq (constraints.tests.UniqueConstraintTests.test_eq) ... ok 281s test_eq_with_condition (constraints.tests.UniqueConstraintTests.test_eq_with_condition) ... ok 281s test_eq_with_deferrable (constraints.tests.UniqueConstraintTests.test_eq_with_deferrable) ... ok 281s test_eq_with_expressions (constraints.tests.UniqueConstraintTests.test_eq_with_expressions) ... ok 281s test_eq_with_include (constraints.tests.UniqueConstraintTests.test_eq_with_include) ... ok 281s test_eq_with_opclasses (constraints.tests.UniqueConstraintTests.test_eq_with_opclasses) ... ok 281s test_expressions_and_fields_mutually_exclusive (constraints.tests.UniqueConstraintTests.test_expressions_and_fields_mutually_exclusive) ... ok 281s test_expressions_with_opclasses (constraints.tests.UniqueConstraintTests.test_expressions_with_opclasses) ... ok 281s test_include_database_constraint (constraints.tests.UniqueConstraintTests.test_include_database_constraint) ... skipped "Database doesn't support feature(s): supports_table_check_constraints, supports_covering_indexes" 281s test_initially_deferred_database_constraint (constraints.tests.UniqueConstraintTests.test_initially_deferred_database_constraint) ... skipped "Database doesn't support feature(s): supports_deferrable_unique_constraints" 281s test_initially_immediate_database_constraint (constraints.tests.UniqueConstraintTests.test_initially_immediate_database_constraint) ... skipped "Database doesn't support feature(s): supports_deferrable_unique_constraints" 281s test_invalid_defer_argument (constraints.tests.UniqueConstraintTests.test_invalid_defer_argument) ... ok 281s test_invalid_include_argument (constraints.tests.UniqueConstraintTests.test_invalid_include_argument) ... ok 281s test_invalid_opclasses_argument (constraints.tests.UniqueConstraintTests.test_invalid_opclasses_argument) ... ok 281s test_model_validation (constraints.tests.UniqueConstraintTests.test_model_validation) ... ok 281s test_model_validation_constraint_no_code_error (constraints.tests.UniqueConstraintTests.test_model_validation_constraint_no_code_error) ... ok 281s test_model_validation_with_condition (constraints.tests.UniqueConstraintTests.test_model_validation_with_condition) 281s Partial unique constraints are not ignored by ... ok 281s test_name (constraints.tests.UniqueConstraintTests.test_name) ... ok 281s test_opclasses_and_fields_same_length (constraints.tests.UniqueConstraintTests.test_opclasses_and_fields_same_length) ... ok 281s test_repr (constraints.tests.UniqueConstraintTests.test_repr) ... ok 281s test_repr_with_condition (constraints.tests.UniqueConstraintTests.test_repr_with_condition) ... ok 281s test_repr_with_deferrable (constraints.tests.UniqueConstraintTests.test_repr_with_deferrable) ... ok 281s test_repr_with_expressions (constraints.tests.UniqueConstraintTests.test_repr_with_expressions) ... ok 281s test_repr_with_include (constraints.tests.UniqueConstraintTests.test_repr_with_include) ... ok 281s test_repr_with_opclasses (constraints.tests.UniqueConstraintTests.test_repr_with_opclasses) ... ok 281s test_requires_field_or_expression (constraints.tests.UniqueConstraintTests.test_requires_field_or_expression) ... ok 281s test_requires_name (constraints.tests.UniqueConstraintTests.test_requires_name) ... ok 281s test_validate (constraints.tests.UniqueConstraintTests.test_validate) ... ok 281s test_validate_condition (constraints.tests.UniqueConstraintTests.test_validate_condition) ... ok 281s test_validate_expression (constraints.tests.UniqueConstraintTests.test_validate_expression) ... ok 281s test_validate_expression_condition (constraints.tests.UniqueConstraintTests.test_validate_expression_condition) ... ok 281s test_validate_expression_str (constraints.tests.UniqueConstraintTests.test_validate_expression_str) ... ok 281s test_validate_nullable_textfield_with_isnull_true (constraints.tests.UniqueConstraintTests.test_validate_nullable_textfield_with_isnull_true) ... ok 281s test_validate_ordered_expression (constraints.tests.UniqueConstraintTests.test_validate_ordered_expression) ... ok 281s test_forward_reference_fk (fixtures.tests.ForwardReferenceTests.test_forward_reference_fk) ... ok 281s test_forward_reference_fk_natural_key (fixtures.tests.ForwardReferenceTests.test_forward_reference_fk_natural_key) ... ok 281s test_forward_reference_m2m (fixtures.tests.ForwardReferenceTests.test_forward_reference_m2m) ... ok 281s test_forward_reference_m2m_natural_key (fixtures.tests.ForwardReferenceTests.test_forward_reference_m2m_natural_key) ... ok 281s test_loaddata_not_existent_fixture_file (fixtures.tests.NonexistentFixtureTests.test_loaddata_not_existent_fixture_file) ... ok 281s test_nonexistent_fixture_no_constraint_checking (fixtures.tests.NonexistentFixtureTests.test_nonexistent_fixture_no_constraint_checking) 281s If no fixtures match the loaddata command, constraints checks on the ... ok 281s test_class_fixtures (fixtures.tests.SubclassTestCaseFixtureLoadingTests.test_class_fixtures) 281s There were no fixture objects installed ... ok 282s test_class_fixtures (fixtures.tests.TestCaseFixtureLoadingTests.test_class_fixtures) 282s Test case has installed 3 fixture objects ... ok 282s test_abstract_model_with_custom_manager_name (custom_managers.tests.CustomManagerTests.test_abstract_model_with_custom_manager_name) 282s A custom manager may be defined on an abstract model. ... ok 282s test_custom_manager_basic (custom_managers.tests.CustomManagerTests.test_custom_manager_basic) 282s Test a custom Manager method. ... ok 282s test_deconstruct_as_manager (custom_managers.tests.CustomManagerTests.test_deconstruct_as_manager) ... ok 282s test_deconstruct_default (custom_managers.tests.CustomManagerTests.test_deconstruct_default) ... ok 282s test_deconstruct_from_queryset (custom_managers.tests.CustomManagerTests.test_deconstruct_from_queryset) ... ok 282s test_deconstruct_from_queryset_failing (custom_managers.tests.CustomManagerTests.test_deconstruct_from_queryset_failing) ... ok 282s test_filtering (custom_managers.tests.CustomManagerTests.test_filtering) 282s Custom managers respond to usual filtering methods ... ok 282s test_fk_related_manager (custom_managers.tests.CustomManagerTests.test_fk_related_manager) ... ok 282s test_gfk_related_manager (custom_managers.tests.CustomManagerTests.test_gfk_related_manager) ... ok 282s test_init_args (custom_managers.tests.CustomManagerTests.test_init_args) 282s The custom manager __init__() argument has been set. ... ok 282s test_m2m_related_manager (custom_managers.tests.CustomManagerTests.test_m2m_related_manager) ... ok 282s test_manager_attributes (custom_managers.tests.CustomManagerTests.test_manager_attributes) 282s Custom manager method is only available on the manager and not on ... ok 282s test_manager_honors_queryset_only (custom_managers.tests.CustomManagerTests.test_manager_honors_queryset_only) ... ok 282s test_manager_use_queryset_methods (custom_managers.tests.CustomManagerTests.test_manager_use_queryset_methods) 282s Custom manager will use the queryset methods ... ok 282s test_no_objects (custom_managers.tests.CustomManagerTests.test_no_objects) 282s The default manager, "objects", doesn't exist, because a custom one ... ok 282s test_queryset_and_manager (custom_managers.tests.CustomManagerTests.test_queryset_and_manager) 282s Queryset method doesn't override the custom manager method. ... ok 282s test_queryset_copied_to_default (custom_managers.tests.CustomManagerTests.test_queryset_copied_to_default) 282s The methods of a custom QuerySet are properly copied onto the ... ok 282s test_related_manager (custom_managers.tests.CustomManagerTests.test_related_manager) 282s The related managers extend the default manager. ... ok 282s test_removal_through_default_fk_related_manager (custom_managers.tests.CustomManagerTests.test_removal_through_default_fk_related_manager) ... ok 282s test_removal_through_default_gfk_related_manager (custom_managers.tests.CustomManagerTests.test_removal_through_default_gfk_related_manager) ... ok 282s test_removal_through_default_m2m_related_manager (custom_managers.tests.CustomManagerTests.test_removal_through_default_m2m_related_manager) ... ok 282s test_removal_through_specified_fk_related_manager (custom_managers.tests.CustomManagerTests.test_removal_through_specified_fk_related_manager) ... ok 282s test_removal_through_specified_gfk_related_manager (custom_managers.tests.CustomManagerTests.test_removal_through_specified_gfk_related_manager) ... ok 282s test_removal_through_specified_m2m_related_manager (custom_managers.tests.CustomManagerTests.test_removal_through_specified_m2m_related_manager) ... ok 282s test_slow_removal_through_default_fk_related_manager (custom_managers.tests.CustomManagerTests.test_slow_removal_through_default_fk_related_manager) ... ok 282s test_slow_removal_through_default_gfk_related_manager (custom_managers.tests.CustomManagerTests.test_slow_removal_through_default_gfk_related_manager) ... ok 282s test_slow_removal_through_specified_fk_related_manager (custom_managers.tests.CustomManagerTests.test_slow_removal_through_specified_fk_related_manager) ... ok 282s test_slow_removal_through_specified_gfk_related_manager (custom_managers.tests.CustomManagerTests.test_slow_removal_through_specified_gfk_related_manager) ... ok 282s test_delete_one_to_one_manager (custom_managers.tests.CustomManagersRegressTestCase.test_delete_one_to_one_manager) ... ok 282s test_delete_related_on_filtered_manager (custom_managers.tests.CustomManagersRegressTestCase.test_delete_related_on_filtered_manager) 282s Deleting related objects should also not be distracted by a ... ok 282s test_filtered_default_manager (custom_managers.tests.CustomManagersRegressTestCase.test_filtered_default_manager) 282s Even though the default manager filters out some records, ... ok 282s test_queryset_with_custom_init (custom_managers.tests.CustomManagersRegressTestCase.test_queryset_with_custom_init) 282s BaseManager.get_queryset() should use kwargs rather than args to allow ... ok 282s test_refresh_from_db_when_default_manager_filters (custom_managers.tests.CustomManagersRegressTestCase.test_refresh_from_db_when_default_manager_filters) 282s Model.refresh_from_db() works for instances hidden by the default ... ok 282s test_save_clears_annotations_from_base_manager (custom_managers.tests.CustomManagersRegressTestCase.test_save_clears_annotations_from_base_manager) 282s Model.save() clears annotations from the base manager. ... ok 282s test_managers (custom_managers.tests.TestCars.test_managers) ... ok 282s test_build_absolute_uri (urlpatterns_reverse.tests.ReverseLazyTest.test_build_absolute_uri) ... ok 282s test_inserting_reverse_lazy_into_string (urlpatterns_reverse.tests.ReverseLazyTest.test_inserting_reverse_lazy_into_string) ... ok 282s test_redirect_with_lazy_reverse (urlpatterns_reverse.tests.ReverseLazyTest.test_redirect_with_lazy_reverse) ... ok 282s test_user_permission_with_lazy_reverse (urlpatterns_reverse.tests.ReverseLazyTest.test_user_permission_with_lazy_reverse) ... ok 282s test_ambiguous_compressed_fixture (fixtures.tests.FixtureLoadingTests.test_ambiguous_compressed_fixture) ... ok 282s test_compress_format_loading (fixtures.tests.FixtureLoadingTests.test_compress_format_loading) ... ok 282s test_compressed_loading (fixtures.tests.FixtureLoadingTests.test_compressed_loading) ... ok 282s test_compressed_loading_bz2 (fixtures.tests.FixtureLoadingTests.test_compressed_loading_bz2) ... ok 282s test_compressed_loading_gzip (fixtures.tests.FixtureLoadingTests.test_compressed_loading_gzip) ... ok 282s test_compressed_loading_lzma (fixtures.tests.FixtureLoadingTests.test_compressed_loading_lzma) ... ok 282s test_compressed_loading_xz (fixtures.tests.FixtureLoadingTests.test_compressed_loading_xz) ... ok 282s test_compressed_specified_loading (fixtures.tests.FixtureLoadingTests.test_compressed_specified_loading) ... ok 282s test_db_loading (fixtures.tests.FixtureLoadingTests.test_db_loading) ... ok 282s test_dumpdata_progressbar (fixtures.tests.FixtureLoadingTests.test_dumpdata_progressbar) 282s Dumpdata shows a progress bar on the command line when --output is set, ... ok 282s test_dumpdata_proxy_with_concrete (fixtures.tests.FixtureLoadingTests.test_dumpdata_proxy_with_concrete) 282s A warning isn't displayed if a proxy model is dumped with its concrete ... ok 282s test_dumpdata_proxy_without_concrete (fixtures.tests.FixtureLoadingTests.test_dumpdata_proxy_without_concrete) 282s A warning is displayed if a proxy model is dumped without its concrete ... ok 282s test_dumpdata_with_excludes (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_excludes) ... ok 282s test_dumpdata_with_file_bz2_output (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_file_bz2_output) ... ok 282s test_dumpdata_with_file_gzip_output (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_file_gzip_output) ... ok 282s test_dumpdata_with_file_lzma_output (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_file_lzma_output) ... ok 282s test_dumpdata_with_file_output (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_file_output) ... ok 282s test_dumpdata_with_file_xz_output (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_file_xz_output) ... ok 282s test_dumpdata_with_file_zip_output (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_file_zip_output) ... ok 282s test_dumpdata_with_filtering_manager (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_filtering_manager) ... ok 282s test_dumpdata_with_pks (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_pks) ... ok 282s test_dumpdata_with_uuid_pks (fixtures.tests.FixtureLoadingTests.test_dumpdata_with_uuid_pks) ... ok 282s test_exclude_option_errors (fixtures.tests.FixtureLoadingTests.test_exclude_option_errors) 282s Excluding a bogus app or model should raise an error. ... ok 282s test_load_fixture_with_special_characters (fixtures.tests.FixtureLoadingTests.test_load_fixture_with_special_characters) ... ok 282s test_loaddata_app_option (fixtures.tests.FixtureLoadingTests.test_loaddata_app_option) ... ok 282s test_loaddata_error_message (fixtures.tests.FixtureLoadingTests.test_loaddata_error_message) 282s Loading a fixture which contains an invalid object outputs an error ... ok 282s test_loaddata_null_characters_on_postgresql (fixtures.tests.FixtureLoadingTests.test_loaddata_null_characters_on_postgresql) ... skipped "Database doesn't support feature(s): prohibits_null_characters_in_text_exception" 282s test_loaddata_verbosity_three (fixtures.tests.FixtureLoadingTests.test_loaddata_verbosity_three) ... ok 282s test_loading_and_dumping (fixtures.tests.FixtureLoadingTests.test_loading_and_dumping) ... ok 282s test_loading_stdin (fixtures.tests.FixtureLoadingTests.test_loading_stdin) 282s Loading fixtures from stdin with json and xml. ... ok 282s test_loading_using (fixtures.tests.FixtureLoadingTests.test_loading_using) ... ok 282s test_loading_with_exclude_app (fixtures.tests.FixtureLoadingTests.test_loading_with_exclude_app) ... ok 282s test_loading_with_exclude_model (fixtures.tests.FixtureLoadingTests.test_loading_with_exclude_model) ... ok 282s test_output_formats (fixtures.tests.FixtureLoadingTests.test_output_formats) ... ok 282s test_stdin_without_format (fixtures.tests.FixtureLoadingTests.test_stdin_without_format) 282s Reading from stdin raises an error if format isn't specified. ... ok 282s test_unmatched_identifier_loading (fixtures.tests.FixtureLoadingTests.test_unmatched_identifier_loading) ... ok 282s test_add_view (auth_tests.test_admin_multidb.MultiDatabaseTests.test_add_view) ... ok 282s test_authenticate (auth_tests.test_auth_backends.AllowAllUsersModelBackendTest.test_authenticate) ... ok 282s test_get_user (auth_tests.test_auth_backends.AllowAllUsersModelBackendTest.test_get_user) ... ok 283s test_authenticate_sensitive_variables (auth_tests.test_auth_backends.AuthenticateTests.test_authenticate_sensitive_variables) ... ok 283s test_clean_credentials_sensitive_variables (auth_tests.test_auth_backends.AuthenticateTests.test_clean_credentials_sensitive_variables) ... ok 283s test_skips_backends_with_decorated_method (auth_tests.test_auth_backends.AuthenticateTests.test_skips_backends_with_decorated_method) ... ok 283s test_skips_backends_without_arguments (auth_tests.test_auth_backends.AuthenticateTests.test_skips_backends_without_arguments) 283s A backend (SkippedBackend) is ignored if it doesn't accept the ... ok 283s test_type_error_raised (auth_tests.test_auth_backends.AuthenticateTests.test_type_error_raised) 283s A TypeError within a backend is propagated properly (#18171). ... ok 283s test_get_all_permissions (auth_tests.test_auth_backends.BaseBackendTest.test_get_all_permissions) ... ok 283s test_get_group_permissions (auth_tests.test_auth_backends.BaseBackendTest.test_get_group_permissions) ... ok 283s test_get_user_permissions (auth_tests.test_auth_backends.BaseBackendTest.test_get_user_permissions) ... ok 283s test_has_perm (auth_tests.test_auth_backends.BaseBackendTest.test_has_perm) ... ok 283s test_has_perms_perm_list_invalid (auth_tests.test_auth_backends.BaseBackendTest.test_has_perms_perm_list_invalid) ... ok 283s test_changed_backend_settings (auth_tests.test_auth_backends.ChangedBackendSettingsTest.test_changed_backend_settings) 283s Removing a backend configured in AUTHENTICATION_BACKENDS makes already ... ok 283s test_authenticate (auth_tests.test_auth_backends.CustomUserModelBackendAuthenticateTest.test_authenticate) ... ok 283s test_anonymous_has_no_permissions (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_anonymous_has_no_permissions) 283s #17903 -- Anonymous users shouldn't have permissions in ... ok 283s test_authentication_timing (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_authentication_timing) 283s Hasher is run once regardless of whether the user exists. Refs #20760. ... ok 283s test_authentication_without_credentials (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_authentication_without_credentials) ... ok 283s test_custom_perms (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_custom_perms) ... ok 283s test_get_all_superuser_permissions (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_get_all_superuser_permissions) 283s A superuser has all permissions. Refs #14795. ... ok 283s test_has_no_object_perm (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_has_no_object_perm) 283s Regressiontest for #12462 ... ok 283s test_has_perm (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_has_perm) ... ok 283s test_inactive_has_no_permissions (auth_tests.test_auth_backends.CustomPermissionsUserModelBackendTest.test_inactive_has_no_permissions) 283s #17903 -- Inactive users shouldn't have permissions in ... ok 283s test_backend_path (auth_tests.test_auth_backends.ImportedBackendTests.test_backend_path) ... ok 283s test_anonymous_has_no_permissions (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_anonymous_has_no_permissions) 283s #17903 -- Anonymous users shouldn't have permissions in ... ok 283s test_authentication_timing (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_authentication_timing) 283s Hasher is run once regardless of whether the user exists. Refs #20760. ... ok 283s test_authentication_without_credentials (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_authentication_without_credentials) ... ok 283s test_custom_perms (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_custom_perms) ... ok 283s test_get_all_superuser_permissions (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_get_all_superuser_permissions) 283s A superuser has all permissions. Refs #14795. ... ok 283s test_has_no_object_perm (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_has_no_object_perm) 283s Regressiontest for #12462 ... ok 283s test_has_perm (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_has_perm) ... ok 283s test_inactive_has_no_permissions (auth_tests.test_auth_backends.ExtensionUserModelBackendTest.test_inactive_has_no_permissions) 283s #17903 -- Inactive users shouldn't have permissions in ... ok 283s test_does_not_shadow_exception (auth_tests.test_auth_backends.ImproperlyConfiguredUserModelTest.test_does_not_shadow_exception) ... ok 283s test_has_module_perms (auth_tests.test_auth_backends.InActiveUserBackendTest.test_has_module_perms) ... ok 283s test_has_perm (auth_tests.test_auth_backends.InActiveUserBackendTest.test_has_perm) ... ok 283s test_raises_exception (auth_tests.test_auth_backends.NoBackendsTest.test_raises_exception) ... ok 283s test_authenticates (auth_tests.test_auth_backends.PermissionDeniedBackendTest.test_authenticates) ... ok 283s test_has_perm (auth_tests.test_auth_backends.PermissionDeniedBackendTest.test_has_perm) ... ok 283s test_has_perm_denied (auth_tests.test_auth_backends.PermissionDeniedBackendTest.test_has_perm_denied) ... ok 283s test_permission_denied (auth_tests.test_auth_backends.PermissionDeniedBackendTest.test_permission_denied) 283s user is not authenticated after a backend raises permission denied #2550 ... ok 283s test_get_all_permissions (auth_tests.test_auth_backends.RowlevelBackendTest.test_get_all_permissions) ... ok 283s test_get_group_permissions (auth_tests.test_auth_backends.RowlevelBackendTest.test_get_group_permissions) ... ok 283s test_has_perm (auth_tests.test_auth_backends.RowlevelBackendTest.test_has_perm) ... ok 283s test_anonymous_has_no_permissions (auth_tests.test_auth_backends.ModelBackendTest.test_anonymous_has_no_permissions) 283s #17903 -- Anonymous users shouldn't have permissions in ... ok 283s test_authenticate_inactive (auth_tests.test_auth_backends.ModelBackendTest.test_authenticate_inactive) 283s An inactive user can't authenticate. ... ok 283s test_authenticate_user_without_is_active_field (auth_tests.test_auth_backends.ModelBackendTest.test_authenticate_user_without_is_active_field) 283s A custom user without an `is_active` field is allowed to authenticate. ... ok 283s test_authentication_timing (auth_tests.test_auth_backends.ModelBackendTest.test_authentication_timing) 283s Hasher is run once regardless of whether the user exists. Refs #20760. ... ok 283s test_authentication_without_credentials (auth_tests.test_auth_backends.ModelBackendTest.test_authentication_without_credentials) ... ok 283s test_custom_perms (auth_tests.test_auth_backends.ModelBackendTest.test_custom_perms) ... ok 283s test_get_all_superuser_permissions (auth_tests.test_auth_backends.ModelBackendTest.test_get_all_superuser_permissions) 283s A superuser has all permissions. Refs #14795. ... ok 283s test_has_no_object_perm (auth_tests.test_auth_backends.ModelBackendTest.test_has_no_object_perm) 283s Regressiontest for #12462 ... ok 283s test_has_perm (auth_tests.test_auth_backends.ModelBackendTest.test_has_perm) ... ok 283s test_inactive_has_no_permissions (auth_tests.test_auth_backends.ModelBackendTest.test_inactive_has_no_permissions) 283s #17903 -- Inactive users shouldn't have permissions in ... ok 284s test_backend_path_login_with_explicit_backends (auth_tests.test_auth_backends.SelectingBackendTests.test_backend_path_login_with_explicit_backends) ... ok 284s test_backend_path_login_without_authenticate_multiple_backends (auth_tests.test_auth_backends.SelectingBackendTests.test_backend_path_login_without_authenticate_multiple_backends) ... ok 284s test_backend_path_login_without_authenticate_single_backend (auth_tests.test_auth_backends.SelectingBackendTests.test_backend_path_login_without_authenticate_single_backend) ... ok 284s test_non_string_backend (auth_tests.test_auth_backends.SelectingBackendTests.test_non_string_backend) ... ok 284s test_login (auth_tests.test_auth_backends.UUIDUserTests.test_login) 284s A custom user with a UUID primary key should be able to login. ... ok 284s test_get_user_model (auth_tests.test_basic.BasicTestCase.test_get_user_model) 284s The current user model can be retrieved ... ok 284s test_superuser (auth_tests.test_basic.BasicTestCase.test_superuser) 284s Check the creation and properties of a superuser ... ok 284s test_superuser_no_email_or_password (auth_tests.test_basic.BasicTestCase.test_superuser_no_email_or_password) ... ok 284s test_swappable_user (auth_tests.test_basic.BasicTestCase.test_swappable_user) 284s The current user model can be swapped out for another ... ok 284s test_swappable_user_bad_setting (auth_tests.test_basic.BasicTestCase.test_swappable_user_bad_setting) 284s The alternate user setting must point to something in the format app.model ... ok 284s test_swappable_user_nonexistent_model (auth_tests.test_basic.BasicTestCase.test_swappable_user_nonexistent_model) 284s The current user model must point to an installed model ... ok 284s test_unicode_username (auth_tests.test_basic.BasicTestCase.test_unicode_username) ... ok 284s test_user (auth_tests.test_basic.BasicTestCase.test_user) 284s Users can be created and can set their password ... ok 284s test_user_no_email (auth_tests.test_basic.BasicTestCase.test_user_no_email) 284s Users can be created without an email ... ok 284s test_user_verbose_names_translatable (auth_tests.test_basic.BasicTestCase.test_user_verbose_names_translatable) 284s Default User model verbose names are translatable (#19945) ... ok 284s test_get_user (auth_tests.test_basic.TestGetUser.test_get_user) ... ok 284s test_get_user_anonymous (auth_tests.test_basic.TestGetUser.test_get_user_anonymous) ... ok 284s test_get_user_fallback_secret (auth_tests.test_basic.TestGetUser.test_get_user_fallback_secret) ... ok 284s test_callable (auth_tests.test_decorators.LoginRequiredTestCase.test_callable) 284s login_required is assignable to callable objects. ... ok 284s test_login_required (auth_tests.test_decorators.LoginRequiredTestCase.test_login_required) 284s login_required works on a simple view wrapped in a login_required ... ok 284s test_login_required_next_url (auth_tests.test_decorators.LoginRequiredTestCase.test_login_required_next_url) 284s login_required works on a simple view wrapped in a login_required ... ok 284s test_view (auth_tests.test_decorators.LoginRequiredTestCase.test_view) 284s login_required is assignable to normal views. ... ok 284s test_message_attrs (auth_tests.test_context_processors.AuthContextProcessorTests.test_message_attrs) ... ok 284s test_perm_in_perms_attrs (auth_tests.test_context_processors.AuthContextProcessorTests.test_perm_in_perms_attrs) ... ok 284s test_perms_attrs (auth_tests.test_context_processors.AuthContextProcessorTests.test_perms_attrs) ... ok 284s test_session_is_accessed (auth_tests.test_context_processors.AuthContextProcessorTests.test_session_is_accessed) 284s The session is accessed if the auth context processor ... ok 284s test_session_not_accessed (auth_tests.test_context_processors.AuthContextProcessorTests.test_session_not_accessed) 284s The session is not accessed simply by including ... ok 284s test_user_attrs (auth_tests.test_context_processors.AuthContextProcessorTests.test_user_attrs) 284s The lazy objects returned behave just like the wrapped objects. ... ok 284s test_many_permissions_in_set_pass (auth_tests.test_decorators.PermissionsRequiredDecoratorTest.test_many_permissions_in_set_pass) ... ok 284s test_many_permissions_pass (auth_tests.test_decorators.PermissionsRequiredDecoratorTest.test_many_permissions_pass) ... ok 284s test_permissioned_denied_exception_raised (auth_tests.test_decorators.PermissionsRequiredDecoratorTest.test_permissioned_denied_exception_raised) ... ok 284s test_permissioned_denied_redirect (auth_tests.test_decorators.PermissionsRequiredDecoratorTest.test_permissioned_denied_redirect) ... ok 284s test_single_permission_pass (auth_tests.test_decorators.PermissionsRequiredDecoratorTest.test_single_permission_pass) ... ok 284s test_html_autocomplete_attributes (auth_tests.test_forms.AdminPasswordChangeFormTest.test_html_autocomplete_attributes) ... ok 284s test_missing_passwords (auth_tests.test_forms.AdminPasswordChangeFormTest.test_missing_passwords) ... ok 284s test_non_matching_passwords (auth_tests.test_forms.AdminPasswordChangeFormTest.test_non_matching_passwords) ... ok 284s test_one_password (auth_tests.test_forms.AdminPasswordChangeFormTest.test_one_password) ... ok 284s test_password_whitespace_not_stripped (auth_tests.test_forms.AdminPasswordChangeFormTest.test_password_whitespace_not_stripped) ... ok 284s test_success (auth_tests.test_forms.AdminPasswordChangeFormTest.test_success) ... ok 284s test_both_passwords (auth_tests.test_forms.BaseUserCreationFormTest.test_both_passwords) ... ok 284s test_custom_form (auth_tests.test_forms.BaseUserCreationFormTest.test_custom_form) ... ok 284s test_custom_form_hidden_username_field (auth_tests.test_forms.BaseUserCreationFormTest.test_custom_form_hidden_username_field) ... ok 284s test_custom_form_saves_many_to_many_field (auth_tests.test_forms.BaseUserCreationFormTest.test_custom_form_saves_many_to_many_field) ... ok 284s test_custom_form_with_different_username_field (auth_tests.test_forms.BaseUserCreationFormTest.test_custom_form_with_different_username_field) ... ok 284s test_duplicate_normalized_unicode (auth_tests.test_forms.BaseUserCreationFormTest.test_duplicate_normalized_unicode) 284s To prevent almost identical usernames, visually identical but differing ... ok 284s test_html_autocomplete_attributes (auth_tests.test_forms.BaseUserCreationFormTest.test_html_autocomplete_attributes) ... ok 284s test_invalid_data (auth_tests.test_forms.BaseUserCreationFormTest.test_invalid_data) ... ok 284s test_invalid_username_no_normalize (auth_tests.test_forms.BaseUserCreationFormTest.test_invalid_username_no_normalize) ... ok 284s test_normalize_username (auth_tests.test_forms.BaseUserCreationFormTest.test_normalize_username) ... ok 284s test_password_help_text (auth_tests.test_forms.BaseUserCreationFormTest.test_password_help_text) ... ok 284s test_password_verification (auth_tests.test_forms.BaseUserCreationFormTest.test_password_verification) ... ok 284s test_password_whitespace_not_stripped (auth_tests.test_forms.BaseUserCreationFormTest.test_password_whitespace_not_stripped) ... ok 284s test_success (auth_tests.test_forms.BaseUserCreationFormTest.test_success) ... ok 284s test_unicode_username (auth_tests.test_forms.BaseUserCreationFormTest.test_unicode_username) ... ok 284s test_user_already_exists (auth_tests.test_forms.BaseUserCreationFormTest.test_user_already_exists) ... ok 284s test_user_create_form_validates_password_with_all_data (auth_tests.test_forms.BaseUserCreationFormTest.test_user_create_form_validates_password_with_all_data) 284s BaseUserCreationForm password validation uses all of the form's data. ... ok 284s test_username_field_autocapitalize_none (auth_tests.test_forms.BaseUserCreationFormTest.test_username_field_autocapitalize_none) ... ok 284s test_validates_password (auth_tests.test_forms.BaseUserCreationFormTest.test_validates_password) ... ok 285s test_field_order (auth_tests.test_forms.PasswordChangeFormTest.test_field_order) ... ok 285s test_html_autocomplete_attributes (auth_tests.test_forms.PasswordChangeFormTest.test_html_autocomplete_attributes) ... ok 285s test_incorrect_password (auth_tests.test_forms.PasswordChangeFormTest.test_incorrect_password) ... ok 285s test_password_verification (auth_tests.test_forms.PasswordChangeFormTest.test_password_verification) ... ok 285s test_password_whitespace_not_stripped (auth_tests.test_forms.PasswordChangeFormTest.test_password_whitespace_not_stripped) ... ok 285s test_success (auth_tests.test_forms.PasswordChangeFormTest.test_success) ... ok 285s test_custom_login_allowed_policy (auth_tests.test_forms.AuthenticationFormTest.test_custom_login_allowed_policy) ... ok 285s test_get_invalid_login_error (auth_tests.test_forms.AuthenticationFormTest.test_get_invalid_login_error) ... ok 285s test_html_autocomplete_attributes (auth_tests.test_forms.AuthenticationFormTest.test_html_autocomplete_attributes) ... ok 285s test_inactive_user (auth_tests.test_forms.AuthenticationFormTest.test_inactive_user) ... ok 285s test_inactive_user_i18n (auth_tests.test_forms.AuthenticationFormTest.test_inactive_user_i18n) ... ok 285s test_inactive_user_incorrect_password (auth_tests.test_forms.AuthenticationFormTest.test_inactive_user_incorrect_password) 285s An invalid login doesn't leak the inactive status of a user. ... ok 285s test_integer_username (auth_tests.test_forms.AuthenticationFormTest.test_integer_username) ... ok 285s test_invalid_username (auth_tests.test_forms.AuthenticationFormTest.test_invalid_username) ... ok 285s test_login_failed (auth_tests.test_forms.AuthenticationFormTest.test_login_failed) ... ok 285s test_no_password (auth_tests.test_forms.AuthenticationFormTest.test_no_password) ... ok 285s test_password_whitespace_not_stripped (auth_tests.test_forms.AuthenticationFormTest.test_password_whitespace_not_stripped) ... ok 285s test_success (auth_tests.test_forms.AuthenticationFormTest.test_success) ... ok 285s test_unicode_username (auth_tests.test_forms.AuthenticationFormTest.test_unicode_username) ... ok 285s test_username_field_autocapitalize_none (auth_tests.test_forms.AuthenticationFormTest.test_username_field_autocapitalize_none) ... ok 285s test_username_field_label (auth_tests.test_forms.AuthenticationFormTest.test_username_field_label) ... ok 285s test_username_field_label_empty_string (auth_tests.test_forms.AuthenticationFormTest.test_username_field_label_empty_string) ... ok 285s test_username_field_label_not_set (auth_tests.test_forms.AuthenticationFormTest.test_username_field_label_not_set) ... ok 285s test_username_field_max_length_defaults_to_254 (auth_tests.test_forms.AuthenticationFormTest.test_username_field_max_length_defaults_to_254) ... ok 285s test_username_field_max_length_matches_user_model (auth_tests.test_forms.AuthenticationFormTest.test_username_field_max_length_matches_user_model) ... ok 285s test_help_text_translation (auth_tests.test_forms.SetPasswordFormTest.test_help_text_translation) ... ok 285s test_html_autocomplete_attributes (auth_tests.test_forms.SetPasswordFormTest.test_html_autocomplete_attributes) ... ok 285s test_no_password (auth_tests.test_forms.SetPasswordFormTest.test_no_password) ... ok 285s test_password_verification (auth_tests.test_forms.SetPasswordFormTest.test_password_verification) ... ok 285s test_password_whitespace_not_stripped (auth_tests.test_forms.SetPasswordFormTest.test_password_whitespace_not_stripped) ... ok 285s test_success (auth_tests.test_forms.SetPasswordFormTest.test_success) ... ok 285s test_validates_password (auth_tests.test_forms.SetPasswordFormTest.test_validates_password) ... ok 285s test_cleaned_data (auth_tests.test_forms.PasswordResetFormTest.test_cleaned_data) ... ok 285s test_custom_email_constructor (auth_tests.test_forms.PasswordResetFormTest.test_custom_email_constructor) ... ok 285s test_custom_email_field (auth_tests.test_forms.PasswordResetFormTest.test_custom_email_field) ... ok 285s test_custom_email_subject (auth_tests.test_forms.PasswordResetFormTest.test_custom_email_subject) ... ok 285s test_html_autocomplete_attributes (auth_tests.test_forms.PasswordResetFormTest.test_html_autocomplete_attributes) ... ok 285s test_inactive_user (auth_tests.test_forms.PasswordResetFormTest.test_inactive_user) 285s Inactive user cannot receive password reset email. ... ok 285s test_invalid_email (auth_tests.test_forms.PasswordResetFormTest.test_invalid_email) ... ok 285s test_nonexistent_email (auth_tests.test_forms.PasswordResetFormTest.test_nonexistent_email) 285s Test nonexistent email address. This should not fail because it would ... ok 285s test_preserve_username_case (auth_tests.test_forms.PasswordResetFormTest.test_preserve_username_case) 285s Preserve the case of the user name (before the @ in the email address) ... ok 285s test_save_html_email_template_name (auth_tests.test_forms.PasswordResetFormTest.test_save_html_email_template_name) 285s Test the PasswordResetForm.save() method with html_email_template_name ... ok 285s test_save_plaintext_email (auth_tests.test_forms.PasswordResetFormTest.test_save_plaintext_email) 285s Test the PasswordResetForm.save() method with no html_email_template_name ... ok 285s test_save_send_email_exceptions_are_catched_and_logged (auth_tests.test_forms.PasswordResetFormTest.test_save_send_email_exceptions_are_catched_and_logged) ... ok 285s test_unusable_password (auth_tests.test_forms.PasswordResetFormTest.test_unusable_password) ... ok 285s test_user_email_domain_unicode_collision (auth_tests.test_forms.PasswordResetFormTest.test_user_email_domain_unicode_collision) ... ok 285s test_user_email_domain_unicode_collision_nonexistent (auth_tests.test_forms.PasswordResetFormTest.test_user_email_domain_unicode_collision_nonexistent) ... ok 285s test_user_email_unicode_collision (auth_tests.test_forms.PasswordResetFormTest.test_user_email_unicode_collision) ... ok 285s test_user_email_unicode_collision_nonexistent (auth_tests.test_forms.PasswordResetFormTest.test_user_email_unicode_collision_nonexistent) ... ok 285s test_case_insensitive_username (auth_tests.test_forms.UserCreationFormTest.test_case_insensitive_username) ... ok 285s test_case_insensitive_username_custom_user_and_error_message (auth_tests.test_forms.UserCreationFormTest.test_case_insensitive_username_custom_user_and_error_message) ... ok 285s test_get_pass (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_get_pass) ... ok 285s test_get_pass_no_input (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_get_pass_no_input) ... ok 285s test_nonexistent_username (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_nonexistent_username) ... ok 285s test_password_validation (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_password_validation) 285s A CommandError should be raised if the user enters in passwords which ... ok 285s test_system_username (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_system_username) 285s The system username is used if --username isn't provided. ... ok 285s test_that_changepassword_command_changes_joes_password (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_that_changepassword_command_changes_joes_password) 285s Executing the changepassword management command should change joe's password ... ok 285s test_that_changepassword_command_works_with_nonascii_output (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_that_changepassword_command_works_with_nonascii_output) 285s #21627 -- Executing the changepassword management command should allow ... ok 285s test_that_max_tries_exits_1 (auth_tests.test_management.ChangepasswordManagementCommandTestCase.test_that_max_tries_exits_1) 285s A CommandError should be thrown by handle() if the user enters in ... ok 285s test_set_permissions_fk_to_using_parameter (auth_tests.test_management.CreatePermissionsMultipleDatabasesTests.test_set_permissions_fk_to_using_parameter) ... ok 286s test_create_permissions_checks_contenttypes_created (auth_tests.test_management.CreatePermissionsTests.test_create_permissions_checks_contenttypes_created) 286s `post_migrate` handler ordering isn't guaranteed. Simulate a case ... ok 286s test_default_permissions (auth_tests.test_management.CreatePermissionsTests.test_default_permissions) ... ok 286s test_permission_with_proxy_content_type_created (auth_tests.test_management.CreatePermissionsTests.test_permission_with_proxy_content_type_created) 286s A proxy model's permissions use its own content type rather than the ... ok 286s test_unavailable_models (auth_tests.test_management.CreatePermissionsTests.test_unavailable_models) 286s #24075 - Permissions shouldn't be created or deleted if the ContentType ... ok 287s test_basic_usage (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_basic_usage) 287s Check the operation of the createsuperuser management command ... ok 287s test_blank_username (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_blank_username) 287s Creation fails if --username is blank. ... ok 287s test_blank_username_non_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_blank_username_non_interactive) ... ok 287s test_default_username (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_default_username) 287s createsuperuser uses a default username when one isn't provided. ... ok 287s test_email_in_username (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_email_in_username) ... ok 287s test_environment_variable_m2m_non_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_environment_variable_m2m_non_interactive) ... ok 287s test_environment_variable_non_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_environment_variable_non_interactive) ... ok 287s test_existing_username (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_existing_username) 287s Creation fails if the username already exists. ... ok 287s test_existing_username_meta_unique_constraint (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_existing_username_meta_unique_constraint) 287s Creation fails if the username already exists and a custom user model ... ok 287s test_existing_username_non_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_existing_username_non_interactive) 287s Creation fails if the username already exists. ... ok 287s test_existing_username_provided_via_option_and_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_existing_username_provided_via_option_and_interactive) 287s call_command() gets username='janet' and interactive=True. ... ok 287s test_fields_with_fk (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_fields_with_fk) ... ok 287s test_fields_with_fk_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_fields_with_fk_interactive) ... ok 287s test_fields_with_fk_via_option_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_fields_with_fk_via_option_interactive) ... ok 287s test_fields_with_m2m (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_fields_with_m2m) ... ok 287s test_fields_with_m2m_and_through (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_fields_with_m2m_and_through) ... ok 287s test_fields_with_m2m_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_fields_with_m2m_interactive) ... ok 287s test_fields_with_m2m_interactive_blank (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_fields_with_m2m_interactive_blank) ... ok 287s test_ignore_environment_variable_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_ignore_environment_variable_interactive) ... ok 287s test_ignore_environment_variable_non_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_ignore_environment_variable_non_interactive) ... ok 287s test_invalid_username (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_invalid_username) 287s Creation fails if the username fails validation. ... ok 287s test_keyboard_interrupt (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_keyboard_interrupt) ... ok 287s test_no_email_argument (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_no_email_argument) ... ok 287s test_non_ascii_verbose_name (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_non_ascii_verbose_name) ... ok 287s test_passing_stdin (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_passing_stdin) 287s You can pass a stdin object as an option and it should be ... ok 287s test_password_validation (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_password_validation) 287s Creation should fail if the password fails validation. ... ok 287s test_password_validation_bypass (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_password_validation_bypass) 287s Password validation can be bypassed by entering 'y' at the prompt. ... ok 287s test_skip_if_not_in_TTY (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_skip_if_not_in_TTY) 287s If the command is not called from a TTY, it should be skipped and a ... ok 287s test_swappable_user (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_swappable_user) 287s A superuser can be created when a custom user model is in use ... ok 287s test_swappable_user_missing_required_field (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_swappable_user_missing_required_field) 287s A Custom superuser won't be created when a required field isn't provided ... ok 287s test_swappable_user_username_non_unique (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_swappable_user_username_non_unique) ... ok 287s test_usermodel_without_password (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_usermodel_without_password) ... ok 287s test_usermodel_without_password_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_usermodel_without_password_interactive) ... ok 287s test_validate_fk (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validate_fk) ... ok 287s test_validate_fk_environment_variable (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validate_fk_environment_variable) ... ok 287s test_validate_fk_via_option_interactive (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validate_fk_via_option_interactive) ... ok 287s test_validate_password_against_required_fields (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validate_password_against_required_fields) ... ok 287s test_validate_password_against_required_fields_via_option (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validate_password_against_required_fields_via_option) ... ok 287s test_validate_password_against_username (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validate_password_against_username) ... ok 287s test_validate_username (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validate_username) ... ok 287s test_validation_blank_password_entered (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validation_blank_password_entered) 287s Creation should fail if the user enters blank passwords. ... ok 287s test_validation_mismatched_passwords (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_validation_mismatched_passwords) 287s Creation should fail if the user enters mismatched passwords. ... ok 287s test_verbosity_zero (auth_tests.test_management.CreatesuperuserManagementCommandTestCase.test_verbosity_zero) ... ok 287s test_actual_implementation (auth_tests.test_management.GetDefaultUsernameTestCase.test_actual_implementation) ... ok 287s test_existing (auth_tests.test_management.GetDefaultUsernameTestCase.test_existing) ... ok 287s test_i18n (auth_tests.test_management.GetDefaultUsernameTestCase.test_i18n) ... ok 287s test_simple (auth_tests.test_management.GetDefaultUsernameTestCase.test_simple) ... ok 287s test_with_database (auth_tests.test_management.GetDefaultUsernameTestCase.test_with_database) ... ok 287s test_input_not_found (auth_tests.test_management.MockInputTests.test_input_not_found) ... ok 287s test_bug_14242 (auth_tests.test_forms.UserChangeFormTest.test_bug_14242) ... ok 287s test_bug_17944_empty_password (auth_tests.test_forms.UserChangeFormTest.test_bug_17944_empty_password) ... ok 287s test_bug_17944_unknown_password_algorithm (auth_tests.test_forms.UserChangeFormTest.test_bug_17944_unknown_password_algorithm) ... ok 287s test_bug_17944_unmanageable_password (auth_tests.test_forms.UserChangeFormTest.test_bug_17944_unmanageable_password) ... ok 287s test_bug_19133 (auth_tests.test_forms.UserChangeFormTest.test_bug_19133) 287s The change form does not return the password value ... ok 287s test_bug_19349_bound_password_field (auth_tests.test_forms.UserChangeFormTest.test_bug_19349_bound_password_field) ... ok 287s test_custom_form (auth_tests.test_forms.UserChangeFormTest.test_custom_form) ... ok 287s test_link_to_password_reset_in_helptext_via_to_field (auth_tests.test_forms.UserChangeFormTest.test_link_to_password_reset_in_helptext_via_to_field) ... ok 287s test_password_excluded (auth_tests.test_forms.UserChangeFormTest.test_password_excluded) ... ok 287s test_unusable_password (auth_tests.test_forms.UserChangeFormTest.test_unusable_password) ... ok 287s test_username_field_autocapitalize_none (auth_tests.test_forms.UserChangeFormTest.test_username_field_autocapitalize_none) ... ok 287s test_username_validity (auth_tests.test_forms.UserChangeFormTest.test_username_validity) ... ok 287s test_that_changepassword_command_with_database_option_uses_given_db (auth_tests.test_management.MultiDBChangepasswordManagementCommandTestCase.test_that_changepassword_command_with_database_option_uses_given_db) 287s changepassword --database should operate on the specified DB. ... ok 287s test_createsuperuser_command_suggested_username_with_database_option (auth_tests.test_management.MultiDBCreatesuperuserTestCase.test_createsuperuser_command_suggested_username_with_database_option) ... ok 287s test_createsuperuser_command_with_database_option (auth_tests.test_management.MultiDBCreatesuperuserTestCase.test_createsuperuser_command_with_database_option) 287s createsuperuser --database should operate on the specified DB. ... ok 287s test_changed_password_invalidates_session (auth_tests.test_middleware.TestAuthenticationMiddleware.test_changed_password_invalidates_session) ... ok 287s test_no_password_change_doesnt_invalidate_session (auth_tests.test_middleware.TestAuthenticationMiddleware.test_no_password_change_doesnt_invalidate_session) ... ok 287s test_no_session (auth_tests.test_middleware.TestAuthenticationMiddleware.test_no_session) ... ok 287s test_login_required (auth_tests.test_mixins.LoginRequiredMixinTests.test_login_required) 287s login_required works on a simple view wrapped in a login_required ... ok 288s test_access_mixin_permission_denied_remote_login_url (auth_tests.test_mixins.AccessMixinTests.test_access_mixin_permission_denied_remote_login_url) ... ok 288s test_access_mixin_permission_denied_response (auth_tests.test_mixins.AccessMixinTests.test_access_mixin_permission_denied_response) ... ok 288s test_stacked_mixins_missing_permission (auth_tests.test_mixins.AccessMixinTests.test_stacked_mixins_missing_permission) ... ok 288s test_stacked_mixins_not_logged_in (auth_tests.test_mixins.AccessMixinTests.test_stacked_mixins_not_logged_in) ... ok 288s test_stacked_mixins_success (auth_tests.test_mixins.AccessMixinTests.test_stacked_mixins_success) ... ok 288s test_many_permissions_pass (auth_tests.test_mixins.PermissionsRequiredMixinTests.test_many_permissions_pass) ... ok 288s test_permissioned_denied_exception_raised (auth_tests.test_mixins.PermissionsRequiredMixinTests.test_permissioned_denied_exception_raised) ... ok 288s test_permissioned_denied_redirect (auth_tests.test_mixins.PermissionsRequiredMixinTests.test_permissioned_denied_redirect) ... ok 288s test_single_permission_pass (auth_tests.test_mixins.PermissionsRequiredMixinTests.test_single_permission_pass) ... ok 288s test_builtin_user_isactive (auth_tests.test_models.IsActiveTestCase.test_builtin_user_isactive) ... ok 288s test_is_active_field_default (auth_tests.test_models.IsActiveTestCase.test_is_active_field_default) 288s tests that the default value for is_active is provided ... ok 288s test_load_data_with_user_permissions (auth_tests.test_models.LoadDataWithNaturalKeysAndMultipleDatabasesTestCase.test_load_data_with_user_permissions) ... ok 288s test_user_is_created_and_added_to_group (auth_tests.test_models.LoadDataWithNaturalKeysTestCase.test_user_is_created_and_added_to_group) ... ok 288s test_user_is_created_and_added_to_group (auth_tests.test_models.LoadDataWithoutNaturalKeysTestCase.test_user_is_created_and_added_to_group) ... ok 288s test_group_natural_key (auth_tests.test_models.NaturalKeysTestCase.test_group_natural_key) ... ok 288s test_user_natural_key (auth_tests.test_models.NaturalKeysTestCase.test_user_natural_key) ... ok 288s test_str (auth_tests.test_models.PermissionTests.test_str) ... ok 288s test_create_superuser (auth_tests.test_models.TestCreateSuperUserSignals.test_create_superuser) ... ok 288s test_create_user (auth_tests.test_models.TestCreateSuperUserSignals.test_create_user) ... ok 288s test_backend_without_with_perm (auth_tests.test_models.UserWithPermTestCase.test_backend_without_with_perm) ... ok 288s test_basic (auth_tests.test_models.UserWithPermTestCase.test_basic) ... ok 288s test_custom_backend (auth_tests.test_models.UserWithPermTestCase.test_custom_backend) ... ok 288s test_custom_backend_pass_obj (auth_tests.test_models.UserWithPermTestCase.test_custom_backend_pass_obj) ... ok 288s test_invalid_backend_type (auth_tests.test_models.UserWithPermTestCase.test_invalid_backend_type) ... ok 288s test_invalid_permission_name (auth_tests.test_models.UserWithPermTestCase.test_invalid_permission_name) ... ok 288s test_invalid_permission_type (auth_tests.test_models.UserWithPermTestCase.test_invalid_permission_type) ... ok 288s test_multiple_backends (auth_tests.test_models.UserWithPermTestCase.test_multiple_backends) ... ok 288s test_nonexistent_backend (auth_tests.test_models.UserWithPermTestCase.test_nonexistent_backend) ... ok 288s test_nonexistent_permission (auth_tests.test_models.UserWithPermTestCase.test_nonexistent_permission) ... ok 288s test_csrf_validation_passes_after_process_request_login (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_csrf_validation_passes_after_process_request_login) 288s CSRF check must access the CSRF token from the session or cookie, ... ok 288s test_header_disappears (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_header_disappears) 288s A logged in user is logged out automatically when ... ok 288s test_inactive_user (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_inactive_user) ... ok 288s test_known_user (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_known_user) 288s Tests the case where the username passed in the header is a valid User. ... ok 288s test_last_login (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_last_login) 288s A user's last_login is set the first time they make a ... ok 288s test_no_remote_user (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_no_remote_user) 288s Users are not created when remote user is not specified. ... ok 288s test_unknown_user (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_unknown_user) 288s Tests the case where the username passed in the header does not exist ... ok 288s test_user_switch_forces_new_login (auth_tests.test_remote_user.AllowAllUsersRemoteUserBackendTest.test_user_switch_forces_new_login) 288s If the username in the header changes between requests ... ok 289s test_csrf_validation_passes_after_process_request_login (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_csrf_validation_passes_after_process_request_login) 289s CSRF check must access the CSRF token from the session or cookie, ... ok 289s test_header_disappears (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_header_disappears) 289s A logged in user is logged out automatically when ... ok 289s test_inactive_user (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_inactive_user) ... ok 289s test_known_user (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_known_user) 289s Tests the case where the username passed in the header is a valid User. ... ok 289s test_last_login (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_last_login) 289s A user's last_login is set the first time they make a ... ok 289s test_no_remote_user (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_no_remote_user) 289s Users are not created when remote user is not specified. ... ok 289s test_unknown_user (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_unknown_user) 289s Tests the case where the username passed in the header does not exist ... ok 289s test_user_switch_forces_new_login (auth_tests.test_remote_user.CustomHeaderRemoteUserTest.test_user_switch_forces_new_login) 289s If the username in the header changes between requests ... ok 289s test_csrf_validation_passes_after_process_request_login (auth_tests.test_remote_user.PersistentRemoteUserTest.test_csrf_validation_passes_after_process_request_login) 289s CSRF check must access the CSRF token from the session or cookie, ... ok 289s test_header_disappears (auth_tests.test_remote_user.PersistentRemoteUserTest.test_header_disappears) 289s A logged in user is kept logged in even if the REMOTE_USER header ... ok 289s test_inactive_user (auth_tests.test_remote_user.PersistentRemoteUserTest.test_inactive_user) ... ok 289s test_known_user (auth_tests.test_remote_user.PersistentRemoteUserTest.test_known_user) 289s Tests the case where the username passed in the header is a valid User. ... ok 289s test_last_login (auth_tests.test_remote_user.PersistentRemoteUserTest.test_last_login) 289s A user's last_login is set the first time they make a ... ok 289s test_no_remote_user (auth_tests.test_remote_user.PersistentRemoteUserTest.test_no_remote_user) 289s Users are not created when remote user is not specified. ... ok 289s test_unknown_user (auth_tests.test_remote_user.PersistentRemoteUserTest.test_unknown_user) 289s Tests the case where the username passed in the header does not exist ... ok 289s test_user_switch_forces_new_login (auth_tests.test_remote_user.PersistentRemoteUserTest.test_user_switch_forces_new_login) 289s If the username in the header changes between requests ... ok 289s test_known_user_sync (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentDeprecationTest.test_known_user_sync) ... ok 289s test_csrf_validation_passes_after_process_request_login (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_csrf_validation_passes_after_process_request_login) 289s CSRF check must access the CSRF token from the session or cookie, ... ok 289s test_header_disappears (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_header_disappears) 289s A logged in user is logged out automatically when ... ok 289s test_inactive_user (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_inactive_user) ... ok 289s test_known_user (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_known_user) 289s Tests the case where the username passed in the header is a valid User. ... ok 289s test_last_login (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_last_login) 289s A user's last_login is set the first time they make a ... ok 289s test_no_remote_user (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_no_remote_user) 289s Users are not created when remote user is not specified. ... ok 289s test_unknown_user (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_unknown_user) 289s Tests the case where the username passed in the header does not exist ... ok 289s test_user_switch_forces_new_login (auth_tests.test_remote_user.RemoteUserCustomNoCreatedArgumentTest.test_user_switch_forces_new_login) 289s If the username in the header changes between requests ... ok 289s test_csrf_validation_passes_after_process_request_login (auth_tests.test_remote_user.RemoteUserCustomTest.test_csrf_validation_passes_after_process_request_login) 289s CSRF check must access the CSRF token from the session or cookie, ... ok 289s test_header_disappears (auth_tests.test_remote_user.RemoteUserCustomTest.test_header_disappears) 289s A logged in user is logged out automatically when ... ok 289s test_inactive_user (auth_tests.test_remote_user.RemoteUserCustomTest.test_inactive_user) ... ok 289s test_known_user (auth_tests.test_remote_user.RemoteUserCustomTest.test_known_user) 289s The strings passed in REMOTE_USER should be cleaned and the known users ... ok 289s test_last_login (auth_tests.test_remote_user.RemoteUserCustomTest.test_last_login) 289s A user's last_login is set the first time they make a ... ok 289s test_no_remote_user (auth_tests.test_remote_user.RemoteUserCustomTest.test_no_remote_user) 289s Users are not created when remote user is not specified. ... ok 289s test_unknown_user (auth_tests.test_remote_user.RemoteUserCustomTest.test_unknown_user) 289s The unknown user created should be configured with an email address ... ok 289s test_user_switch_forces_new_login (auth_tests.test_remote_user.RemoteUserCustomTest.test_user_switch_forces_new_login) 289s If the username in the header changes between requests ... ok 289s test_check_password_upgrade (auth_tests.test_models.AbstractUserTestCase.test_check_password_upgrade) 289s password_changed() shouldn't be called if User.check_password() ... ok 289s test_email_user (auth_tests.test_models.AbstractUserTestCase.test_email_user) ... ok 289s test_last_login_default (auth_tests.test_models.AbstractUserTestCase.test_last_login_default) ... ok 289s test_user_clean_normalize_email (auth_tests.test_models.AbstractUserTestCase.test_user_clean_normalize_email) ... ok 289s test_user_double_save (auth_tests.test_models.AbstractUserTestCase.test_user_double_save) 289s Calling user.save() twice should trigger password_changed() once. ... ok 289s test_csrf_validation_passes_after_process_request_login (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_csrf_validation_passes_after_process_request_login) 289s CSRF check must access the CSRF token from the session or cookie, ... ok 289s test_header_disappears (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_header_disappears) 289s A logged in user is logged out automatically when ... ok 289s test_inactive_user (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_inactive_user) ... ok 289s test_known_user (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_known_user) 289s Tests the case where the username passed in the header is a valid User. ... ok 289s test_last_login (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_last_login) 289s A user's last_login is set the first time they make a ... ok 289s test_no_remote_user (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_no_remote_user) 289s Users are not created when remote user is not specified. ... ok 289s test_unknown_user (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_unknown_user) ... ok 289s test_user_switch_forces_new_login (auth_tests.test_remote_user.RemoteUserNoCreateTest.test_user_switch_forces_new_login) 289s If the username in the header changes between requests ... ok 290s test_failed_login_without_request (auth_tests.test_signals.SignalTestCase.test_failed_login_without_request) ... ok 290s test_login (auth_tests.test_signals.SignalTestCase.test_login) ... ok 290s test_login_with_custom_user_without_last_login_field (auth_tests.test_signals.SignalTestCase.test_login_with_custom_user_without_last_login_field) 290s The user_logged_in signal is only registered if the user model has a ... ok 290s test_logout (auth_tests.test_signals.SignalTestCase.test_logout) ... ok 290s test_logout_anonymous (auth_tests.test_signals.SignalTestCase.test_logout_anonymous) ... ok 290s test_update_last_login (auth_tests.test_signals.SignalTestCase.test_update_last_login) 290s Only `last_login` is updated in `update_last_login` ... ok 290s test_csrf_validation_passes_after_process_request_login (auth_tests.test_remote_user.RemoteUserTest.test_csrf_validation_passes_after_process_request_login) 290s CSRF check must access the CSRF token from the session or cookie, ... ok 290s test_header_disappears (auth_tests.test_remote_user.RemoteUserTest.test_header_disappears) 290s A logged in user is logged out automatically when ... ok 290s test_inactive_user (auth_tests.test_remote_user.RemoteUserTest.test_inactive_user) ... ok 290s test_known_user (auth_tests.test_remote_user.RemoteUserTest.test_known_user) 290s Tests the case where the username passed in the header is a valid User. ... ok 290s test_last_login (auth_tests.test_remote_user.RemoteUserTest.test_last_login) 290s A user's last_login is set the first time they make a ... ok 290s test_no_remote_user (auth_tests.test_remote_user.RemoteUserTest.test_no_remote_user) 290s Users are not created when remote user is not specified. ... ok 290s test_unknown_user (auth_tests.test_remote_user.RemoteUserTest.test_unknown_user) 290s Tests the case where the username passed in the header does not exist ... ok 290s test_user_switch_forces_new_login (auth_tests.test_remote_user.RemoteUserTest.test_user_switch_forces_new_login) 290s If the username in the header changes between requests ... ok 290s test_password_change_done_view (auth_tests.test_templates.AuthTemplateTests.test_password_change_done_view) ... ok 290s test_password_reset_change_view (auth_tests.test_templates.AuthTemplateTests.test_password_reset_change_view) ... ok 290s test_password_reset_complete_view (auth_tests.test_templates.AuthTemplateTests.test_password_reset_complete_view) ... ok 290s test_password_reset_confirm_view_custom_username_hint (auth_tests.test_templates.AuthTemplateTests.test_password_reset_confirm_view_custom_username_hint) ... ok 290s test_password_reset_confirm_view_invalid_token (auth_tests.test_templates.AuthTemplateTests.test_password_reset_confirm_view_invalid_token) ... ok 290s test_password_reset_confirm_view_valid_token (auth_tests.test_templates.AuthTemplateTests.test_password_reset_confirm_view_valid_token) ... ok 290s test_password_reset_done_view (auth_tests.test_templates.AuthTemplateTests.test_password_reset_done_view) ... ok 290s test_password_reset_view (auth_tests.test_templates.AuthTemplateTests.test_password_reset_view) ... ok 290s test_help_text (auth_tests.test_validators.UserAttributeSimilarityValidatorTest.test_help_text) ... ok 290s test_validate (auth_tests.test_validators.UserAttributeSimilarityValidatorTest.test_validate) ... ok 290s test_validate_property (auth_tests.test_validators.UserAttributeSimilarityValidatorTest.test_validate_property) ... ok 290s test_named_urls (auth_tests.test_views.AuthViewNamedURLTests.test_named_urls) 290s Named URLs should be reversible ... ok 290s test_10265 (auth_tests.test_tokens.TokenGeneratorTest.test_10265) 290s The token generated for a user created in the same request ... ok 290s test_check_token_secret_fallbacks (auth_tests.test_tokens.TokenGeneratorTest.test_check_token_secret_fallbacks) ... ok 290s test_check_token_secret_key_fallbacks (auth_tests.test_tokens.TokenGeneratorTest.test_check_token_secret_key_fallbacks) ... ok 290s test_check_token_secret_key_fallbacks_override (auth_tests.test_tokens.TokenGeneratorTest.test_check_token_secret_key_fallbacks_override) ... ok 290s test_check_token_with_nonexistent_token_and_user (auth_tests.test_tokens.TokenGeneratorTest.test_check_token_with_nonexistent_token_and_user) ... ok 290s test_make_token (auth_tests.test_tokens.TokenGeneratorTest.test_make_token) ... ok 290s test_secret_lazy_validation (auth_tests.test_tokens.TokenGeneratorTest.test_secret_lazy_validation) ... ok 290s test_timeout (auth_tests.test_tokens.TokenGeneratorTest.test_timeout) 290s The token is valid after n seconds, but no greater. ... ok 290s test_token_with_different_email (auth_tests.test_tokens.TokenGeneratorTest.test_token_with_different_email) 290s Updating the user email address invalidates the token. ... ok 290s test_token_with_different_secret (auth_tests.test_tokens.TokenGeneratorTest.test_token_with_different_secret) 290s A valid token can be created with a secret other than SECRET_KEY by ... ok 290s test_token_with_different_secret_subclass (auth_tests.test_tokens.TokenGeneratorTest.test_token_with_different_secret_subclass) ... ok 290s test_password_change_done_fails (auth_tests.test_views.ChangePasswordTest.test_password_change_done_fails) ... ok 290s test_password_change_done_succeeds (auth_tests.test_views.ChangePasswordTest.test_password_change_done_succeeds) ... ok 290s test_password_change_fails_with_invalid_old_password (auth_tests.test_views.ChangePasswordTest.test_password_change_fails_with_invalid_old_password) ... ok 290s test_password_change_fails_with_mismatched_passwords (auth_tests.test_views.ChangePasswordTest.test_password_change_fails_with_mismatched_passwords) ... ok 290s test_password_change_redirect_custom (auth_tests.test_views.ChangePasswordTest.test_password_change_redirect_custom) ... ok 290s test_password_change_redirect_custom_named (auth_tests.test_views.ChangePasswordTest.test_password_change_redirect_custom_named) ... ok 290s test_password_change_redirect_default (auth_tests.test_views.ChangePasswordTest.test_password_change_redirect_default) ... ok 290s test_password_change_succeeds (auth_tests.test_views.ChangePasswordTest.test_password_change_succeeds) ... ok 290s test_confirm_valid_custom_user (auth_tests.test_views.CustomUserPasswordResetTest.test_confirm_valid_custom_user) ... ok 291s test_default (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_default) 291s Stay on the login page by default. ... ok 291s test_guest (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_guest) 291s If not logged in, stay on the same page. ... ok 291s test_permission_required_logged_in (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_permission_required_logged_in) ... ok 291s test_permission_required_not_logged_in (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_permission_required_not_logged_in) ... ok 291s test_redirect (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_redirect) 291s If logged in, go to default redirected URL. ... ok 291s test_redirect_loop (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_redirect_loop) 291s Detect a redirect loop if LOGIN_REDIRECT_URL is not correctly set, ... ok 291s test_redirect_param (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_redirect_param) 291s If next is specified as a GET parameter, go there. ... ok 291s test_redirect_url (auth_tests.test_views.LoginRedirectAuthenticatedUser.test_redirect_url) 291s If logged in, go to custom redirected URL. ... ok 291s test_custom (auth_tests.test_views.LoginRedirectUrlTest.test_custom) ... ok 291s test_default (auth_tests.test_views.LoginRedirectUrlTest.test_default) ... ok 291s test_named (auth_tests.test_views.LoginRedirectUrlTest.test_named) ... ok 291s test_remote (auth_tests.test_views.LoginRedirectUrlTest.test_remote) ... ok 291s test_success_url_allowed_hosts_safe_host (auth_tests.test_views.LoginSuccessURLAllowedHostsTest.test_success_url_allowed_hosts_safe_host) ... ok 291s test_success_url_allowed_hosts_same_host (auth_tests.test_views.LoginSuccessURLAllowedHostsTest.test_success_url_allowed_hosts_same_host) ... ok 291s test_success_url_allowed_hosts_unsafe_host (auth_tests.test_views.LoginSuccessURLAllowedHostsTest.test_success_url_allowed_hosts_unsafe_host) ... ok 291s test_current_site_in_context_after_login (auth_tests.test_views.LoginTest.test_current_site_in_context_after_login) ... ok 291s test_login_csrf_rotate (auth_tests.test_views.LoginTest.test_login_csrf_rotate) 291s Makes sure that a login rotates the currently-used CSRF token. ... ok 291s test_login_form_contains_request (auth_tests.test_views.LoginTest.test_login_form_contains_request) ... ok 291s test_login_get_default_redirect_url (auth_tests.test_views.LoginTest.test_login_get_default_redirect_url) ... ok 291s test_login_named_next_page_named (auth_tests.test_views.LoginTest.test_login_named_next_page_named) ... ok 291s test_login_next_page (auth_tests.test_views.LoginTest.test_login_next_page) ... ok 291s test_login_next_page_overrides_login_redirect_url_setting (auth_tests.test_views.LoginTest.test_login_next_page_overrides_login_redirect_url_setting) ... ok 291s test_login_redirect_url_overrides_get_default_redirect_url (auth_tests.test_views.LoginTest.test_login_redirect_url_overrides_get_default_redirect_url) ... ok 291s test_login_redirect_url_overrides_next_page (auth_tests.test_views.LoginTest.test_login_redirect_url_overrides_next_page) ... ok 291s test_login_session_without_hash_session_key (auth_tests.test_views.LoginTest.test_login_session_without_hash_session_key) 291s Session without django.contrib.auth.HASH_SESSION_KEY should login ... ok 291s test_security_check (auth_tests.test_views.LoginTest.test_security_check) ... ok 291s test_security_check_https (auth_tests.test_views.LoginTest.test_security_check_https) ... ok 291s test_session_key_flushed_on_login (auth_tests.test_views.LoginTest.test_session_key_flushed_on_login) 291s To avoid reusing another user's session, ensure a new, empty session is ... ok 291s test_session_key_flushed_on_login_after_password_change (auth_tests.test_views.LoginTest.test_session_key_flushed_on_login_after_password_change) 291s As above, but same user logging in after a password change. ... ok 291s test_https_login_url (auth_tests.test_views.LoginURLSettings.test_https_login_url) ... ok 291s test_lazy_login_url (auth_tests.test_views.LoginURLSettings.test_lazy_login_url) ... ok 291s test_login_url_with_querystring (auth_tests.test_views.LoginURLSettings.test_login_url_with_querystring) ... ok 291s test_named_login_url (auth_tests.test_views.LoginURLSettings.test_named_login_url) ... ok 291s test_remote_login_url (auth_tests.test_views.LoginURLSettings.test_remote_login_url) ... ok 291s test_remote_login_url_with_next_querystring (auth_tests.test_views.LoginURLSettings.test_remote_login_url_with_next_querystring) ... ok 291s test_standard_login_url (auth_tests.test_views.LoginURLSettings.test_standard_login_url) ... ok 292s test_14377 (auth_tests.test_views.LogoutTest.test_14377) ... ok 292s test_logout_default (auth_tests.test_views.LogoutTest.test_logout_default) 292s Logout without next_page option renders the default template ... ok 292s test_logout_doesnt_cache (auth_tests.test_views.LogoutTest.test_logout_doesnt_cache) 292s The logout() view should send "no-cache" headers for reasons described ... ok 292s test_logout_preserve_language (auth_tests.test_views.LogoutTest.test_logout_preserve_language) 292s Language is preserved after logout. ... ok 292s test_logout_redirect_url_named_setting (auth_tests.test_views.LogoutTest.test_logout_redirect_url_named_setting) ... ok 292s test_logout_redirect_url_setting (auth_tests.test_views.LogoutTest.test_logout_redirect_url_setting) ... ok 292s test_logout_redirect_url_setting_allowed_hosts_unsafe_host (auth_tests.test_views.LogoutTest.test_logout_redirect_url_setting_allowed_hosts_unsafe_host) ... ok 292s test_logout_with_custom_redirect_argument (auth_tests.test_views.LogoutTest.test_logout_with_custom_redirect_argument) 292s Logout with custom query string redirects to specified resource ... ok 292s test_logout_with_get_raises_deprecation_warning (auth_tests.test_views.LogoutTest.test_logout_with_get_raises_deprecation_warning) ... ok 292s test_logout_with_named_redirect (auth_tests.test_views.LogoutTest.test_logout_with_named_redirect) 292s Logout resolves names or URLs passed as next_page. ... ok 292s test_logout_with_next_page_specified (auth_tests.test_views.LogoutTest.test_logout_with_next_page_specified) 292s Logout with next_page option given redirects to specified resource ... ok 292s test_logout_with_overridden_redirect_url (auth_tests.test_views.LogoutTest.test_logout_with_overridden_redirect_url) ... ok 292s test_logout_with_post (auth_tests.test_views.LogoutTest.test_logout_with_post) ... ok 292s test_logout_with_redirect_argument (auth_tests.test_views.LogoutTest.test_logout_with_redirect_argument) 292s Logout with query string redirects to specified resource ... ok 292s test_security_check (auth_tests.test_views.LogoutTest.test_security_check) ... ok 292s test_security_check_https (auth_tests.test_views.LogoutTest.test_security_check_https) ... ok 292s test_success_url_allowed_hosts_safe_host (auth_tests.test_views.LogoutTest.test_success_url_allowed_hosts_safe_host) ... ok 292s test_success_url_allowed_hosts_same_host (auth_tests.test_views.LogoutTest.test_success_url_allowed_hosts_same_host) ... ok 292s test_success_url_allowed_hosts_unsafe_host (auth_tests.test_views.LogoutTest.test_success_url_allowed_hosts_unsafe_host) ... ok 292s test_default_logout_then_login (auth_tests.test_views.LogoutThenLoginTests.test_default_logout_then_login) ... ok 292s test_default_logout_then_login_get (auth_tests.test_views.LogoutThenLoginTests.test_default_logout_then_login_get) ... ok 292s test_logout_then_login_with_custom_login (auth_tests.test_views.LogoutThenLoginTests.test_logout_then_login_with_custom_login) ... ok 293s test_confirm_complete (auth_tests.test_views.PasswordResetTest.test_confirm_complete) ... ok 293s test_confirm_custom_reset_url_token (auth_tests.test_views.PasswordResetTest.test_confirm_custom_reset_url_token) ... ok 293s test_confirm_custom_reset_url_token_link_redirects_to_set_password_page (auth_tests.test_views.PasswordResetTest.test_confirm_custom_reset_url_token_link_redirects_to_set_password_page) ... ok 293s test_confirm_different_passwords (auth_tests.test_views.PasswordResetTest.test_confirm_different_passwords) ... ok 293s test_confirm_display_user_from_form (auth_tests.test_views.PasswordResetTest.test_confirm_display_user_from_form) ... ok 293s test_confirm_invalid (auth_tests.test_views.PasswordResetTest.test_confirm_invalid) ... ok 293s test_confirm_invalid_hash (auth_tests.test_views.PasswordResetTest.test_confirm_invalid_hash) 293s A POST with an invalid token is rejected. ... ok 293s test_confirm_invalid_post (auth_tests.test_views.PasswordResetTest.test_confirm_invalid_post) ... ok 293s test_confirm_invalid_user (auth_tests.test_views.PasswordResetTest.test_confirm_invalid_user) ... ok 293s test_confirm_link_redirects_to_set_password_page (auth_tests.test_views.PasswordResetTest.test_confirm_link_redirects_to_set_password_page) ... ok 293s test_confirm_login_post_reset (auth_tests.test_views.PasswordResetTest.test_confirm_login_post_reset) ... ok 293s test_confirm_login_post_reset_already_logged_in (auth_tests.test_views.PasswordResetTest.test_confirm_login_post_reset_already_logged_in) ... ok 293s test_confirm_login_post_reset_custom_backend (auth_tests.test_views.PasswordResetTest.test_confirm_login_post_reset_custom_backend) ... ok 293s test_confirm_overflow_user (auth_tests.test_views.PasswordResetTest.test_confirm_overflow_user) ... ok 293s test_confirm_redirect_custom (auth_tests.test_views.PasswordResetTest.test_confirm_redirect_custom) ... ok 293s test_confirm_redirect_custom_named (auth_tests.test_views.PasswordResetTest.test_confirm_redirect_custom_named) ... ok 293s test_confirm_redirect_default (auth_tests.test_views.PasswordResetTest.test_confirm_redirect_default) ... ok 293s test_confirm_valid (auth_tests.test_views.PasswordResetTest.test_confirm_valid) ... ok 293s test_email_found (auth_tests.test_views.PasswordResetTest.test_email_found) 293s Email is sent if a valid email address is provided for password reset ... ok 293s test_email_found_custom_from (auth_tests.test_views.PasswordResetTest.test_email_found_custom_from) 293s Email is sent if a valid email address is provided for password reset ... ok 293s test_email_not_found (auth_tests.test_views.PasswordResetTest.test_email_not_found) 293s If the provided email is not registered, don't raise any error but ... ok 293s test_extra_email_context (auth_tests.test_views.PasswordResetTest.test_extra_email_context) 293s extra_email_context should be available in the email template context. ... ok 293s test_html_mail_template (auth_tests.test_views.PasswordResetTest.test_html_mail_template) 293s A multipart email with text/plain and text/html is sent ... ok 293s test_invalid_link_if_going_directly_to_the_final_reset_password_url (auth_tests.test_views.PasswordResetTest.test_invalid_link_if_going_directly_to_the_final_reset_password_url) ... ok 293s test_missing_kwargs (auth_tests.test_views.PasswordResetTest.test_missing_kwargs) ... ok 293s test_poisoned_http_host (auth_tests.test_views.PasswordResetTest.test_poisoned_http_host) 293s Poisoned HTTP_HOST headers can't be used for reset emails ... ok 293s test_poisoned_http_host_admin_site (auth_tests.test_views.PasswordResetTest.test_poisoned_http_host_admin_site) 293s Poisoned HTTP_HOST headers can't be used for reset emails on admin views ... ok 293s test_reset_custom_redirect (auth_tests.test_views.PasswordResetTest.test_reset_custom_redirect) ... ok 293s test_reset_custom_redirect_named (auth_tests.test_views.PasswordResetTest.test_reset_custom_redirect_named) ... ok 293s test_reset_redirect_default (auth_tests.test_views.PasswordResetTest.test_reset_redirect_default) ... ok 293s test_redirect_to_login_with_lazy (auth_tests.test_views.RedirectToLoginTests.test_redirect_to_login_with_lazy) ... ok 293s test_redirect_to_login_with_lazy_and_unicode (auth_tests.test_views.RedirectToLoginTests.test_redirect_to_login_with_lazy_and_unicode) ... ok 293s test_get_default_redirect_url_next_page (auth_tests.test_views.RedirectURLMixinTests.test_get_default_redirect_url_next_page) ... ok 293s test_get_default_redirect_url_no_next_page (auth_tests.test_views.RedirectURLMixinTests.test_get_default_redirect_url_no_next_page) ... ok 293s test_user_password_change_updates_session (auth_tests.test_views.SessionAuthenticationTests.test_user_password_change_updates_session) 293s #21649 - Ensure contrib.auth.views.password_change updates the user's ... ok 293s test_confirm_invalid_uuid (auth_tests.test_views.UUIDUserPasswordResetTest.test_confirm_invalid_uuid) 293s A uidb64 that decodes to a non-UUID doesn't crash. ... ok 293s test_confirm_valid_custom_user (auth_tests.test_views.UUIDUserPasswordResetTest.test_confirm_valid_custom_user) ... ok 294s test_changelist_disallows_password_lookups (auth_tests.test_views.ChangelistTests.test_changelist_disallows_password_lookups) ... ok 294s test_password_change_bad_url (auth_tests.test_views.ChangelistTests.test_password_change_bad_url) ... ok 294s test_user_change_different_user_password (auth_tests.test_views.ChangelistTests.test_user_change_different_user_password) ... ok 294s test_user_change_email (auth_tests.test_views.ChangelistTests.test_user_change_email) ... ok 294s test_user_change_password (auth_tests.test_views.ChangelistTests.test_user_change_password) ... ok 294s test_user_change_password_passes_user_to_has_change_permission (auth_tests.test_views.ChangelistTests.test_user_change_password_passes_user_to_has_change_permission) ... ok 294s test_user_not_change (auth_tests.test_views.ChangelistTests.test_user_not_change) ... ok 294s test_view_user_password_is_readonly (auth_tests.test_views.ChangelistTests.test_view_user_password_is_readonly) ... ok 294s test_dates_avoid_datetime_cast (dates.tests.DatesTests.test_dates_avoid_datetime_cast) ... skipped 'Test checks MySQL query syntax' 294s test_dates_fails_when_given_invalid_field_argument (dates.tests.DatesTests.test_dates_fails_when_given_invalid_field_argument) ... ok 294s test_dates_fails_when_given_invalid_kind_argument (dates.tests.DatesTests.test_dates_fails_when_given_invalid_kind_argument) ... ok 294s test_dates_fails_when_given_invalid_order_argument (dates.tests.DatesTests.test_dates_fails_when_given_invalid_order_argument) ... ok 294s test_dates_fails_when_no_arguments_are_provided (dates.tests.DatesTests.test_dates_fails_when_no_arguments_are_provided) ... ok 294s test_dates_trunc_datetime_fields (dates.tests.DatesTests.test_dates_trunc_datetime_fields) ... ok 294s test_related_model_traverse (dates.tests.DatesTests.test_related_model_traverse) ... ok 294s test_debug (context_processors.tests.DebugContextProcessorTests.test_debug) ... ok 294s test_sql_queries (context_processors.tests.DebugContextProcessorTests.test_sql_queries) 294s Test whether sql_queries represents the actual amount ... ok 294s test_auth_manager (multiple_database.tests.AuthTestCase.test_auth_manager) 294s The methods on the auth manager obey database hints ... ok 294s test_dumpdata (multiple_database.tests.AuthTestCase.test_dumpdata) 294s dumpdata honors allow_migrate restrictions on the router ... ok 294s test_fixture_loading (multiple_database.tests.FixtureTestCase.test_fixture_loading) 294s Multi-db fixtures are loaded correctly ... ok 294s test_pseudo_empty_fixtures (multiple_database.tests.FixtureTestCase.test_pseudo_empty_fixtures) 294s A fixture can contain entries, but lead to nothing in the database; ... ok 295s test_migrate_to_other_database (multiple_database.tests.MigrateTestCase.test_migrate_to_other_database) 295s Regression test for #16039: migrate with --database option. ... ok 295s test_migrate_to_other_database_with_router (multiple_database.tests.MigrateTestCase.test_migrate_to_other_database_with_router) 295s Regression test for #16039: migrate with --database option. ... ok 295s test_pickling (multiple_database.tests.PickleQuerySetTestCase.test_pickling) ... ok 296s test_basic_queries (multiple_database.tests.QueryTestCase.test_basic_queries) 296s Queries are constrained to a single database ... ok 296s test_db_selection (multiple_database.tests.QueryTestCase.test_db_selection) 296s Querysets will use the default database by default ... ok 296s test_default_creation (multiple_database.tests.QueryTestCase.test_default_creation) 296s Objects created on the default database don't leak onto other databases ... ok 296s test_foreign_key_cross_database_protection (multiple_database.tests.QueryTestCase.test_foreign_key_cross_database_protection) 296s Operations that involve sharing FK objects across databases raise an error ... ok 296s test_foreign_key_deletion (multiple_database.tests.QueryTestCase.test_foreign_key_deletion) 296s Cascaded deletions of Foreign Key relations issue queries on the right ... ok 296s test_foreign_key_reverse_operations (multiple_database.tests.QueryTestCase.test_foreign_key_reverse_operations) 296s FK reverse manipulations are all constrained to a single DB ... ok 296s test_foreign_key_separation (multiple_database.tests.QueryTestCase.test_foreign_key_separation) 296s FK fields are constrained to a single database ... ok 296s test_foreign_key_validation (multiple_database.tests.QueryTestCase.test_foreign_key_validation) 296s ForeignKey.validate() uses the correct database ... ok 296s test_foreign_key_validation_with_router (multiple_database.tests.QueryTestCase.test_foreign_key_validation_with_router) 296s ForeignKey.validate() passes `model` to db_for_read() even if ... ok 296s test_generic_key_cross_database_protection (multiple_database.tests.QueryTestCase.test_generic_key_cross_database_protection) 296s Operations that involve sharing generic key objects across databases ... ok 296s test_generic_key_deletion (multiple_database.tests.QueryTestCase.test_generic_key_deletion) 296s Cascaded deletions of Generic Key relations issue queries on the right ... ok 296s test_generic_key_reverse_operations (multiple_database.tests.QueryTestCase.test_generic_key_reverse_operations) 296s Generic reverse manipulations are all constrained to a single DB ... ok 296s test_generic_key_separation (multiple_database.tests.QueryTestCase.test_generic_key_separation) 296s Generic fields are constrained to a single database ... ok 296s test_m2m_cross_database_protection (multiple_database.tests.QueryTestCase.test_m2m_cross_database_protection) 296s Operations that involve sharing M2M objects across databases raise an error ... ok 296s test_m2m_deletion (multiple_database.tests.QueryTestCase.test_m2m_deletion) 296s Cascaded deletions of m2m relations issue queries on the right database ... ok 296s test_m2m_forward_operations (multiple_database.tests.QueryTestCase.test_m2m_forward_operations) 296s M2M forward manipulations are all constrained to a single DB ... ok 296s test_m2m_reverse_operations (multiple_database.tests.QueryTestCase.test_m2m_reverse_operations) 296s M2M reverse manipulations are all constrained to a single DB ... ok 296s test_m2m_separation (multiple_database.tests.QueryTestCase.test_m2m_separation) 296s M2M fields are constrained to a single database ... ok 296s test_o2o_cross_database_protection (multiple_database.tests.QueryTestCase.test_o2o_cross_database_protection) 296s Operations that involve sharing FK objects across databases raise an error ... ok 296s test_o2o_separation (multiple_database.tests.QueryTestCase.test_o2o_separation) 296s OneToOne fields are constrained to a single database ... ok 296s test_ordering (multiple_database.tests.QueryTestCase.test_ordering) 296s get_next_by_XXX commands stick to a single database ... ok 296s test_other_creation (multiple_database.tests.QueryTestCase.test_other_creation) 296s Objects created on another database don't leak onto the default database ... ok 296s test_raw (multiple_database.tests.QueryTestCase.test_raw) 296s test the raw() method across databases ... ok 296s test_refresh (multiple_database.tests.QueryTestCase.test_refresh) ... ok 296s test_refresh_router_instance_hint (multiple_database.tests.QueryTestCase.test_refresh_router_instance_hint) ... ok 296s test_related_manager (multiple_database.tests.QueryTestCase.test_related_manager) 296s Related managers return managers, not querysets ... ok 296s test_select_related (multiple_database.tests.QueryTestCase.test_select_related) 296s Database assignment is retained if an object is retrieved with ... ok 296s test_subquery (multiple_database.tests.QueryTestCase.test_subquery) 296s Make sure as_sql works with subqueries and primary/replica. ... ok 296s test_admin_password_change (auth_tests.test_views.UUIDUserTests.test_admin_password_change) ... ok 296s test_attribute_error_delete (multiple_database.tests.RouterAttributeErrorTestCase.test_attribute_error_delete) 296s The AttributeError from AttributeErrorRouter bubbles up ... ok 296s test_attribute_error_m2m (multiple_database.tests.RouterAttributeErrorTestCase.test_attribute_error_m2m) 296s The AttributeError from AttributeErrorRouter bubbles up ... ok 296s test_attribute_error_read (multiple_database.tests.RouterAttributeErrorTestCase.test_attribute_error_read) 296s The AttributeError from AttributeErrorRouter bubbles up ... ok 296s test_attribute_error_save (multiple_database.tests.RouterAttributeErrorTestCase.test_attribute_error_save) 296s The AttributeError from AttributeErrorRouter bubbles up ... ok 296s test_foreignkey_collection (multiple_database.tests.RouterModelArgumentTestCase.test_foreignkey_collection) ... ok 296s test_m2m_collection (multiple_database.tests.RouterModelArgumentTestCase.test_m2m_collection) ... ok 296s test_database_routing (multiple_database.tests.RouterTestCase.test_database_routing) ... ok 296s test_db_selection (multiple_database.tests.RouterTestCase.test_db_selection) 296s Querysets obey the router for db suggestions ... ok 296s test_deferred_models (multiple_database.tests.RouterTestCase.test_deferred_models) ... ok 296s test_foreign_key_cross_database_protection (multiple_database.tests.RouterTestCase.test_foreign_key_cross_database_protection) 296s Foreign keys can cross databases if they two databases have a common source ... ok 296s test_foreign_key_managers (multiple_database.tests.RouterTestCase.test_foreign_key_managers) 296s FK reverse relations are represented by managers, and can be controlled ... ok 296s test_generic_key_cross_database_protection (multiple_database.tests.RouterTestCase.test_generic_key_cross_database_protection) 296s Generic Key operations can span databases if they share a source ... ok 296s test_generic_key_managers (multiple_database.tests.RouterTestCase.test_generic_key_managers) 296s Generic key relations are represented by managers, and can be ... ok 296s test_invalid_set_foreign_key_assignment (multiple_database.tests.RouterTestCase.test_invalid_set_foreign_key_assignment) ... ok 296s test_m2m_cross_database_protection (multiple_database.tests.RouterTestCase.test_m2m_cross_database_protection) 296s M2M relations can cross databases if the database share a source ... ok 296s test_m2m_managers (multiple_database.tests.RouterTestCase.test_m2m_managers) 296s M2M relations are represented by managers, and can be controlled like managers ... ok 296s test_migrate_selection (multiple_database.tests.RouterTestCase.test_migrate_selection) 296s Synchronization behavior is predictable ... ok 296s test_o2o_cross_database_protection (multiple_database.tests.RouterTestCase.test_o2o_cross_database_protection) 296s Operations that involve sharing FK objects across databases raise an error ... ok 296s test_partial_router (multiple_database.tests.RouterTestCase.test_partial_router) 296s A router can choose to implement a subset of methods ... ok 296s test_subquery (multiple_database.tests.RouterTestCase.test_subquery) 296s Make sure as_sql works with subqueries and primary/replica. ... ok 297s test_database_arg_m2m (multiple_database.tests.SignalTests.test_database_arg_m2m) 297s The m2m_changed signal has a correct database arg. ... ok 297s test_database_arg_save_and_delete (multiple_database.tests.SignalTests.test_database_arg_save_and_delete) 297s The pre/post_save signal contains the correct database. ... ok 297s test_fk_delete (multiple_database.tests.RouteForWriteTestCase.test_fk_delete) ... ok 297s test_m2m_add (multiple_database.tests.RouteForWriteTestCase.test_m2m_add) ... ok 297s test_m2m_clear (multiple_database.tests.RouteForWriteTestCase.test_m2m_clear) ... ok 297s test_m2m_delete (multiple_database.tests.RouteForWriteTestCase.test_m2m_delete) ... ok 297s test_m2m_get_or_create (multiple_database.tests.RouteForWriteTestCase.test_m2m_get_or_create) ... ok 297s test_m2m_remove (multiple_database.tests.RouteForWriteTestCase.test_m2m_remove) ... ok 297s test_m2m_update (multiple_database.tests.RouteForWriteTestCase.test_m2m_update) ... ok 297s test_reverse_fk_delete (multiple_database.tests.RouteForWriteTestCase.test_reverse_fk_delete) ... ok 297s test_reverse_fk_get_or_create (multiple_database.tests.RouteForWriteTestCase.test_reverse_fk_get_or_create) ... ok 297s test_reverse_fk_update (multiple_database.tests.RouteForWriteTestCase.test_reverse_fk_update) ... ok 297s test_reverse_m2m_add (multiple_database.tests.RouteForWriteTestCase.test_reverse_m2m_add) ... ok 297s test_reverse_m2m_clear (multiple_database.tests.RouteForWriteTestCase.test_reverse_m2m_clear) ... ok 297s test_reverse_m2m_delete (multiple_database.tests.RouteForWriteTestCase.test_reverse_m2m_delete) ... ok 297s test_reverse_m2m_get_or_create (multiple_database.tests.RouteForWriteTestCase.test_reverse_m2m_get_or_create) ... ok 297s test_reverse_m2m_remove (multiple_database.tests.RouteForWriteTestCase.test_reverse_m2m_remove) ... ok 297s test_reverse_m2m_update (multiple_database.tests.RouteForWriteTestCase.test_reverse_m2m_update) ... ok 297s test_generic_sitemap (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_generic_sitemap) 297s A minimal generic sitemap can be rendered ... ok 297s test_generic_sitemap_attributes (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_generic_sitemap_attributes) ... ok 297s test_generic_sitemap_index (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_generic_sitemap_index) ... ok 297s test_generic_sitemap_lastmod (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_generic_sitemap_lastmod) ... ok 297s test_get_protocol_default (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_get_protocol_default) ... ok 297s test_get_protocol_default_warning (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_get_protocol_default_warning) ... ok 297s test_get_protocol_defined_in_constructor (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_get_protocol_defined_in_constructor) ... ok 297s test_get_protocol_passed_as_argument (sitemaps_tests.test_generic.GenericViewsSitemapTests.test_get_protocol_passed_as_argument) ... ok 297s test_simple_sitemap_custom_index (sitemaps_tests.test_http.DeprecatedTests.test_simple_sitemap_custom_index) 297s A simple sitemap index can be rendered with a custom template ... ok 297s test_simple_sitemap_custom_index_warning (sitemaps_tests.test_http.DeprecatedTests.test_simple_sitemap_custom_index_warning) ... ok 297s test_sitemap_index_with_https_request (sitemaps_tests.test_https.HTTPSDetectionSitemapTests.test_sitemap_index_with_https_request) 297s A sitemap index requested in HTTPS is rendered with HTTPS links ... ok 297s test_sitemap_section_with_https_request (sitemaps_tests.test_https.HTTPSDetectionSitemapTests.test_sitemap_section_with_https_request) 297s A sitemap section requested in HTTPS is rendered with HTTPS links ... ok 297s test_secure_sitemap_index (sitemaps_tests.test_https.HTTPSSitemapTests.test_secure_sitemap_index) 297s A secure sitemap index can be rendered ... ok 297s test_secure_sitemap_section (sitemaps_tests.test_https.HTTPSSitemapTests.test_secure_sitemap_section) 297s A secure sitemap section can be rendered ... ok 297s test_args (sitemaps_tests.test_management.PingGoogleTests.test_args) ... ok 297s test_default (sitemaps_tests.test_management.PingGoogleTests.test_default) ... ok 297s test_get_sitemap_full_url_exact_url (sitemaps_tests.test_utils.PingGoogleTests.test_get_sitemap_full_url_exact_url) ... ok 297s test_get_sitemap_full_url_global (sitemaps_tests.test_utils.PingGoogleTests.test_get_sitemap_full_url_global) ... ok 297s test_get_sitemap_full_url_index (sitemaps_tests.test_utils.PingGoogleTests.test_get_sitemap_full_url_index) ... ok 297s test_get_sitemap_full_url_insecure (sitemaps_tests.test_utils.PingGoogleTests.test_get_sitemap_full_url_insecure) ... ok 297s test_get_sitemap_full_url_no_sites (sitemaps_tests.test_utils.PingGoogleTests.test_get_sitemap_full_url_no_sites) ... ok 297s test_get_sitemap_full_url_not_detected (sitemaps_tests.test_utils.PingGoogleTests.test_get_sitemap_full_url_not_detected) ... ok 297s test_something (sitemaps_tests.test_utils.PingGoogleTests.test_something) ... ok 297s test_dates_query (extra_regress.tests.ExtraRegressTests.test_dates_query) 297s When calling the dates() method on a queryset with extra selection ... ok 297s test_extra_stay_tied (extra_regress.tests.ExtraRegressTests.test_extra_stay_tied) ... ok 297s test_extra_values_distinct_ordering (extra_regress.tests.ExtraRegressTests.test_extra_values_distinct_ordering) ... ok 297s test_regression_10847 (extra_regress.tests.ExtraRegressTests.test_regression_10847) 297s Regression for #10847: the list of extra columns can always be ... ok 297s test_regression_17877 (extra_regress.tests.ExtraRegressTests.test_regression_17877) 297s Extra WHERE clauses get correctly ANDed, even when they ... ok 297s test_regression_7314_7372 (extra_regress.tests.ExtraRegressTests.test_regression_7314_7372) 297s Regression tests for #7314 and #7372 ... ok 297s test_regression_7957 (extra_regress.tests.ExtraRegressTests.test_regression_7957) 297s Regression test for #7957: Combining extra() calls should leave the ... ok 297s test_regression_7961 (extra_regress.tests.ExtraRegressTests.test_regression_7961) 297s Regression test for #7961: When not using a portion of an ... ok 297s test_regression_8039 (extra_regress.tests.ExtraRegressTests.test_regression_8039) 297s Regression test for #8039: Ordering sometimes removed relevant tables ... ok 297s test_regression_8063 (extra_regress.tests.ExtraRegressTests.test_regression_8063) 297s Regression test for #8063: limiting a query shouldn't discard any ... ok 297s test_regression_8819 (extra_regress.tests.ExtraRegressTests.test_regression_8819) 297s Regression test for #8819: Fields in the extra(select=...) list ... ok 297s test_values_with_extra (extra_regress.tests.ExtraRegressTests.test_values_with_extra) 297s Regression test for #10256... If there is a values() clause, Extra ... ok 298s test_basic_distinct_on (distinct_on_fields.tests.DistinctOnTests.test_basic_distinct_on) 298s QuerySet.distinct('field', ...) works ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 298s test_distinct_not_implemented_checks (distinct_on_fields.tests.DistinctOnTests.test_distinct_not_implemented_checks) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 298s test_distinct_on_get_ordering_preserved (distinct_on_fields.tests.DistinctOnTests.test_distinct_on_get_ordering_preserved) 298s Ordering shouldn't be cleared when distinct on fields are specified. ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 298s test_distinct_on_in_ordered_subquery (distinct_on_fields.tests.DistinctOnTests.test_distinct_on_in_ordered_subquery) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 298s test_distinct_on_mixed_case_annotation (distinct_on_fields.tests.DistinctOnTests.test_distinct_on_mixed_case_annotation) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 298s test_sliced_queryset (distinct_on_fields.tests.DistinctOnTests.test_sliced_queryset) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 298s test_transform (distinct_on_fields.tests.DistinctOnTests.test_transform) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 298s test_alternate_i18n_sitemap_index (sitemaps_tests.test_http.HTTPSitemapTests.test_alternate_i18n_sitemap_index) 298s A i18n sitemap with alternate/hreflang links can be rendered. ... ok 298s test_alternate_i18n_sitemap_limited (sitemaps_tests.test_http.HTTPSitemapTests.test_alternate_i18n_sitemap_limited) 298s A i18n sitemap index with limited languages can be rendered. ... ok 298s test_alternate_i18n_sitemap_xdefault (sitemaps_tests.test_http.HTTPSitemapTests.test_alternate_i18n_sitemap_xdefault) 298s A i18n sitemap index with x-default can be rendered. ... ok 298s test_alternate_language_for_item_i18n_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_alternate_language_for_item_i18n_sitemap) 298s A i18n sitemap index in which item can be chosen to be displayed for a ... ok 298s test_cached_sitemap_index (sitemaps_tests.test_http.HTTPSitemapTests.test_cached_sitemap_index) 298s A cached sitemap index can be rendered (#2713). ... ok 298s test_callable_sitemod_full (sitemaps_tests.test_http.HTTPSitemapTests.test_callable_sitemod_full) 298s All items in the sitemap have `lastmod`. The `Last-Modified` header ... ok 298s test_callable_sitemod_no_items (sitemaps_tests.test_http.HTTPSitemapTests.test_callable_sitemod_no_items) ... ok 298s test_callable_sitemod_partial (sitemaps_tests.test_http.HTTPSitemapTests.test_callable_sitemod_partial) 298s Not all items have `lastmod`. Therefore the `Last-Modified` header ... ok 298s test_empty_page (sitemaps_tests.test_http.HTTPSitemapTests.test_empty_page) ... ok 298s test_empty_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_empty_sitemap) ... ok 298s test_language_for_item_i18n_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_language_for_item_i18n_sitemap) 298s A i18n sitemap index in which item can be chosen to be displayed for a ... ok 298s test_localized_priority (sitemaps_tests.test_http.HTTPSitemapTests.test_localized_priority) 298s The priority value should not be localized. ... ok 298s test_no_section (sitemaps_tests.test_http.HTTPSitemapTests.test_no_section) ... ok 298s test_page_not_int (sitemaps_tests.test_http.HTTPSitemapTests.test_page_not_int) ... ok 298s test_paged_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_paged_sitemap) 298s A sitemap may have multiple pages. ... ok 298s test_requestsite_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_requestsite_sitemap) ... ok 298s test_simple_custom_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_simple_custom_sitemap) 298s A simple sitemap can be rendered with a custom template ... ok 298s test_simple_i18n_sitemap_index (sitemaps_tests.test_http.HTTPSitemapTests.test_simple_i18n_sitemap_index) 298s A simple i18n sitemap index can be rendered, without logging variable ... ok 298s test_simple_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_simple_sitemap) 298s A simple sitemap can be rendered ... ok 298s test_simple_sitemap_custom_lastmod_index (sitemaps_tests.test_http.HTTPSitemapTests.test_simple_sitemap_custom_lastmod_index) 298s A simple sitemap index can be rendered with a custom template ... ok 298s test_simple_sitemap_index (sitemaps_tests.test_http.HTTPSitemapTests.test_simple_sitemap_index) 298s A simple sitemap index can be rendered ... ok 298s test_simple_sitemap_section (sitemaps_tests.test_http.HTTPSitemapTests.test_simple_sitemap_section) 298s A simple sitemap section can be rendered ... ok 298s test_sitemap_get_latest_lastmod (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_get_latest_lastmod) 298s sitemapindex.lastmod is included when Sitemap.lastmod is ... ok 298s test_sitemap_get_latest_lastmod_none (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_get_latest_lastmod_none) 298s sitemapindex.lastmod is omitted when Sitemap.lastmod is ... ok 298s test_sitemap_get_urls_no_site_1 (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_get_urls_no_site_1) 298s Check we get ImproperlyConfigured if we don't pass a site object to ... ok 298s test_sitemap_get_urls_no_site_2 (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_get_urls_no_site_2) 298s Check we get ImproperlyConfigured when we don't pass a site object to ... ok 298s test_sitemap_item (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_item) 298s Check to make sure that the raw item is included with each ... ok 298s test_sitemap_last_modified (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_last_modified) 298s Last-Modified header is set correctly ... ok 298s test_sitemap_last_modified_date (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_last_modified_date) 298s The Last-Modified header should be support dates (without time). ... ok 298s test_sitemap_last_modified_missing (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_last_modified_missing) 298s Last-Modified header is missing when sitemap has no lastmod ... ok 298s test_sitemap_last_modified_mixed (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_last_modified_mixed) 298s Last-Modified header is omitted when lastmod not on all items ... ok 298s test_sitemap_last_modified_tz (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_last_modified_tz) 298s The Last-Modified header should be converted from timezone aware dates ... ok 298s test_sitemap_latest_lastmod_timezone (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_latest_lastmod_timezone) 298s lastmod datestamp shows timezones if Sitemap.get_latest_lastmod ... ok 298s test_sitemap_not_callable (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_not_callable) 298s A sitemap may not be callable. ... ok 298s test_sitemap_without_entries (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemap_without_entries) ... ok 298s test_sitemaps_lastmod_ascending (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemaps_lastmod_ascending) 298s The Last-Modified header is set to the most recent sitemap lastmod. ... ok 298s test_sitemaps_lastmod_descending (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemaps_lastmod_descending) 298s The Last-Modified header is set to the most recent sitemap lastmod. ... ok 298s test_sitemaps_lastmod_mixed_ascending_last_modified_missing (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemaps_lastmod_mixed_ascending_last_modified_missing) 298s The Last-Modified header is omitted when lastmod isn't found in all ... ok 298s test_sitemaps_lastmod_mixed_descending_last_modified_missing (sitemaps_tests.test_http.HTTPSitemapTests.test_sitemaps_lastmod_mixed_descending_last_modified_missing) 298s The Last-Modified header is omitted when lastmod isn't found in all ... ok 298s test_x_robots_sitemap (sitemaps_tests.test_http.HTTPSitemapTests.test_x_robots_sitemap) ... ok 298s test_bad_class (get_object_or_404.tests.GetObjectOr404Tests.test_bad_class) ... ok 298s test_get_list_or_404_queryset_attribute_error (get_object_or_404.tests.GetObjectOr404Tests.test_get_list_or_404_queryset_attribute_error) 298s AttributeError raised by QuerySet.filter() isn't hidden. ... ok 298s test_get_object_or_404 (get_object_or_404.tests.GetObjectOr404Tests.test_get_object_or_404) ... ok 298s test_get_object_or_404_queryset_attribute_error (get_object_or_404.tests.GetObjectOr404Tests.test_get_object_or_404_queryset_attribute_error) 298s AttributeError raised by QuerySet.get() isn't hidden. ... ok 298s test_response_gone_class (redirects_tests.tests.OverriddenRedirectMiddlewareTests.test_response_gone_class) ... ok 298s test_response_redirect_class (redirects_tests.tests.OverriddenRedirectMiddlewareTests.test_response_redirect_class) ... ok 298s test_intermediary (m2m_intermediary.tests.M2MIntermediaryTests.test_intermediary) ... ok 298s test_defaults (str.tests.SimpleTests.test_defaults) 298s The default implementation of __str__ and __repr__ should return ... ok 298s test_international (str.tests.SimpleTests.test_international) ... ok 298s test_model (redirects_tests.tests.RedirectTests.test_model) ... ok 298s test_redirect (redirects_tests.tests.RedirectTests.test_redirect) ... ok 298s test_redirect_not_found_with_append_slash (redirects_tests.tests.RedirectTests.test_redirect_not_found_with_append_slash) 298s Exercise the second Redirect.DoesNotExist branch in ... ok 298s test_redirect_shortcircuits_non_404_response (redirects_tests.tests.RedirectTests.test_redirect_shortcircuits_non_404_response) 298s RedirectFallbackMiddleware short-circuits on non-404 requests. ... ok 298s test_redirect_with_append_slash (redirects_tests.tests.RedirectTests.test_redirect_with_append_slash) ... ok 298s test_redirect_with_append_slash_and_query_string (redirects_tests.tests.RedirectTests.test_redirect_with_append_slash_and_query_string) ... ok 298s test_response_gone (redirects_tests.tests.RedirectTests.test_response_gone) 298s When the redirect target is '', return a 410 ... ok 298s test_sites_not_installed (redirects_tests.tests.RedirectTests.test_sites_not_installed) ... ok 298s test_aggregate (filtered_relation.tests.FilteredRelationAggregationTests.test_aggregate) 298s filtered_relation() not only improves performance but also creates ... ok 298s test_aggregate (filtered_relation.tests.FilteredRelationAnalyticalAggregationTests.test_aggregate) ... ok 298s test_complex_filter (or_lookups.tests.OrLookupsTests.test_complex_filter) ... ok 298s test_empty_in (or_lookups.tests.OrLookupsTests.test_empty_in) ... ok 298s test_filter_or (or_lookups.tests.OrLookupsTests.test_filter_or) ... ok 298s test_other_arg_queries (or_lookups.tests.OrLookupsTests.test_other_arg_queries) ... ok 298s test_pk_in (or_lookups.tests.OrLookupsTests.test_pk_in) ... ok 298s test_pk_q (or_lookups.tests.OrLookupsTests.test_pk_q) ... ok 298s test_q_and (or_lookups.tests.OrLookupsTests.test_q_and) ... ok 298s test_q_exclude (or_lookups.tests.OrLookupsTests.test_q_exclude) ... ok 298s test_q_negated (or_lookups.tests.OrLookupsTests.test_q_negated) ... ok 298s test_q_repr (or_lookups.tests.OrLookupsTests.test_q_repr) ... ok 298s test_stages (or_lookups.tests.OrLookupsTests.test_stages) ... ok 298s test_delete_defered_model (defer_regress.tests.DeferDeletionSignalsTests.test_delete_defered_model) ... ok 298s test_delete_defered_proxy_model (defer_regress.tests.DeferDeletionSignalsTests.test_delete_defered_proxy_model) ... ok 298s test_basic (defer_regress.tests.DeferRegressionTest.test_basic) ... ok 298s test_common_model_different_mask (defer_regress.tests.DeferRegressionTest.test_common_model_different_mask) ... ok 298s test_defer_annotate_select_related (defer_regress.tests.DeferRegressionTest.test_defer_annotate_select_related) ... ok 298s test_defer_many_to_many_ignored (defer_regress.tests.DeferRegressionTest.test_defer_many_to_many_ignored) ... ok 298s test_defer_with_select_related (defer_regress.tests.DeferRegressionTest.test_defer_with_select_related) ... ok 298s test_only_and_defer_usage_on_proxy_models (defer_regress.tests.DeferRegressionTest.test_only_and_defer_usage_on_proxy_models) ... ok 298s test_only_with_select_related (defer_regress.tests.DeferRegressionTest.test_only_with_select_related) ... ok 298s test_proxy_model_defer_with_select_related (defer_regress.tests.DeferRegressionTest.test_proxy_model_defer_with_select_related) ... ok 298s test_resolve_columns (defer_regress.tests.DeferRegressionTest.test_resolve_columns) ... ok 298s test_reverse_one_to_one_relations (defer_regress.tests.DeferRegressionTest.test_reverse_one_to_one_relations) ... ok 298s test_ticket_12163 (defer_regress.tests.DeferRegressionTest.test_ticket_12163) ... ok 298s test_ticket_16409 (defer_regress.tests.DeferRegressionTest.test_ticket_16409) ... ok 298s test_ticket_23270 (defer_regress.tests.DeferRegressionTest.test_ticket_23270) ... ok 298s test_basic (save_delete_hooks.tests.SaveDeleteHookTests.test_basic) ... ok 298s test_default_ordering (admin_ordering.tests.TestAdminOrdering.test_default_ordering) 298s The default ordering should be by name, as specified in the inner Meta ... ok 298s test_dynamic_ordering (admin_ordering.tests.TestAdminOrdering.test_dynamic_ordering) 298s Let's use a custom ModelAdmin that changes the ordering dynamically. ... ok 298s test_specified_ordering (admin_ordering.tests.TestAdminOrdering.test_specified_ordering) 298s Let's use a custom ModelAdmin that changes the ordering, and make sure ... ok 298s test_specified_ordering_by_f_expression (admin_ordering.tests.TestAdminOrdering.test_specified_ordering_by_f_expression) ... ok 299s test_default_ordering (admin_ordering.tests.TestInlineModelAdminOrdering.test_default_ordering) 299s The default ordering should be by name, as specified in the inner Meta ... ok 299s test_specified_ordering (admin_ordering.tests.TestInlineModelAdminOrdering.test_specified_ordering) 299s Let's check with ordering set to something different than the default. ... ok 299s test_admin_ordering_beats_model_ordering (admin_ordering.tests.TestRelatedFieldsAdminOrdering.test_admin_ordering_beats_model_ordering) ... ok 299s test_admin_with_no_ordering_fallback_to_model_ordering (admin_ordering.tests.TestRelatedFieldsAdminOrdering.test_admin_with_no_ordering_fallback_to_model_ordering) ... ok 299s test_custom_queryset_still_wins (admin_ordering.tests.TestRelatedFieldsAdminOrdering.test_custom_queryset_still_wins) 299s Custom queryset has still precedence (#21405) ... ok 299s test_no_admin_fallback_to_model_ordering (admin_ordering.tests.TestRelatedFieldsAdminOrdering.test_no_admin_fallback_to_model_ordering) ... ok 299s test_verbose_name (i18n.contenttypes.tests.ContentTypeTests.test_verbose_name) ... ok 299s test_streaming_response (i18n.tests.LocaleMiddlewareTests.test_streaming_response) ... ok 299s test_as_subquery (filtered_relation.tests.FilteredRelationTests.test_as_subquery) ... ok 299s test_condition_deeper_relation_name (filtered_relation.tests.FilteredRelationTests.test_condition_deeper_relation_name) ... ok 299s test_condition_outside_relation_name (filtered_relation.tests.FilteredRelationTests.test_condition_outside_relation_name) ... ok 299s test_deep_nested_foreign_key (filtered_relation.tests.FilteredRelationTests.test_deep_nested_foreign_key) ... ok 299s test_defer (filtered_relation.tests.FilteredRelationTests.test_defer) ... ok 299s test_difference (filtered_relation.tests.FilteredRelationTests.test_difference) ... ok 299s test_eq (filtered_relation.tests.FilteredRelationTests.test_eq) ... ok 299s test_exclude_relation_with_join (filtered_relation.tests.FilteredRelationTests.test_exclude_relation_with_join) ... ok 299s test_extra (filtered_relation.tests.FilteredRelationTests.test_extra) ... ok 299s test_internal_queryset_alias_mapping (filtered_relation.tests.FilteredRelationTests.test_internal_queryset_alias_mapping) ... ok 299s test_intersection (filtered_relation.tests.FilteredRelationTests.test_intersection) ... ok 299s test_multiple (filtered_relation.tests.FilteredRelationTests.test_multiple) ... ok 299s test_multiple_times (filtered_relation.tests.FilteredRelationTests.test_multiple_times) ... ok 299s test_nested_chained_relations (filtered_relation.tests.FilteredRelationTests.test_nested_chained_relations) ... ok 299s test_nested_foreign_key (filtered_relation.tests.FilteredRelationTests.test_nested_foreign_key) ... ok 299s test_nested_foreign_key_filtered_base_object (filtered_relation.tests.FilteredRelationTests.test_nested_foreign_key_filtered_base_object) ... ok 299s test_nested_foreign_key_nested_field (filtered_relation.tests.FilteredRelationTests.test_nested_foreign_key_nested_field) ... ok 299s test_nested_m2m_filtered (filtered_relation.tests.FilteredRelationTests.test_nested_m2m_filtered) ... ok 299s test_only_not_supported (filtered_relation.tests.FilteredRelationTests.test_only_not_supported) ... ok 299s test_relation_name_lookup (filtered_relation.tests.FilteredRelationTests.test_relation_name_lookup) ... ok 299s test_select_for_update (filtered_relation.tests.FilteredRelationTests.test_select_for_update) ... ok 299s test_select_related (filtered_relation.tests.FilteredRelationTests.test_select_related) ... ok 299s test_select_related_foreign_key (filtered_relation.tests.FilteredRelationTests.test_select_related_foreign_key) ... ok 299s test_select_related_foreign_key_for_update_of (filtered_relation.tests.FilteredRelationTests.test_select_related_foreign_key_for_update_of) ... skipped "Database doesn't support feature(s): has_select_for_update, has_select_for_update_of" 299s test_select_related_multiple (filtered_relation.tests.FilteredRelationTests.test_select_related_multiple) ... ok 299s test_select_related_with_empty_relation (filtered_relation.tests.FilteredRelationTests.test_select_related_with_empty_relation) ... ok 299s test_union (filtered_relation.tests.FilteredRelationTests.test_union) ... ok 299s test_values (filtered_relation.tests.FilteredRelationTests.test_values) ... ok 299s test_values_list (filtered_relation.tests.FilteredRelationTests.test_values_list) ... ok 299s test_with_condition_as_expression_error (filtered_relation.tests.FilteredRelationTests.test_with_condition_as_expression_error) ... ok 299s test_with_empty_relation_name_error (filtered_relation.tests.FilteredRelationTests.test_with_empty_relation_name_error) ... ok 299s test_with_exclude (filtered_relation.tests.FilteredRelationTests.test_with_exclude) ... ok 299s test_with_generic_foreign_key (filtered_relation.tests.FilteredRelationTests.test_with_generic_foreign_key) ... ok 299s test_with_join (filtered_relation.tests.FilteredRelationTests.test_with_join) ... ok 299s test_with_join_and_complex_condition (filtered_relation.tests.FilteredRelationTests.test_with_join_and_complex_condition) ... ok 299s test_with_m2m (filtered_relation.tests.FilteredRelationTests.test_with_m2m) ... ok 299s test_with_m2m_deep (filtered_relation.tests.FilteredRelationTests.test_with_m2m_deep) ... ok 299s test_with_m2m_multijoin (filtered_relation.tests.FilteredRelationTests.test_with_m2m_multijoin) ... ok 299s test_with_multiple_filter (filtered_relation.tests.FilteredRelationTests.test_with_multiple_filter) ... ok 299s test_with_prefetch_related (filtered_relation.tests.FilteredRelationTests.test_with_prefetch_related) ... ok 299s test_without_join (filtered_relation.tests.FilteredRelationTests.test_without_join) ... ok 299s test_lazy (i18n.tests.TestModels.test_lazy) ... ok 299s test_safestr (i18n.tests.TestModels.test_safestr) ... ok 299s test_order_by_update_on_parent_unique_constraint (update.tests.MySQLUpdateOrderByTest.test_order_by_update_on_parent_unique_constraint) ... skipped 'UPDATE...ORDER BY syntax is supported on MySQL/MariaDB' 299s test_order_by_update_on_related_field (update.tests.MySQLUpdateOrderByTest.test_order_by_update_on_related_field) ... skipped 'UPDATE...ORDER BY syntax is supported on MySQL/MariaDB' 299s test_order_by_update_on_unique_constraint (update.tests.MySQLUpdateOrderByTest.test_order_by_update_on_unique_constraint) ... skipped 'UPDATE...ORDER BY syntax is supported on MySQL/MariaDB' 299s test_order_by_update_on_unique_constraint_annotation (update.tests.MySQLUpdateOrderByTest.test_order_by_update_on_unique_constraint_annotation) ... skipped 'UPDATE...ORDER BY syntax is supported on MySQL/MariaDB' 299s test_empty_update (update.tests.SimpleTest.test_empty_update) 299s Update changes the right number of rows for an empty queryset ... ok 299s test_empty_update_with_inheritance (update.tests.SimpleTest.test_empty_update_with_inheritance) 299s Update changes the right number of rows for an empty queryset ... ok 299s test_foreign_key_update_with_id (update.tests.SimpleTest.test_foreign_key_update_with_id) 299s Update works using _id for foreign keys ... ok 299s test_nonempty_update (update.tests.SimpleTest.test_nonempty_update) 299s Update changes the right number of rows for a nonempty queryset ... ok 299s test_nonempty_update_with_inheritance (update.tests.SimpleTest.test_nonempty_update_with_inheritance) 299s Update changes the right number of rows for an empty queryset ... ok 299s test_update (update.tests.AdvancedTests.test_update) 299s Objects are updated by first filtering the candidates into a queryset ... ok 299s test_update_all (update.tests.AdvancedTests.test_update_all) 299s In the rare case you want to update every instance of a model, update() ... ok 299s test_update_annotated_multi_table_queryset (update.tests.AdvancedTests.test_update_annotated_multi_table_queryset) 299s Update of a queryset that's been annotated and involves multiple tables. ... ok 299s test_update_annotated_queryset (update.tests.AdvancedTests.test_update_annotated_queryset) 299s Update of a queryset that's been annotated. ... ok 299s test_update_fk (update.tests.AdvancedTests.test_update_fk) 299s Foreign key fields can also be updated, although you can only update ... ok 299s test_update_m2m_field (update.tests.AdvancedTests.test_update_m2m_field) ... ok 299s test_update_multiple_fields (update.tests.AdvancedTests.test_update_multiple_fields) 299s Multiple fields can be updated at once ... ok 299s test_update_multiple_objects (update.tests.AdvancedTests.test_update_multiple_objects) 299s We can update multiple objects at once. ... ok 299s test_update_negated_f (update.tests.AdvancedTests.test_update_negated_f) ... ok 299s test_update_negated_f_conditional_annotation (update.tests.AdvancedTests.test_update_negated_f_conditional_annotation) ... ok 299s test_update_ordered_by_inline_m2m_annotation (update.tests.AdvancedTests.test_update_ordered_by_inline_m2m_annotation) ... ok 299s test_update_ordered_by_m2m_aggregation_annotation (update.tests.AdvancedTests.test_update_ordered_by_m2m_aggregation_annotation) ... ok 299s test_update_ordered_by_m2m_annotation (update.tests.AdvancedTests.test_update_ordered_by_m2m_annotation) ... ok 299s test_update_respects_to_field (update.tests.AdvancedTests.test_update_respects_to_field) 299s Update of an FK field which specifies a to_field works. ... ok 299s test_update_slice_fail (update.tests.AdvancedTests.test_update_slice_fail) 299s We do not support update on already sliced query sets. ... ok 299s test_update_transformed_field (update.tests.AdvancedTests.test_update_transformed_field) ... ok 299s test_update_with_joined_field_annotation (update.tests.AdvancedTests.test_update_with_joined_field_annotation) ... ok 299s test_updating_non_conditional_field (update.tests.AdvancedTests.test_updating_non_conditional_field) ... ok 299s test_explicit_ForeignKey (nested_foreign_keys.tests.DeeplyNestedForeignKeysTests.test_explicit_ForeignKey) ... ok 299s test_inheritance (nested_foreign_keys.tests.DeeplyNestedForeignKeysTests.test_inheritance) ... ok 299s test_explicit_ForeignKey (nested_foreign_keys.tests.NestedForeignKeysTests.test_explicit_ForeignKey) ... ok 299s test_explicit_ForeignKey_NullFK (nested_foreign_keys.tests.NestedForeignKeysTests.test_explicit_ForeignKey_NullFK) ... ok 299s test_inheritance (nested_foreign_keys.tests.NestedForeignKeysTests.test_inheritance) ... ok 299s test_inheritance_null_FK (nested_foreign_keys.tests.NestedForeignKeysTests.test_inheritance_null_FK) ... ok 299s test_null_exclude (nested_foreign_keys.tests.NestedForeignKeysTests.test_null_exclude) ... ok 299s test_back_and_forward (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_back_and_forward) ... ok 299s test_basic (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_basic) ... ok 299s test_follow_from_child_class (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_follow_from_child_class) ... ok 299s test_follow_inheritance (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_follow_inheritance) ... ok 299s test_follow_next_level (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_follow_next_level) ... ok 299s test_follow_two (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_follow_two) ... ok 299s test_follow_two_next_level (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_follow_two_next_level) ... ok 299s test_forward_and_back (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_forward_and_back) ... ok 299s test_inheritance_deferred (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_inheritance_deferred) ... ok 299s test_inheritance_deferred2 (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_inheritance_deferred2) ... ok 299s test_missing_reverse (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_missing_reverse) 299s Ticket #13839: select_related() should NOT cache None ... ok 299s test_multiinheritance_two_subclasses (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_multiinheritance_two_subclasses) ... ok 299s test_multiple_subclass (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_multiple_subclass) ... ok 299s test_not_followed_by_default (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_not_followed_by_default) ... ok 299s test_nullable_missing_reverse (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_nullable_missing_reverse) 299s Ticket #13839: select_related() should NOT cache None ... ok 299s test_nullable_relation (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_nullable_relation) ... ok 299s test_onetoone_with_subclass (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_onetoone_with_subclass) ... ok 299s test_onetoone_with_two_subclasses (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_onetoone_with_two_subclasses) ... ok 299s test_parent_only (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_parent_only) ... ok 299s test_self_relation (select_related_onetoone.tests.ReverseSelectRelatedTestCase.test_self_relation) ... ok 299s test_createcachetable_observes_database_router (cache.tests.CreateCacheTableForDBCacheTests.test_createcachetable_observes_database_router) ... ok 299s test_aggregation (from_db_value.tests.FromDBValueTest.test_aggregation) ... ok 299s test_connection (from_db_value.tests.FromDBValueTest.test_connection) ... ok 299s test_defer (from_db_value.tests.FromDBValueTest.test_defer) ... ok 299s test_simple_load (from_db_value.tests.FromDBValueTest.test_simple_load) ... ok 299s test_values (from_db_value.tests.FromDBValueTest.test_values) ... ok 299s test_values_list (from_db_value.tests.FromDBValueTest.test_values_list) ... ok 313s test_add (cache.tests.FileBasedCacheTests.test_add) ... ok 313s test_add_fail_on_pickleerror (cache.tests.FileBasedCacheTests.test_add_fail_on_pickleerror) ... ok 313s test_binary_string (cache.tests.FileBasedCacheTests.test_binary_string) ... ok 313s test_cache_dir_permissions (cache.tests.FileBasedCacheTests.test_cache_dir_permissions) ... ok 313s test_cache_read_for_model_instance (cache.tests.FileBasedCacheTests.test_cache_read_for_model_instance) ... ok 313s test_cache_read_for_model_instance_with_deferred (cache.tests.FileBasedCacheTests.test_cache_read_for_model_instance_with_deferred) ... ok 313s test_cache_versioning_add (cache.tests.FileBasedCacheTests.test_cache_versioning_add) ... ok 313s test_cache_versioning_delete (cache.tests.FileBasedCacheTests.test_cache_versioning_delete) ... ok 313s test_cache_versioning_get_set (cache.tests.FileBasedCacheTests.test_cache_versioning_get_set) ... ok 313s test_cache_versioning_get_set_many (cache.tests.FileBasedCacheTests.test_cache_versioning_get_set_many) ... ok 313s test_cache_versioning_has_key (cache.tests.FileBasedCacheTests.test_cache_versioning_has_key) ... ok 313s test_cache_versioning_incr_decr (cache.tests.FileBasedCacheTests.test_cache_versioning_incr_decr) ... ok 313s test_cache_write_for_model_instance_with_deferred (cache.tests.FileBasedCacheTests.test_cache_write_for_model_instance_with_deferred) ... ok 313s test_cache_write_unpicklable_object (cache.tests.FileBasedCacheTests.test_cache_write_unpicklable_object) ... ok 313s test_clear (cache.tests.FileBasedCacheTests.test_clear) ... ok 313s test_clear_does_not_remove_cache_dir (cache.tests.FileBasedCacheTests.test_clear_does_not_remove_cache_dir) ... ok 313s test_close (cache.tests.FileBasedCacheTests.test_close) ... ok 313s test_creates_cache_dir_if_nonexistent (cache.tests.FileBasedCacheTests.test_creates_cache_dir_if_nonexistent) ... ok 313s test_cull (cache.tests.FileBasedCacheTests.test_cull) ... ok 313s test_cull_delete_when_store_empty (cache.tests.FileBasedCacheTests.test_cull_delete_when_store_empty) ... ok 313s test_custom_key_func (cache.tests.FileBasedCacheTests.test_custom_key_func) ... ok 313s test_data_types (cache.tests.FileBasedCacheTests.test_data_types) ... ok 313s test_decr (cache.tests.FileBasedCacheTests.test_decr) ... ok 313s test_decr_version (cache.tests.FileBasedCacheTests.test_decr_version) ... ok 313s test_default_used_when_none_is_set (cache.tests.FileBasedCacheTests.test_default_used_when_none_is_set) 313s If None is cached, get() returns it instead of the default. ... ok 313s test_delete (cache.tests.FileBasedCacheTests.test_delete) ... ok 313s test_delete_many (cache.tests.FileBasedCacheTests.test_delete_many) ... ok 313s test_delete_many_no_keys (cache.tests.FileBasedCacheTests.test_delete_many_no_keys) ... ok 313s test_delete_nonexistent (cache.tests.FileBasedCacheTests.test_delete_nonexistent) ... ok 313s test_empty_cache_file_considered_expired (cache.tests.FileBasedCacheTests.test_empty_cache_file_considered_expired) ... ok 313s test_expiration (cache.tests.FileBasedCacheTests.test_expiration) ... ok 313s test_float_timeout (cache.tests.FileBasedCacheTests.test_float_timeout) ... ok 313s test_forever_timeout (cache.tests.FileBasedCacheTests.test_forever_timeout) 313s Passing in None into timeout results in a value that is cached forever ... ok 313s test_get_does_not_ignore_non_filenotfound_exceptions (cache.tests.FileBasedCacheTests.test_get_does_not_ignore_non_filenotfound_exceptions) ... ok 313s test_get_ignores_enoent (cache.tests.FileBasedCacheTests.test_get_ignores_enoent) ... ok 313s test_get_many (cache.tests.FileBasedCacheTests.test_get_many) ... ok 313s test_get_or_set (cache.tests.FileBasedCacheTests.test_get_or_set) ... ok 313s test_get_or_set_callable (cache.tests.FileBasedCacheTests.test_get_or_set_callable) ... ok 313s test_get_or_set_racing (cache.tests.FileBasedCacheTests.test_get_or_set_racing) ... ok 313s test_get_or_set_version (cache.tests.FileBasedCacheTests.test_get_or_set_version) ... ok 313s test_has_key (cache.tests.FileBasedCacheTests.test_has_key) ... ok 313s test_has_key_race_handling (cache.tests.FileBasedCacheTests.test_has_key_race_handling) ... ok 313s test_ignores_non_cache_files (cache.tests.FileBasedCacheTests.test_ignores_non_cache_files) ... ok 313s test_in (cache.tests.FileBasedCacheTests.test_in) ... ok 313s test_incr (cache.tests.FileBasedCacheTests.test_incr) ... ok 313s test_incr_version (cache.tests.FileBasedCacheTests.test_incr_version) ... ok 313s test_invalid_key_characters (cache.tests.FileBasedCacheTests.test_invalid_key_characters) ... ok 313s test_invalid_key_length (cache.tests.FileBasedCacheTests.test_invalid_key_length) ... ok 313s test_invalid_with_version_key_length (cache.tests.FileBasedCacheTests.test_invalid_with_version_key_length) ... ok 313s test_long_timeout (cache.tests.FileBasedCacheTests.test_long_timeout) 313s Follow memcached's convention where a timeout greater than 30 days is ... ok 313s test_non_existent (cache.tests.FileBasedCacheTests.test_non_existent) 313s Nonexistent cache keys return as None/default. ... ok 313s test_prefix (cache.tests.FileBasedCacheTests.test_prefix) ... ok 313s test_set_fail_on_pickleerror (cache.tests.FileBasedCacheTests.test_set_fail_on_pickleerror) ... ok 313s test_set_many (cache.tests.FileBasedCacheTests.test_set_many) ... ok 313s test_set_many_empty_data (cache.tests.FileBasedCacheTests.test_set_many_empty_data) ... ok 313s test_set_many_expiration (cache.tests.FileBasedCacheTests.test_set_many_expiration) ... ok 313s test_set_many_returns_empty_list_on_success (cache.tests.FileBasedCacheTests.test_set_many_returns_empty_list_on_success) 313s set_many() returns an empty list when all keys are inserted. ... ok 313s test_simple (cache.tests.FileBasedCacheTests.test_simple) ... ok 313s test_touch (cache.tests.FileBasedCacheTests.test_touch) ... ok 313s test_unicode (cache.tests.FileBasedCacheTests.test_unicode) ... ok 313s test_zero_cull (cache.tests.FileBasedCacheTests.test_zero_cull) ... ok 313s test_zero_timeout (cache.tests.FileBasedCacheTests.test_zero_timeout) 313s Passing in zero into timeout results in a value that is not cached ... ok 313s test_add (cache.tests.FileBasedCachePathLibTests.test_add) ... ok 313s test_add_fail_on_pickleerror (cache.tests.FileBasedCachePathLibTests.test_add_fail_on_pickleerror) ... ok 313s test_binary_string (cache.tests.FileBasedCachePathLibTests.test_binary_string) ... ok 313s test_cache_dir_permissions (cache.tests.FileBasedCachePathLibTests.test_cache_dir_permissions) ... ok 313s test_cache_read_for_model_instance (cache.tests.FileBasedCachePathLibTests.test_cache_read_for_model_instance) ... ok 313s test_cache_read_for_model_instance_with_deferred (cache.tests.FileBasedCachePathLibTests.test_cache_read_for_model_instance_with_deferred) ... ok 313s test_cache_versioning_add (cache.tests.FileBasedCachePathLibTests.test_cache_versioning_add) ... ok 313s test_cache_versioning_delete (cache.tests.FileBasedCachePathLibTests.test_cache_versioning_delete) ... ok 313s test_cache_versioning_get_set (cache.tests.FileBasedCachePathLibTests.test_cache_versioning_get_set) ... ok 313s test_cache_versioning_get_set_many (cache.tests.FileBasedCachePathLibTests.test_cache_versioning_get_set_many) ... ok 313s test_cache_versioning_has_key (cache.tests.FileBasedCachePathLibTests.test_cache_versioning_has_key) ... ok 313s test_cache_versioning_incr_decr (cache.tests.FileBasedCachePathLibTests.test_cache_versioning_incr_decr) ... ok 313s test_cache_write_for_model_instance_with_deferred (cache.tests.FileBasedCachePathLibTests.test_cache_write_for_model_instance_with_deferred) ... ok 313s test_cache_write_unpicklable_object (cache.tests.FileBasedCachePathLibTests.test_cache_write_unpicklable_object) ... ok 313s test_clear (cache.tests.FileBasedCachePathLibTests.test_clear) ... ok 313s test_clear_does_not_remove_cache_dir (cache.tests.FileBasedCachePathLibTests.test_clear_does_not_remove_cache_dir) ... ok 313s test_close (cache.tests.FileBasedCachePathLibTests.test_close) ... ok 313s test_creates_cache_dir_if_nonexistent (cache.tests.FileBasedCachePathLibTests.test_creates_cache_dir_if_nonexistent) ... ok 313s test_cull (cache.tests.FileBasedCachePathLibTests.test_cull) ... ok 313s test_cull_delete_when_store_empty (cache.tests.FileBasedCachePathLibTests.test_cull_delete_when_store_empty) ... ok 313s test_custom_key_func (cache.tests.FileBasedCachePathLibTests.test_custom_key_func) ... ok 313s test_data_types (cache.tests.FileBasedCachePathLibTests.test_data_types) ... ok 313s test_decr (cache.tests.FileBasedCachePathLibTests.test_decr) ... ok 313s test_decr_version (cache.tests.FileBasedCachePathLibTests.test_decr_version) ... ok 313s test_default_used_when_none_is_set (cache.tests.FileBasedCachePathLibTests.test_default_used_when_none_is_set) 313s If None is cached, get() returns it instead of the default. ... ok 313s test_delete (cache.tests.FileBasedCachePathLibTests.test_delete) ... ok 313s test_delete_many (cache.tests.FileBasedCachePathLibTests.test_delete_many) ... ok 313s test_delete_many_no_keys (cache.tests.FileBasedCachePathLibTests.test_delete_many_no_keys) ... ok 313s test_delete_nonexistent (cache.tests.FileBasedCachePathLibTests.test_delete_nonexistent) ... ok 313s test_empty_cache_file_considered_expired (cache.tests.FileBasedCachePathLibTests.test_empty_cache_file_considered_expired) ... ok 313s test_expiration (cache.tests.FileBasedCachePathLibTests.test_expiration) ... ok 313s test_float_timeout (cache.tests.FileBasedCachePathLibTests.test_float_timeout) ... ok 313s test_forever_timeout (cache.tests.FileBasedCachePathLibTests.test_forever_timeout) 313s Passing in None into timeout results in a value that is cached forever ... ok 313s test_get_does_not_ignore_non_filenotfound_exceptions (cache.tests.FileBasedCachePathLibTests.test_get_does_not_ignore_non_filenotfound_exceptions) ... ok 313s test_get_ignores_enoent (cache.tests.FileBasedCachePathLibTests.test_get_ignores_enoent) ... ok 313s test_get_many (cache.tests.FileBasedCachePathLibTests.test_get_many) ... ok 313s test_get_or_set (cache.tests.FileBasedCachePathLibTests.test_get_or_set) ... ok 313s test_get_or_set_callable (cache.tests.FileBasedCachePathLibTests.test_get_or_set_callable) ... ok 313s test_get_or_set_racing (cache.tests.FileBasedCachePathLibTests.test_get_or_set_racing) ... ok 313s test_get_or_set_version (cache.tests.FileBasedCachePathLibTests.test_get_or_set_version) ... ok 313s test_has_key (cache.tests.FileBasedCachePathLibTests.test_has_key) ... ok 313s test_has_key_race_handling (cache.tests.FileBasedCachePathLibTests.test_has_key_race_handling) ... ok 313s test_ignores_non_cache_files (cache.tests.FileBasedCachePathLibTests.test_ignores_non_cache_files) ... ok 313s test_in (cache.tests.FileBasedCachePathLibTests.test_in) ... ok 313s test_incr (cache.tests.FileBasedCachePathLibTests.test_incr) ... ok 313s test_incr_version (cache.tests.FileBasedCachePathLibTests.test_incr_version) ... ok 313s test_invalid_key_characters (cache.tests.FileBasedCachePathLibTests.test_invalid_key_characters) ... ok 313s test_invalid_key_length (cache.tests.FileBasedCachePathLibTests.test_invalid_key_length) ... ok 313s test_invalid_with_version_key_length (cache.tests.FileBasedCachePathLibTests.test_invalid_with_version_key_length) ... ok 313s test_long_timeout (cache.tests.FileBasedCachePathLibTests.test_long_timeout) 313s Follow memcached's convention where a timeout greater than 30 days is ... ok 313s test_non_existent (cache.tests.FileBasedCachePathLibTests.test_non_existent) 313s Nonexistent cache keys return as None/default. ... ok 313s test_prefix (cache.tests.FileBasedCachePathLibTests.test_prefix) ... ok 313s test_set_fail_on_pickleerror (cache.tests.FileBasedCachePathLibTests.test_set_fail_on_pickleerror) ... ok 313s test_set_many (cache.tests.FileBasedCachePathLibTests.test_set_many) ... ok 313s test_set_many_empty_data (cache.tests.FileBasedCachePathLibTests.test_set_many_empty_data) ... ok 313s test_set_many_expiration (cache.tests.FileBasedCachePathLibTests.test_set_many_expiration) ... ok 313s test_set_many_returns_empty_list_on_success (cache.tests.FileBasedCachePathLibTests.test_set_many_returns_empty_list_on_success) 313s set_many() returns an empty list when all keys are inserted. ... ok 313s test_simple (cache.tests.FileBasedCachePathLibTests.test_simple) ... ok 313s test_touch (cache.tests.FileBasedCachePathLibTests.test_touch) ... ok 313s test_unicode (cache.tests.FileBasedCachePathLibTests.test_unicode) ... ok 313s test_zero_cull (cache.tests.FileBasedCachePathLibTests.test_zero_cull) ... ok 313s test_zero_timeout (cache.tests.FileBasedCachePathLibTests.test_zero_timeout) 313s Passing in zero into timeout results in a value that is not cached ... ok 313s test_add (cache.tests.PyLibMCCacheTests.test_add) ... skipped 'PyLibMCCache backend not configured' 313s test_add_fail_on_pickleerror (cache.tests.PyLibMCCacheTests.test_add_fail_on_pickleerror) ... skipped 'PyLibMCCache backend not configured' 313s test_binary_string (cache.tests.PyLibMCCacheTests.test_binary_string) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_read_for_model_instance (cache.tests.PyLibMCCacheTests.test_cache_read_for_model_instance) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_read_for_model_instance_with_deferred (cache.tests.PyLibMCCacheTests.test_cache_read_for_model_instance_with_deferred) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_versioning_add (cache.tests.PyLibMCCacheTests.test_cache_versioning_add) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_versioning_delete (cache.tests.PyLibMCCacheTests.test_cache_versioning_delete) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_versioning_get_set (cache.tests.PyLibMCCacheTests.test_cache_versioning_get_set) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_versioning_get_set_many (cache.tests.PyLibMCCacheTests.test_cache_versioning_get_set_many) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_versioning_has_key (cache.tests.PyLibMCCacheTests.test_cache_versioning_has_key) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_versioning_incr_decr (cache.tests.PyLibMCCacheTests.test_cache_versioning_incr_decr) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_write_for_model_instance_with_deferred (cache.tests.PyLibMCCacheTests.test_cache_write_for_model_instance_with_deferred) ... skipped 'PyLibMCCache backend not configured' 313s test_cache_write_unpicklable_object (cache.tests.PyLibMCCacheTests.test_cache_write_unpicklable_object) ... skipped 'PyLibMCCache backend not configured' 313s test_clear (cache.tests.PyLibMCCacheTests.test_clear) ... skipped 'PyLibMCCache backend not configured' 313s test_close (cache.tests.PyLibMCCacheTests.test_close) ... skipped 'PyLibMCCache backend not configured' 313s test_cull (cache.tests.PyLibMCCacheTests.test_cull) ... skipped 'PyLibMCCache backend not configured' 313s test_cull_delete_when_store_empty (cache.tests.PyLibMCCacheTests.test_cull_delete_when_store_empty) ... skipped 'PyLibMCCache backend not configured' 313s test_custom_key_func (cache.tests.PyLibMCCacheTests.test_custom_key_func) ... skipped 'PyLibMCCache backend not configured' 313s test_data_types (cache.tests.PyLibMCCacheTests.test_data_types) ... skipped 'PyLibMCCache backend not configured' 313s test_decr (cache.tests.PyLibMCCacheTests.test_decr) ... skipped 'PyLibMCCache backend not configured' 313s test_decr_version (cache.tests.PyLibMCCacheTests.test_decr_version) ... skipped 'PyLibMCCache backend not configured' 313s test_default_far_future_timeout (cache.tests.PyLibMCCacheTests.test_default_far_future_timeout) ... skipped 'PyLibMCCache backend not configured' 313s test_default_never_expiring_timeout (cache.tests.PyLibMCCacheTests.test_default_never_expiring_timeout) ... skipped 'PyLibMCCache backend not configured' 313s test_default_used_when_none_is_set (cache.tests.PyLibMCCacheTests.test_default_used_when_none_is_set) 313s If None is cached, get() returns it instead of the default. ... skipped 'PyLibMCCache backend not configured' 313s test_delete (cache.tests.PyLibMCCacheTests.test_delete) ... skipped 'PyLibMCCache backend not configured' 313s test_delete_many (cache.tests.PyLibMCCacheTests.test_delete_many) ... skipped 'PyLibMCCache backend not configured' 313s test_delete_many_no_keys (cache.tests.PyLibMCCacheTests.test_delete_many_no_keys) ... skipped 'PyLibMCCache backend not configured' 313s test_delete_nonexistent (cache.tests.PyLibMCCacheTests.test_delete_nonexistent) ... skipped 'PyLibMCCache backend not configured' 313s test_expiration (cache.tests.PyLibMCCacheTests.test_expiration) ... skipped 'PyLibMCCache backend not configured' 313s test_float_timeout (cache.tests.PyLibMCCacheTests.test_float_timeout) ... skipped 'PyLibMCCache backend not configured' 313s test_forever_timeout (cache.tests.PyLibMCCacheTests.test_forever_timeout) 313s Passing in None into timeout results in a value that is cached forever ... skipped 'PyLibMCCache backend not configured' 313s test_get_many (cache.tests.PyLibMCCacheTests.test_get_many) ... skipped 'PyLibMCCache backend not configured' 313s test_get_or_set (cache.tests.PyLibMCCacheTests.test_get_or_set) ... skipped 'PyLibMCCache backend not configured' 313s test_get_or_set_callable (cache.tests.PyLibMCCacheTests.test_get_or_set_callable) ... skipped 'PyLibMCCache backend not configured' 313s test_get_or_set_racing (cache.tests.PyLibMCCacheTests.test_get_or_set_racing) ... skipped 'PyLibMCCache backend not configured' 313s test_get_or_set_version (cache.tests.PyLibMCCacheTests.test_get_or_set_version) ... skipped 'PyLibMCCache backend not configured' 313s test_has_key (cache.tests.PyLibMCCacheTests.test_has_key) ... skipped 'PyLibMCCache backend not configured' 313s test_in (cache.tests.PyLibMCCacheTests.test_in) ... skipped 'PyLibMCCache backend not configured' 313s test_incr (cache.tests.PyLibMCCacheTests.test_incr) ... skipped 'PyLibMCCache backend not configured' 313s test_incr_version (cache.tests.PyLibMCCacheTests.test_incr_version) ... skipped 'PyLibMCCache backend not configured' 313s test_invalid_key_characters (cache.tests.PyLibMCCacheTests.test_invalid_key_characters) ... skipped 'PyLibMCCache backend not configured' 313s test_invalid_key_length (cache.tests.PyLibMCCacheTests.test_invalid_key_length) ... skipped 'PyLibMCCache backend not configured' 313s test_invalid_with_version_key_length (cache.tests.PyLibMCCacheTests.test_invalid_with_version_key_length) ... skipped 'PyLibMCCache backend not configured' 313s test_location_multiple_servers (cache.tests.PyLibMCCacheTests.test_location_multiple_servers) ... skipped 'PyLibMCCache backend not configured' 313s test_long_timeout (cache.tests.PyLibMCCacheTests.test_long_timeout) 313s Follow memcached's convention where a timeout greater than 30 days is ... skipped 'PyLibMCCache backend not configured' 313s test_memcached_deletes_key_on_failed_set (cache.tests.PyLibMCCacheTests.test_memcached_deletes_key_on_failed_set) ... skipped 'PyLibMCCache backend not configured' 313s test_non_existent (cache.tests.PyLibMCCacheTests.test_non_existent) 313s Nonexistent cache keys return as None/default. ... skipped 'PyLibMCCache backend not configured' 313s test_prefix (cache.tests.PyLibMCCacheTests.test_prefix) ... skipped 'PyLibMCCache backend not configured' 313s test_pylibmc_client_servers (cache.tests.PyLibMCCacheTests.test_pylibmc_client_servers) ... skipped 'PyLibMCCache backend not configured' 313s test_pylibmc_options (cache.tests.PyLibMCCacheTests.test_pylibmc_options) ... skipped 'PyLibMCCache backend not configured' 313s test_set_fail_on_pickleerror (cache.tests.PyLibMCCacheTests.test_set_fail_on_pickleerror) ... skipped 'PyLibMCCache backend not configured' 313s test_set_many (cache.tests.PyLibMCCacheTests.test_set_many) ... skipped 'PyLibMCCache backend not configured' 313s test_set_many_empty_data (cache.tests.PyLibMCCacheTests.test_set_many_empty_data) ... skipped 'PyLibMCCache backend not configured' 313s test_set_many_expiration (cache.tests.PyLibMCCacheTests.test_set_many_expiration) ... skipped 'PyLibMCCache backend not configured' 313s test_set_many_returns_empty_list_on_success (cache.tests.PyLibMCCacheTests.test_set_many_returns_empty_list_on_success) 313s set_many() returns an empty list when all keys are inserted. ... skipped 'PyLibMCCache backend not configured' 313s test_set_many_returns_failing_keys (cache.tests.PyLibMCCacheTests.test_set_many_returns_failing_keys) ... skipped 'PyLibMCCache backend not configured' 313s test_simple (cache.tests.PyLibMCCacheTests.test_simple) ... skipped 'PyLibMCCache backend not configured' 313s test_touch (cache.tests.PyLibMCCacheTests.test_touch) ... skipped 'PyLibMCCache backend not configured' 313s test_unicode (cache.tests.PyLibMCCacheTests.test_unicode) ... skipped 'PyLibMCCache backend not configured' 313s test_zero_cull (cache.tests.PyLibMCCacheTests.test_zero_cull) ... skipped 'PyLibMCCache backend not configured' 313s test_zero_timeout (cache.tests.PyLibMCCacheTests.test_zero_timeout) 313s Passing in zero into timeout results in a value that is not cached ... skipped 'PyLibMCCache backend not configured' 313s test_add (cache.tests.PyMemcacheCacheTests.test_add) ... skipped 'PyMemcacheCache backend not configured' 313s test_add_fail_on_pickleerror (cache.tests.PyMemcacheCacheTests.test_add_fail_on_pickleerror) ... skipped 'PyMemcacheCache backend not configured' 313s test_binary_string (cache.tests.PyMemcacheCacheTests.test_binary_string) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_read_for_model_instance (cache.tests.PyMemcacheCacheTests.test_cache_read_for_model_instance) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_read_for_model_instance_with_deferred (cache.tests.PyMemcacheCacheTests.test_cache_read_for_model_instance_with_deferred) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_versioning_add (cache.tests.PyMemcacheCacheTests.test_cache_versioning_add) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_versioning_delete (cache.tests.PyMemcacheCacheTests.test_cache_versioning_delete) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_versioning_get_set (cache.tests.PyMemcacheCacheTests.test_cache_versioning_get_set) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_versioning_get_set_many (cache.tests.PyMemcacheCacheTests.test_cache_versioning_get_set_many) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_versioning_has_key (cache.tests.PyMemcacheCacheTests.test_cache_versioning_has_key) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_versioning_incr_decr (cache.tests.PyMemcacheCacheTests.test_cache_versioning_incr_decr) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_write_for_model_instance_with_deferred (cache.tests.PyMemcacheCacheTests.test_cache_write_for_model_instance_with_deferred) ... skipped 'PyMemcacheCache backend not configured' 313s test_cache_write_unpicklable_object (cache.tests.PyMemcacheCacheTests.test_cache_write_unpicklable_object) ... skipped 'PyMemcacheCache backend not configured' 313s test_clear (cache.tests.PyMemcacheCacheTests.test_clear) ... skipped 'PyMemcacheCache backend not configured' 313s test_close (cache.tests.PyMemcacheCacheTests.test_close) ... skipped 'PyMemcacheCache backend not configured' 313s test_cull (cache.tests.PyMemcacheCacheTests.test_cull) ... skipped 'PyMemcacheCache backend not configured' 313s test_cull_delete_when_store_empty (cache.tests.PyMemcacheCacheTests.test_cull_delete_when_store_empty) ... skipped 'PyMemcacheCache backend not configured' 313s test_custom_key_func (cache.tests.PyMemcacheCacheTests.test_custom_key_func) ... skipped 'PyMemcacheCache backend not configured' 313s test_data_types (cache.tests.PyMemcacheCacheTests.test_data_types) ... skipped 'PyMemcacheCache backend not configured' 313s test_decr (cache.tests.PyMemcacheCacheTests.test_decr) ... skipped 'PyMemcacheCache backend not configured' 313s test_decr_version (cache.tests.PyMemcacheCacheTests.test_decr_version) ... skipped 'PyMemcacheCache backend not configured' 313s test_default_far_future_timeout (cache.tests.PyMemcacheCacheTests.test_default_far_future_timeout) ... skipped 'PyMemcacheCache backend not configured' 313s test_default_never_expiring_timeout (cache.tests.PyMemcacheCacheTests.test_default_never_expiring_timeout) ... skipped 'PyMemcacheCache backend not configured' 313s test_default_used_when_none_is_set (cache.tests.PyMemcacheCacheTests.test_default_used_when_none_is_set) 313s If None is cached, get() returns it instead of the default. ... skipped 'PyMemcacheCache backend not configured' 313s test_delete (cache.tests.PyMemcacheCacheTests.test_delete) ... skipped 'PyMemcacheCache backend not configured' 313s test_delete_many (cache.tests.PyMemcacheCacheTests.test_delete_many) ... skipped 'PyMemcacheCache backend not configured' 313s test_delete_many_no_keys (cache.tests.PyMemcacheCacheTests.test_delete_many_no_keys) ... skipped 'PyMemcacheCache backend not configured' 313s test_delete_nonexistent (cache.tests.PyMemcacheCacheTests.test_delete_nonexistent) ... skipped 'PyMemcacheCache backend not configured' 313s test_expiration (cache.tests.PyMemcacheCacheTests.test_expiration) ... skipped 'PyMemcacheCache backend not configured' 313s test_float_timeout (cache.tests.PyMemcacheCacheTests.test_float_timeout) ... skipped 'PyMemcacheCache backend not configured' 313s test_forever_timeout (cache.tests.PyMemcacheCacheTests.test_forever_timeout) 313s Passing in None into timeout results in a value that is cached forever ... skipped 'PyMemcacheCache backend not configured' 313s test_get_many (cache.tests.PyMemcacheCacheTests.test_get_many) ... skipped 'PyMemcacheCache backend not configured' 313s test_get_or_set (cache.tests.PyMemcacheCacheTests.test_get_or_set) ... skipped 'PyMemcacheCache backend not configured' 313s test_get_or_set_callable (cache.tests.PyMemcacheCacheTests.test_get_or_set_callable) ... skipped 'PyMemcacheCache backend not configured' 313s test_get_or_set_racing (cache.tests.PyMemcacheCacheTests.test_get_or_set_racing) ... skipped 'PyMemcacheCache backend not configured' 313s test_get_or_set_version (cache.tests.PyMemcacheCacheTests.test_get_or_set_version) ... skipped 'PyMemcacheCache backend not configured' 313s test_has_key (cache.tests.PyMemcacheCacheTests.test_has_key) ... skipped 'PyMemcacheCache backend not configured' 313s test_in (cache.tests.PyMemcacheCacheTests.test_in) ... skipped 'PyMemcacheCache backend not configured' 313s test_incr (cache.tests.PyMemcacheCacheTests.test_incr) ... skipped 'PyMemcacheCache backend not configured' 313s test_incr_version (cache.tests.PyMemcacheCacheTests.test_incr_version) ... skipped 'PyMemcacheCache backend not configured' 313s test_invalid_key_characters (cache.tests.PyMemcacheCacheTests.test_invalid_key_characters) ... skipped 'PyMemcacheCache backend not configured' 313s test_invalid_key_length (cache.tests.PyMemcacheCacheTests.test_invalid_key_length) ... skipped 'PyMemcacheCache backend not configured' 313s test_invalid_with_version_key_length (cache.tests.PyMemcacheCacheTests.test_invalid_with_version_key_length) ... skipped 'PyMemcacheCache backend not configured' 313s test_location_multiple_servers (cache.tests.PyMemcacheCacheTests.test_location_multiple_servers) ... skipped 'PyMemcacheCache backend not configured' 313s test_long_timeout (cache.tests.PyMemcacheCacheTests.test_long_timeout) 313s Follow memcached's convention where a timeout greater than 30 days is ... skipped 'PyMemcacheCache backend not configured' 313s test_memcached_deletes_key_on_failed_set (cache.tests.PyMemcacheCacheTests.test_memcached_deletes_key_on_failed_set) ... skipped 'PyMemcacheCache backend not configured' 313s test_non_existent (cache.tests.PyMemcacheCacheTests.test_non_existent) 313s Nonexistent cache keys return as None/default. ... skipped 'PyMemcacheCache backend not configured' 313s test_prefix (cache.tests.PyMemcacheCacheTests.test_prefix) ... skipped 'PyMemcacheCache backend not configured' 313s test_pymemcache_highest_pickle_version (cache.tests.PyMemcacheCacheTests.test_pymemcache_highest_pickle_version) ... skipped 'PyMemcacheCache backend not configured' 313s test_pymemcache_options (cache.tests.PyMemcacheCacheTests.test_pymemcache_options) ... skipped 'PyMemcacheCache backend not configured' 313s test_set_fail_on_pickleerror (cache.tests.PyMemcacheCacheTests.test_set_fail_on_pickleerror) ... skipped 'PyMemcacheCache backend not configured' 313s test_set_many (cache.tests.PyMemcacheCacheTests.test_set_many) ... skipped 'PyMemcacheCache backend not configured' 313s test_set_many_empty_data (cache.tests.PyMemcacheCacheTests.test_set_many_empty_data) ... skipped 'PyMemcacheCache backend not configured' 313s test_set_many_expiration (cache.tests.PyMemcacheCacheTests.test_set_many_expiration) ... skipped 'PyMemcacheCache backend not configured' 313s test_set_many_returns_empty_list_on_success (cache.tests.PyMemcacheCacheTests.test_set_many_returns_empty_list_on_success) 313s set_many() returns an empty list when all keys are inserted. ... skipped 'PyMemcacheCache backend not configured' 313s test_set_many_returns_failing_keys (cache.tests.PyMemcacheCacheTests.test_set_many_returns_failing_keys) ... skipped 'PyMemcacheCache backend not configured' 313s test_simple (cache.tests.PyMemcacheCacheTests.test_simple) ... skipped 'PyMemcacheCache backend not configured' 313s test_touch (cache.tests.PyMemcacheCacheTests.test_touch) ... skipped 'PyMemcacheCache backend not configured' 313s test_unicode (cache.tests.PyMemcacheCacheTests.test_unicode) ... skipped 'PyMemcacheCache backend not configured' 313s test_zero_cull (cache.tests.PyMemcacheCacheTests.test_zero_cull) ... skipped 'PyMemcacheCache backend not configured' 313s test_zero_timeout (cache.tests.PyMemcacheCacheTests.test_zero_timeout) 313s Passing in zero into timeout results in a value that is not cached ... skipped 'PyMemcacheCache backend not configured' 313s test_add (cache.tests.RedisCacheTests.test_add) ... skipped 'Redis backend not configured' 313s test_add_fail_on_pickleerror (cache.tests.RedisCacheTests.test_add_fail_on_pickleerror) ... skipped 'Redis backend not configured' 313s test_binary_string (cache.tests.RedisCacheTests.test_binary_string) ... skipped 'Redis backend not configured' 313s test_cache_client_class (cache.tests.RedisCacheTests.test_cache_client_class) ... skipped 'Redis backend not configured' 313s test_cache_read_for_model_instance (cache.tests.RedisCacheTests.test_cache_read_for_model_instance) ... skipped 'Redis backend not configured' 313s test_cache_read_for_model_instance_with_deferred (cache.tests.RedisCacheTests.test_cache_read_for_model_instance_with_deferred) ... skipped 'Redis backend not configured' 313s test_cache_versioning_add (cache.tests.RedisCacheTests.test_cache_versioning_add) ... skipped 'Redis backend not configured' 313s test_cache_versioning_delete (cache.tests.RedisCacheTests.test_cache_versioning_delete) ... skipped 'Redis backend not configured' 313s test_cache_versioning_get_set (cache.tests.RedisCacheTests.test_cache_versioning_get_set) ... skipped 'Redis backend not configured' 313s test_cache_versioning_get_set_many (cache.tests.RedisCacheTests.test_cache_versioning_get_set_many) ... skipped 'Redis backend not configured' 313s test_cache_versioning_has_key (cache.tests.RedisCacheTests.test_cache_versioning_has_key) ... skipped 'Redis backend not configured' 313s test_cache_versioning_incr_decr (cache.tests.RedisCacheTests.test_cache_versioning_incr_decr) ... skipped 'Redis backend not configured' 313s test_cache_write_for_model_instance_with_deferred (cache.tests.RedisCacheTests.test_cache_write_for_model_instance_with_deferred) ... skipped 'Redis backend not configured' 313s test_cache_write_unpicklable_object (cache.tests.RedisCacheTests.test_cache_write_unpicklable_object) ... skipped 'Redis backend not configured' 313s test_clear (cache.tests.RedisCacheTests.test_clear) ... skipped 'Redis backend not configured' 313s test_close (cache.tests.RedisCacheTests.test_close) ... skipped 'Redis backend not configured' 313s test_cull (cache.tests.RedisCacheTests.test_cull) ... skipped 'Redis backend not configured' 313s test_cull_delete_when_store_empty (cache.tests.RedisCacheTests.test_cull_delete_when_store_empty) ... skipped 'Redis backend not configured' 313s test_custom_key_func (cache.tests.RedisCacheTests.test_custom_key_func) ... skipped 'Redis backend not configured' 313s test_data_types (cache.tests.RedisCacheTests.test_data_types) ... skipped 'Redis backend not configured' 313s test_decr (cache.tests.RedisCacheTests.test_decr) ... skipped 'Redis backend not configured' 313s test_decr_version (cache.tests.RedisCacheTests.test_decr_version) ... skipped 'Redis backend not configured' 313s test_default_used_when_none_is_set (cache.tests.RedisCacheTests.test_default_used_when_none_is_set) 313s If None is cached, get() returns it instead of the default. ... skipped 'Redis backend not configured' 313s test_delete (cache.tests.RedisCacheTests.test_delete) ... skipped 'Redis backend not configured' 313s test_delete_many (cache.tests.RedisCacheTests.test_delete_many) ... skipped 'Redis backend not configured' 313s test_delete_many_no_keys (cache.tests.RedisCacheTests.test_delete_many_no_keys) ... skipped 'Redis backend not configured' 313s test_delete_nonexistent (cache.tests.RedisCacheTests.test_delete_nonexistent) ... skipped 'Redis backend not configured' 313s test_expiration (cache.tests.RedisCacheTests.test_expiration) ... skipped 'Redis backend not configured' 313s test_float_timeout (cache.tests.RedisCacheTests.test_float_timeout) ... skipped 'Redis backend not configured' 313s test_forever_timeout (cache.tests.RedisCacheTests.test_forever_timeout) 313s Passing in None into timeout results in a value that is cached forever ... skipped 'Redis backend not configured' 313s test_get_backend_timeout_method (cache.tests.RedisCacheTests.test_get_backend_timeout_method) ... skipped 'Redis backend not configured' 313s test_get_client (cache.tests.RedisCacheTests.test_get_client) ... skipped 'Redis backend not configured' 313s test_get_connection_pool (cache.tests.RedisCacheTests.test_get_connection_pool) ... skipped 'Redis backend not configured' 313s test_get_connection_pool_index (cache.tests.RedisCacheTests.test_get_connection_pool_index) ... skipped 'Redis backend not configured' 313s test_get_many (cache.tests.RedisCacheTests.test_get_many) ... skipped 'Redis backend not configured' 313s test_get_or_set (cache.tests.RedisCacheTests.test_get_or_set) ... skipped 'Redis backend not configured' 313s test_get_or_set_callable (cache.tests.RedisCacheTests.test_get_or_set_callable) ... skipped 'Redis backend not configured' 313s test_get_or_set_racing (cache.tests.RedisCacheTests.test_get_or_set_racing) ... skipped 'Redis backend not configured' 313s test_get_or_set_version (cache.tests.RedisCacheTests.test_get_or_set_version) ... skipped 'Redis backend not configured' 313s test_has_key (cache.tests.RedisCacheTests.test_has_key) ... skipped 'Redis backend not configured' 313s test_in (cache.tests.RedisCacheTests.test_in) ... skipped 'Redis backend not configured' 313s test_incr (cache.tests.RedisCacheTests.test_incr) ... skipped 'Redis backend not configured' 313s test_incr_version (cache.tests.RedisCacheTests.test_incr_version) ... skipped 'Redis backend not configured' 313s test_incr_write_connection (cache.tests.RedisCacheTests.test_incr_write_connection) ... skipped 'Redis backend not configured' 313s test_invalid_key_characters (cache.tests.RedisCacheTests.test_invalid_key_characters) ... skipped 'Redis backend not configured' 313s test_invalid_key_length (cache.tests.RedisCacheTests.test_invalid_key_length) ... skipped 'Redis backend not configured' 313s test_invalid_with_version_key_length (cache.tests.RedisCacheTests.test_invalid_with_version_key_length) ... skipped 'Redis backend not configured' 313s test_long_timeout (cache.tests.RedisCacheTests.test_long_timeout) 313s Follow memcached's convention where a timeout greater than 30 days is ... skipped 'Redis backend not configured' 313s test_non_existent (cache.tests.RedisCacheTests.test_non_existent) 313s Nonexistent cache keys return as None/default. ... skipped 'Redis backend not configured' 313s test_prefix (cache.tests.RedisCacheTests.test_prefix) ... skipped 'Redis backend not configured' 313s test_redis_pool_options (cache.tests.RedisCacheTests.test_redis_pool_options) ... skipped 'Redis backend not configured' 313s test_serializer_dumps (cache.tests.RedisCacheTests.test_serializer_dumps) ... skipped 'Redis backend not configured' 313s test_set_fail_on_pickleerror (cache.tests.RedisCacheTests.test_set_fail_on_pickleerror) ... skipped 'Redis backend not configured' 313s test_set_many (cache.tests.RedisCacheTests.test_set_many) ... skipped 'Redis backend not configured' 313s test_set_many_empty_data (cache.tests.RedisCacheTests.test_set_many_empty_data) ... skipped 'Redis backend not configured' 313s test_set_many_expiration (cache.tests.RedisCacheTests.test_set_many_expiration) ... skipped 'Redis backend not configured' 313s test_set_many_returns_empty_list_on_success (cache.tests.RedisCacheTests.test_set_many_returns_empty_list_on_success) 313s set_many() returns an empty list when all keys are inserted. ... skipped 'Redis backend not configured' 313s test_simple (cache.tests.RedisCacheTests.test_simple) ... skipped 'Redis backend not configured' 313s test_touch (cache.tests.RedisCacheTests.test_touch) ... skipped 'Redis backend not configured' 313s test_unicode (cache.tests.RedisCacheTests.test_unicode) ... skipped 'Redis backend not configured' 313s test_zero_cull (cache.tests.RedisCacheTests.test_zero_cull) ... skipped 'Redis backend not configured' 313s test_zero_timeout (cache.tests.RedisCacheTests.test_zero_timeout) 313s Passing in zero into timeout results in a value that is not cached ... skipped 'Redis backend not configured' 314s test_bad_request (view_tests.tests.test_defaults.DefaultsTests.test_bad_request) ... ok 314s test_csrf_token_in_404 (view_tests.tests.test_defaults.DefaultsTests.test_csrf_token_in_404) 314s The 404 page should have the csrf_token available in the context ... ok 314s test_custom_templates (view_tests.tests.test_defaults.DefaultsTests.test_custom_templates) 314s 404.html and 500.html templates are picked by their respective handler. ... ok 314s test_custom_templates_wrong (view_tests.tests.test_defaults.DefaultsTests.test_custom_templates_wrong) 314s Default error views should raise TemplateDoesNotExist when passed a ... ok 314s test_error_pages (view_tests.tests.test_defaults.DefaultsTests.test_error_pages) ... ok 314s test_get_absolute_url_attributes (view_tests.tests.test_defaults.DefaultsTests.test_get_absolute_url_attributes) 314s A model can set attributes on the get_absolute_url method ... ok 314s test_page_not_found (view_tests.tests.test_defaults.DefaultsTests.test_page_not_found) 314s A 404 status is returned by the page_not_found view ... ok 314s test_server_error (view_tests.tests.test_defaults.DefaultsTests.test_server_error) 314s The server_error view raises a 500 status ... ok 314s test_lang_from_translated_i18n_pattern (view_tests.tests.test_i18n.SetLanguageTests.test_lang_from_translated_i18n_pattern) ... ok 314s test_setlang (view_tests.tests.test_i18n.SetLanguageTests.test_setlang) 314s The set_language view can be used to change the session language. ... ok 314s test_setlang_cookie (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_cookie) ... ok 314s test_setlang_decodes_http_referer_url (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_decodes_http_referer_url) 314s The set_language view decodes the HTTP_REFERER URL and preserves an ... ok 314s test_setlang_default_redirect (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_default_redirect) 314s The set_language view redirects to '/' when there isn't a referer or ... ok 314s test_setlang_doesnt_perform_a_default_redirect_for_ajax (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_doesnt_perform_a_default_redirect_for_ajax) 314s The set_language view returns 204 by default for requests not accepting ... ok 314s test_setlang_doesnt_perform_a_redirect_to_referer_for_ajax (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_doesnt_perform_a_redirect_to_referer_for_ajax) 314s The set_language view doesn't redirect to the HTTP referer header if ... ok 314s test_setlang_http_next (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_http_next) 314s The set_language view only redirects to the 'next' argument if it is ... ok 314s test_setlang_performs_redirect_for_ajax_if_explicitly_requested (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_performs_redirect_for_ajax_if_explicitly_requested) 314s The set_language view redirects to the "next" parameter for requests ... ok 314s test_setlang_redirect_to_referer (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_redirect_to_referer) 314s The set_language view redirects to the URL in the referer header when ... ok 314s test_setlang_reversal (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_reversal) ... ok 314s test_setlang_unsafe_next (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_unsafe_next) 314s The set_language view only redirects to the 'next' argument if it is ... ok 314s test_setlang_unsafe_next_for_ajax (view_tests.tests.test_i18n.SetLanguageTests.test_setlang_unsafe_next_for_ajax) 314s The fallback to root URL for the set_language view works for requests ... ok 314s test_add_form_deletion_when_invalid (inline_formsets.tests.DeletionTests.test_add_form_deletion_when_invalid) 314s Make sure that an add form that is filled out, but marked for deletion ... ok 314s test_change_form_deletion_when_invalid (inline_formsets.tests.DeletionTests.test_change_form_deletion_when_invalid) 314s Make sure that a change form that is filled out, but marked for deletion ... ok 314s test_deletion (inline_formsets.tests.DeletionTests.test_deletion) ... ok 314s test_save_new (inline_formsets.tests.DeletionTests.test_save_new) 314s Make sure inlineformsets respect commit=False ... ok 314s test_any_iterable_allowed_as_argument_to_exclude (inline_formsets.tests.InlineFormsetFactoryTest.test_any_iterable_allowed_as_argument_to_exclude) ... ok 314s test_exception_on_unspecified_foreign_key (inline_formsets.tests.InlineFormsetFactoryTest.test_exception_on_unspecified_foreign_key) 314s Child has two ForeignKeys to Parent, so if we don't specify which one ... ok 314s test_fk_in_all_formset_forms (inline_formsets.tests.InlineFormsetFactoryTest.test_fk_in_all_formset_forms) 314s A foreign key field is in Meta for all forms in the formset (#26538). ... ok 314s test_fk_name_not_foreign_key_field_from_child (inline_formsets.tests.InlineFormsetFactoryTest.test_fk_name_not_foreign_key_field_from_child) 314s If we specify fk_name, but it isn't a ForeignKey from the child model ... ok 314s test_fk_not_duplicated_in_form_fields (inline_formsets.tests.InlineFormsetFactoryTest.test_fk_not_duplicated_in_form_fields) 314s A foreign key name isn't duplicated in form._meta fields (#21332). ... ok 314s test_inline_formset_factory (inline_formsets.tests.InlineFormsetFactoryTest.test_inline_formset_factory) 314s These should both work without a problem. ... ok 314s test_non_foreign_key_field (inline_formsets.tests.InlineFormsetFactoryTest.test_non_foreign_key_field) 314s If the field specified in fk_name is not a ForeignKey, we should get an ... ok 314s test_unsaved_fk_validate_unique (inline_formsets.tests.InlineFormsetFactoryTest.test_unsaved_fk_validate_unique) ... ok 314s test_zero_primary_key (inline_formsets.tests.InlineFormsetFactoryTest.test_zero_primary_key) ... ok 314s test_foreign_key (known_related_objects.tests.ExistingRelatedInstancesTests.test_foreign_key) ... ok 314s test_foreign_key_multiple_prefetch (known_related_objects.tests.ExistingRelatedInstancesTests.test_foreign_key_multiple_prefetch) ... ok 314s test_foreign_key_prefetch_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_foreign_key_prefetch_related) ... ok 314s test_multilevel_reverse_fk_cyclic_select_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_multilevel_reverse_fk_cyclic_select_related) ... ok 314s test_multilevel_reverse_fk_select_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_multilevel_reverse_fk_select_related) ... ok 314s test_one_to_one (known_related_objects.tests.ExistingRelatedInstancesTests.test_one_to_one) ... ok 314s test_one_to_one_multi_prefetch_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_one_to_one_multi_prefetch_related) ... ok 314s test_one_to_one_multi_select_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_one_to_one_multi_select_related) ... ok 314s test_one_to_one_prefetch_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_one_to_one_prefetch_related) ... ok 314s test_one_to_one_select_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_one_to_one_select_related) ... ok 314s test_queryset_and (known_related_objects.tests.ExistingRelatedInstancesTests.test_queryset_and) ... ok 314s test_queryset_or (known_related_objects.tests.ExistingRelatedInstancesTests.test_queryset_or) ... ok 314s test_queryset_or_different_cached_items (known_related_objects.tests.ExistingRelatedInstancesTests.test_queryset_or_different_cached_items) ... ok 314s test_queryset_or_only_one_with_precache (known_related_objects.tests.ExistingRelatedInstancesTests.test_queryset_or_only_one_with_precache) ... ok 314s test_reverse_fk_select_related_multiple (known_related_objects.tests.ExistingRelatedInstancesTests.test_reverse_fk_select_related_multiple) ... ok 314s test_reverse_one_to_one (known_related_objects.tests.ExistingRelatedInstancesTests.test_reverse_one_to_one) ... ok 314s test_reverse_one_to_one_multi_prefetch_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_reverse_one_to_one_multi_prefetch_related) ... ok 314s test_reverse_one_to_one_multi_select_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_reverse_one_to_one_multi_select_related) ... ok 314s test_reverse_one_to_one_prefetch_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_reverse_one_to_one_prefetch_related) ... ok 314s test_reverse_one_to_one_select_related (known_related_objects.tests.ExistingRelatedInstancesTests.test_reverse_one_to_one_select_related) ... ok 315s test_case_aggregate (aggregation.test_filter_argument.FilteredAggregateTests.test_case_aggregate) ... ok 315s test_double_filtered_aggregates (aggregation.test_filter_argument.FilteredAggregateTests.test_double_filtered_aggregates) ... ok 315s test_excluded_aggregates (aggregation.test_filter_argument.FilteredAggregateTests.test_excluded_aggregates) ... ok 315s test_filtered_aggregate_empty_condition (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregate_empty_condition) ... ok 315s test_filtered_aggregate_full_condition (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregate_full_condition) ... ok 315s test_filtered_aggregate_on_annotate (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregate_on_annotate) ... ok 315s test_filtered_aggregate_on_exists (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregate_on_exists) ... ok 315s test_filtered_aggregate_ref_annotation (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregate_ref_annotation) ... ok 315s test_filtered_aggregate_ref_multiple_subquery_annotation (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregate_ref_multiple_subquery_annotation) ... ok 315s test_filtered_aggregate_ref_subquery_annotation (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregate_ref_subquery_annotation) ... ok 315s test_filtered_aggregates (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_aggregates) ... ok 315s test_filtered_numerical_aggregates (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_numerical_aggregates) ... ok 315s test_filtered_reused_subquery (aggregation.test_filter_argument.FilteredAggregateTests.test_filtered_reused_subquery) ... ok 315s test_plain_annotate (aggregation.test_filter_argument.FilteredAggregateTests.test_plain_annotate) ... ok 315s test_related_aggregates_m2m (aggregation.test_filter_argument.FilteredAggregateTests.test_related_aggregates_m2m) ... ok 315s test_related_aggregates_m2m_and_fk (aggregation.test_filter_argument.FilteredAggregateTests.test_related_aggregates_m2m_and_fk) ... ok 315s test_sum_star_exception (aggregation.test_filter_argument.FilteredAggregateTests.test_sum_star_exception) ... ok 315s test_aggregate_reference_lookup_rhs (aggregation.tests.AggregateAnnotationPruningTests.test_aggregate_reference_lookup_rhs) ... ok 315s test_non_aggregate_annotation_pruned (aggregation.tests.AggregateAnnotationPruningTests.test_non_aggregate_annotation_pruned) ... ok 315s test_referenced_aggregate_annotation_kept (aggregation.tests.AggregateAnnotationPruningTests.test_referenced_aggregate_annotation_kept) ... ok 315s test_referenced_composed_subquery_requires_wrapping (aggregation.tests.AggregateAnnotationPruningTests.test_referenced_composed_subquery_requires_wrapping) ... ok 315s test_referenced_group_by_annotation_kept (aggregation.tests.AggregateAnnotationPruningTests.test_referenced_group_by_annotation_kept) ... ok 315s test_referenced_subquery_requires_wrapping (aggregation.tests.AggregateAnnotationPruningTests.test_referenced_subquery_requires_wrapping) ... ok 315s test_referenced_window_requires_wrapping (aggregation.tests.AggregateAnnotationPruningTests.test_referenced_window_requires_wrapping) ... ok 315s test_unreferenced_aggregate_annotation_pruned (aggregation.tests.AggregateAnnotationPruningTests.test_unreferenced_aggregate_annotation_pruned) ... ok 315s test_unused_aliased_aggregate_and_annotation_reverse_fk (aggregation.tests.AggregateAnnotationPruningTests.test_unused_aliased_aggregate_and_annotation_reverse_fk) ... ok 315s test_unused_aliased_aggregate_and_annotation_reverse_fk_grouped (aggregation.tests.AggregateAnnotationPruningTests.test_unused_aliased_aggregate_and_annotation_reverse_fk_grouped) ... ok 315s test_unused_aliased_aggregate_pruned (aggregation.tests.AggregateAnnotationPruningTests.test_unused_aliased_aggregate_pruned) ... ok 317s test_add_implementation (aggregation.tests.AggregateTestCase.test_add_implementation) ... ok 317s test_aggregate_alias (aggregation.tests.AggregateTestCase.test_aggregate_alias) ... ok 317s test_aggregate_annotation (aggregation.tests.AggregateTestCase.test_aggregate_annotation) ... ok 317s test_aggregate_in_order_by (aggregation.tests.AggregateTestCase.test_aggregate_in_order_by) ... ok 317s test_aggregate_join_transform (aggregation.tests.AggregateTestCase.test_aggregate_join_transform) ... ok 317s test_aggregate_multi_join (aggregation.tests.AggregateTestCase.test_aggregate_multi_join) ... ok 317s test_aggregate_over_aggregate (aggregation.tests.AggregateTestCase.test_aggregate_over_aggregate) ... ok 317s test_aggregate_over_complex_annotation (aggregation.tests.AggregateTestCase.test_aggregate_over_complex_annotation) ... ok 317s test_aggregate_transform (aggregation.tests.AggregateTestCase.test_aggregate_transform) ... ok 317s test_aggregation_default_after_annotation (aggregation.tests.AggregateTestCase.test_aggregation_default_after_annotation) ... ok 317s test_aggregation_default_compound_expression (aggregation.tests.AggregateTestCase.test_aggregation_default_compound_expression) ... ok 317s test_aggregation_default_expression (aggregation.tests.AggregateTestCase.test_aggregation_default_expression) ... ok 317s test_aggregation_default_group_by (aggregation.tests.AggregateTestCase.test_aggregation_default_group_by) ... ok 317s test_aggregation_default_integer (aggregation.tests.AggregateTestCase.test_aggregation_default_integer) ... ok 317s test_aggregation_default_not_in_aggregate (aggregation.tests.AggregateTestCase.test_aggregation_default_not_in_aggregate) ... ok 317s test_aggregation_default_passed_another_aggregate (aggregation.tests.AggregateTestCase.test_aggregation_default_passed_another_aggregate) ... ok 317s test_aggregation_default_unset (aggregation.tests.AggregateTestCase.test_aggregation_default_unset) ... ok 317s test_aggregation_default_unsupported_by_count (aggregation.tests.AggregateTestCase.test_aggregation_default_unsupported_by_count) ... ok 317s test_aggregation_default_using_date_from_database (aggregation.tests.AggregateTestCase.test_aggregation_default_using_date_from_database) ... ok 317s test_aggregation_default_using_date_from_python (aggregation.tests.AggregateTestCase.test_aggregation_default_using_date_from_python) ... ok 317s test_aggregation_default_using_datetime_from_database (aggregation.tests.AggregateTestCase.test_aggregation_default_using_datetime_from_database) ... ok 317s test_aggregation_default_using_datetime_from_python (aggregation.tests.AggregateTestCase.test_aggregation_default_using_datetime_from_python) ... ok 317s test_aggregation_default_using_decimal_from_database (aggregation.tests.AggregateTestCase.test_aggregation_default_using_decimal_from_database) ... ok 317s test_aggregation_default_using_decimal_from_python (aggregation.tests.AggregateTestCase.test_aggregation_default_using_decimal_from_python) ... ok 317s test_aggregation_default_using_duration_from_database (aggregation.tests.AggregateTestCase.test_aggregation_default_using_duration_from_database) ... ok 317s test_aggregation_default_using_duration_from_python (aggregation.tests.AggregateTestCase.test_aggregation_default_using_duration_from_python) ... ok 317s test_aggregation_default_using_time_from_database (aggregation.tests.AggregateTestCase.test_aggregation_default_using_time_from_database) ... ok 317s test_aggregation_default_using_time_from_python (aggregation.tests.AggregateTestCase.test_aggregation_default_using_time_from_python) ... ok 317s test_aggregation_default_zero (aggregation.tests.AggregateTestCase.test_aggregation_default_zero) ... ok 317s test_aggregation_exists_annotation (aggregation.tests.AggregateTestCase.test_aggregation_exists_annotation) ... ok 317s test_aggregation_exists_multivalued_outeref (aggregation.tests.AggregateTestCase.test_aggregation_exists_multivalued_outeref) ... ok 317s test_aggregation_expressions (aggregation.tests.AggregateTestCase.test_aggregation_expressions) ... ok 317s test_aggregation_filter_exists (aggregation.tests.AggregateTestCase.test_aggregation_filter_exists) ... ok 317s test_aggregation_nested_subquery_outerref (aggregation.tests.AggregateTestCase.test_aggregation_nested_subquery_outerref) ... ok 317s test_aggregation_order_by_not_selected_annotation_values (aggregation.tests.AggregateTestCase.test_aggregation_order_by_not_selected_annotation_values) ... ok 317s test_aggregation_random_ordering (aggregation.tests.AggregateTestCase.test_aggregation_random_ordering) 317s Random() is not included in the GROUP BY when used for ordering. ... ok 317s test_aggregation_subquery_annotation (aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation) 317s Subquery annotations are excluded from the GROUP BY if they are ... ok 317s test_aggregation_subquery_annotation_exists (aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_exists) ... ok 317s test_aggregation_subquery_annotation_multivalued (aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_multivalued) 317s Subquery annotations must be included in the GROUP BY if they use ... ok 317s test_aggregation_subquery_annotation_related_field (aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_related_field) ... ok 317s test_aggregation_subquery_annotation_values (aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_values) 317s Subquery annotations and external aliases are excluded from the GROUP ... ok 317s test_aggregation_subquery_annotation_values_collision (aggregation.tests.AggregateTestCase.test_aggregation_subquery_annotation_values_collision) ... ok 317s test_alias_sql_injection (aggregation.tests.AggregateTestCase.test_alias_sql_injection) ... ok 317s test_annotate_basic (aggregation.tests.AggregateTestCase.test_annotate_basic) ... ok 317s test_annotate_defer (aggregation.tests.AggregateTestCase.test_annotate_defer) ... ok 317s test_annotate_defer_select_related (aggregation.tests.AggregateTestCase.test_annotate_defer_select_related) ... ok 317s test_annotate_m2m (aggregation.tests.AggregateTestCase.test_annotate_m2m) ... ok 317s test_annotate_ordering (aggregation.tests.AggregateTestCase.test_annotate_ordering) ... ok 317s test_annotate_over_annotate (aggregation.tests.AggregateTestCase.test_annotate_over_annotate) ... ok 317s test_annotate_values (aggregation.tests.AggregateTestCase.test_annotate_values) ... ok 317s test_annotate_values_aggregate (aggregation.tests.AggregateTestCase.test_annotate_values_aggregate) ... ok 317s test_annotate_values_list (aggregation.tests.AggregateTestCase.test_annotate_values_list) ... ok 317s test_annotated_aggregate_over_annotated_aggregate (aggregation.tests.AggregateTestCase.test_annotated_aggregate_over_annotated_aggregate) ... ok 317s test_annotation (aggregation.tests.AggregateTestCase.test_annotation) ... ok 317s test_annotation_expressions (aggregation.tests.AggregateTestCase.test_annotation_expressions) ... ok 317s test_arguments_must_be_expressions (aggregation.tests.AggregateTestCase.test_arguments_must_be_expressions) ... ok 317s test_avg_decimal_field (aggregation.tests.AggregateTestCase.test_avg_decimal_field) ... ok 317s test_avg_duration_field (aggregation.tests.AggregateTestCase.test_avg_duration_field) ... ok 317s test_backwards_m2m_annotate (aggregation.tests.AggregateTestCase.test_backwards_m2m_annotate) ... ok 317s test_coalesced_empty_result_set (aggregation.tests.AggregateTestCase.test_coalesced_empty_result_set) ... ok 317s test_combine_different_types (aggregation.tests.AggregateTestCase.test_combine_different_types) ... ok 317s test_complex_aggregations_require_kwarg (aggregation.tests.AggregateTestCase.test_complex_aggregations_require_kwarg) ... ok 317s test_complex_values_aggregation (aggregation.tests.AggregateTestCase.test_complex_values_aggregation) ... ok 317s test_count (aggregation.tests.AggregateTestCase.test_count) ... ok 317s test_count_distinct_expression (aggregation.tests.AggregateTestCase.test_count_distinct_expression) ... ok 317s test_count_star (aggregation.tests.AggregateTestCase.test_count_star) ... ok 317s test_dates_with_aggregation (aggregation.tests.AggregateTestCase.test_dates_with_aggregation) 317s .dates() returns a distinct set of dates when applied to a ... ok 317s test_decimal_max_digits_has_no_effect (aggregation.tests.AggregateTestCase.test_decimal_max_digits_has_no_effect) ... ok 317s test_distinct_on_aggregate (aggregation.tests.AggregateTestCase.test_distinct_on_aggregate) ... ok 317s test_empty_aggregate (aggregation.tests.AggregateTestCase.test_empty_aggregate) ... ok 317s test_empty_result_optimization (aggregation.tests.AggregateTestCase.test_empty_result_optimization) ... ok 317s test_even_more_aggregate (aggregation.tests.AggregateTestCase.test_even_more_aggregate) ... ok 317s test_exists_extra_where_with_aggregate (aggregation.tests.AggregateTestCase.test_exists_extra_where_with_aggregate) ... ok 317s test_exists_none_with_aggregate (aggregation.tests.AggregateTestCase.test_exists_none_with_aggregate) ... ok 317s test_expression_on_aggregation (aggregation.tests.AggregateTestCase.test_expression_on_aggregation) ... ok 317s test_filter_aggregate (aggregation.tests.AggregateTestCase.test_filter_aggregate) ... ok 317s test_filter_in_subquery_or_aggregation (aggregation.tests.AggregateTestCase.test_filter_in_subquery_or_aggregation) 317s Filtering against an aggregate requires the usage of the HAVING clause. ... ok 317s test_filtering (aggregation.tests.AggregateTestCase.test_filtering) ... ok 317s test_fkey_aggregate (aggregation.tests.AggregateTestCase.test_fkey_aggregate) ... ok 317s test_group_by_exists_annotation (aggregation.tests.AggregateTestCase.test_group_by_exists_annotation) 317s Exists annotations are included in the GROUP BY if they are ... ok 317s test_group_by_nested_expression_with_params (aggregation.tests.AggregateTestCase.test_group_by_nested_expression_with_params) ... ok 317s test_group_by_reference_subquery (aggregation.tests.AggregateTestCase.test_group_by_reference_subquery) ... ok 317s test_group_by_subquery_annotation (aggregation.tests.AggregateTestCase.test_group_by_subquery_annotation) 317s Subquery annotations are included in the GROUP BY if they are ... ok 317s test_grouped_annotation_in_group_by (aggregation.tests.AggregateTestCase.test_grouped_annotation_in_group_by) 317s An annotation included in values() before an aggregate should be ... ok 317s test_more_aggregation (aggregation.tests.AggregateTestCase.test_more_aggregation) ... ok 317s test_multi_arg_aggregate (aggregation.tests.AggregateTestCase.test_multi_arg_aggregate) ... ok 317s test_multiple_aggregate_references (aggregation.tests.AggregateTestCase.test_multiple_aggregate_references) ... ok 317s test_multiple_aggregates (aggregation.tests.AggregateTestCase.test_multiple_aggregates) ... ok 317s test_non_grouped_annotation_not_in_group_by (aggregation.tests.AggregateTestCase.test_non_grouped_annotation_not_in_group_by) 317s An annotation not included in values() before an aggregate should be ... ok 317s test_nonaggregate_aggregation_throws (aggregation.tests.AggregateTestCase.test_nonaggregate_aggregation_throws) ... ok 317s test_nonfield_annotation (aggregation.tests.AggregateTestCase.test_nonfield_annotation) ... ok 317s test_order_of_precedence (aggregation.tests.AggregateTestCase.test_order_of_precedence) ... ok 317s test_related_aggregate (aggregation.tests.AggregateTestCase.test_related_aggregate) ... ok 317s test_reverse_fkey_annotate (aggregation.tests.AggregateTestCase.test_reverse_fkey_annotate) ... ok 317s test_single_aggregate (aggregation.tests.AggregateTestCase.test_single_aggregate) ... ok 317s test_sum_distinct_aggregate (aggregation.tests.AggregateTestCase.test_sum_distinct_aggregate) 317s Sum on a distinct() QuerySet should aggregate only the distinct items. ... ok 317s test_sum_duration_field (aggregation.tests.AggregateTestCase.test_sum_duration_field) ... ok 317s test_ticket11881 (aggregation.tests.AggregateTestCase.test_ticket11881) 317s Subqueries do not needlessly contain ORDER BY, SELECT FOR UPDATE or ... ok 317s test_ticket12886 (aggregation.tests.AggregateTestCase.test_ticket12886) 317s Aggregation over sliced queryset works correctly. ... ok 317s test_ticket17424 (aggregation.tests.AggregateTestCase.test_ticket17424) 317s Doing exclude() on a foreign model after annotate() doesn't crash. ... ok 317s test_values_aggregation (aggregation.tests.AggregateTestCase.test_values_aggregation) ... ok 317s test_values_annotation_with_expression (aggregation.tests.AggregateTestCase.test_values_annotation_with_expression) ... ok 317s test_actions_inheritance (modeladmin.test_actions.AdminActionsTests.test_actions_inheritance) ... ok 317s test_actions_replace_global_action (modeladmin.test_actions.AdminActionsTests.test_actions_replace_global_action) ... ok 317s test_get_actions_respects_permissions (modeladmin.test_actions.AdminActionsTests.test_get_actions_respects_permissions) ... ok 317s test_global_actions_description (modeladmin.test_actions.AdminActionsTests.test_global_actions_description) ... ok 318s test_custom_form_meta_exclude (modeladmin.tests.ModelAdminTests.test_custom_form_meta_exclude) 318s The custom ModelForm's `Meta.exclude` is overridden if ... ok 318s test_custom_form_meta_exclude_with_readonly (modeladmin.tests.ModelAdminTests.test_custom_form_meta_exclude_with_readonly) 318s The custom ModelForm's `Meta.exclude` is respected when used in ... ok 318s test_custom_form_validation (modeladmin.tests.ModelAdminTests.test_custom_form_validation) ... ok 318s test_custom_formfield_override_readonly (modeladmin.tests.ModelAdminTests.test_custom_formfield_override_readonly) ... ok 318s test_default_attributes (modeladmin.tests.ModelAdminTests.test_default_attributes) ... ok 318s test_default_fields (modeladmin.tests.ModelAdminTests.test_default_fields) ... ok 318s test_default_fieldsets (modeladmin.tests.ModelAdminTests.test_default_fieldsets) ... ok 318s test_default_foreign_key_widget (modeladmin.tests.ModelAdminTests.test_default_foreign_key_widget) ... ok 318s test_field_arguments (modeladmin.tests.ModelAdminTests.test_field_arguments) ... ok 318s test_field_arguments_restricted_on_form (modeladmin.tests.ModelAdminTests.test_field_arguments_restricted_on_form) ... ok 318s test_foreign_key_as_radio_field (modeladmin.tests.ModelAdminTests.test_foreign_key_as_radio_field) ... ok 318s test_form_exclude_kwarg_override (modeladmin.tests.ModelAdminTests.test_form_exclude_kwarg_override) 318s The `exclude` kwarg passed to `ModelAdmin.get_form()` overrides all ... ok 318s test_formset_exclude_kwarg_override (modeladmin.tests.ModelAdminTests.test_formset_exclude_kwarg_override) 318s The `exclude` kwarg passed to `InlineModelAdmin.get_formset()` ... ok 318s test_formset_overriding_get_exclude_with_form_exclude (modeladmin.tests.ModelAdminTests.test_formset_overriding_get_exclude_with_form_exclude) ... ok 318s test_formset_overriding_get_exclude_with_form_fields (modeladmin.tests.ModelAdminTests.test_formset_overriding_get_exclude_with_form_fields) ... ok 318s test_get_autocomplete_fields (modeladmin.tests.ModelAdminTests.test_get_autocomplete_fields) ... ok 318s test_get_deleted_objects (modeladmin.tests.ModelAdminTests.test_get_deleted_objects) ... ok 318s test_get_deleted_objects_with_custom_has_delete_permission (modeladmin.tests.ModelAdminTests.test_get_deleted_objects_with_custom_has_delete_permission) 318s ModelAdmin.get_deleted_objects() uses ModelAdmin.has_delete_permission() ... ok 318s test_get_exclude_overrides_exclude (modeladmin.tests.ModelAdminTests.test_get_exclude_overrides_exclude) ... ok 318s test_get_exclude_takes_obj (modeladmin.tests.ModelAdminTests.test_get_exclude_takes_obj) ... ok 318s test_get_fieldsets (modeladmin.tests.ModelAdminTests.test_get_fieldsets) ... ok 318s test_log_actions (modeladmin.tests.ModelAdminTests.test_log_actions) ... ok 318s test_lookup_allowed_allows_nonexistent_lookup (modeladmin.tests.ModelAdminTests.test_lookup_allowed_allows_nonexistent_lookup) 318s A lookup_allowed allows a parameter whose field lookup doesn't exist. ... ok 318s test_lookup_allowed_onetoone (modeladmin.tests.ModelAdminTests.test_lookup_allowed_onetoone) ... ok 318s test_modeladmin_repr (modeladmin.tests.ModelAdminTests.test_modeladmin_repr) ... ok 318s test_modeladmin_str (modeladmin.tests.ModelAdminTests.test_modeladmin_str) ... ok 318s test_overriding_get_exclude (modeladmin.tests.ModelAdminTests.test_overriding_get_exclude) ... ok 318s test_queryset_override (modeladmin.tests.ModelAdminTests.test_queryset_override) ... ok 318s test_raw_id_fields_widget_override (modeladmin.tests.ModelAdminTests.test_raw_id_fields_widget_override) 318s The autocomplete_fields, raw_id_fields, and radio_fields widgets may ... ok 318s test_regression_for_ticket_15820 (modeladmin.tests.ModelAdminTests.test_regression_for_ticket_15820) 318s `obj` is passed from `InlineModelAdmin.get_fieldsets()` to ... ok 318s test_gt (lookup.test_decimalfield.DecimalFieldLookupTests.test_gt) ... ok 318s test_gte (lookup.test_decimalfield.DecimalFieldLookupTests.test_gte) ... ok 318s test_lt (lookup.test_decimalfield.DecimalFieldLookupTests.test_lt) ... ok 318s test_lte (lookup.test_decimalfield.DecimalFieldLookupTests.test_lte) ... ok 318s test_hour_lookups (lookup.test_timefield.TimeFieldLookupTests.test_hour_lookups) ... ok 318s test_minute_lookups (lookup.test_timefield.TimeFieldLookupTests.test_minute_lookups) ... ok 318s test_second_lookups (lookup.test_timefield.TimeFieldLookupTests.test_second_lookups) ... ok 318s test_aggregate_combined_lookup (lookup.tests.LookupQueryingTests.test_aggregate_combined_lookup) ... ok 318s test_alias (lookup.tests.LookupQueryingTests.test_alias) ... ok 318s test_annotate (lookup.tests.LookupQueryingTests.test_annotate) ... ok 318s test_annotate_field_greater_than_field (lookup.tests.LookupQueryingTests.test_annotate_field_greater_than_field) ... ok 318s test_annotate_field_greater_than_literal (lookup.tests.LookupQueryingTests.test_annotate_field_greater_than_literal) ... ok 318s test_annotate_field_greater_than_value (lookup.tests.LookupQueryingTests.test_annotate_field_greater_than_value) ... ok 318s test_annotate_greater_than_or_equal (lookup.tests.LookupQueryingTests.test_annotate_greater_than_or_equal) ... ok 318s test_annotate_greater_than_or_equal_float (lookup.tests.LookupQueryingTests.test_annotate_greater_than_or_equal_float) ... ok 318s test_annotate_less_than_float (lookup.tests.LookupQueryingTests.test_annotate_less_than_float) ... ok 318s test_annotate_literal_greater_than_field (lookup.tests.LookupQueryingTests.test_annotate_literal_greater_than_field) ... ok 318s test_annotate_value_greater_than_value (lookup.tests.LookupQueryingTests.test_annotate_value_greater_than_value) ... ok 318s test_combined_annotated_lookups_in_filter (lookup.tests.LookupQueryingTests.test_combined_annotated_lookups_in_filter) ... ok 318s test_combined_annotated_lookups_in_filter_false (lookup.tests.LookupQueryingTests.test_combined_annotated_lookups_in_filter_false) ... ok 318s test_combined_lookups (lookup.tests.LookupQueryingTests.test_combined_lookups) ... ok 318s test_combined_lookups_in_filter (lookup.tests.LookupQueryingTests.test_combined_lookups_in_filter) ... ok 318s test_conditional_expression (lookup.tests.LookupQueryingTests.test_conditional_expression) ... ok 318s test_filter_exists_lhs (lookup.tests.LookupQueryingTests.test_filter_exists_lhs) ... ok 318s test_filter_lookup_lhs (lookup.tests.LookupQueryingTests.test_filter_lookup_lhs) ... ok 318s test_filter_subquery_lhs (lookup.tests.LookupQueryingTests.test_filter_subquery_lhs) ... ok 318s test_filter_wrapped_lookup_lhs (lookup.tests.LookupQueryingTests.test_filter_wrapped_lookup_lhs) ... ok 318s test_isnull_lookup_in_filter (lookup.tests.LookupQueryingTests.test_isnull_lookup_in_filter) ... ok 318s test_lookup_in_filter (lookup.tests.LookupQueryingTests.test_lookup_in_filter) ... ok 318s test_lookup_in_order_by (lookup.tests.LookupQueryingTests.test_lookup_in_order_by) ... ok 319s test_chain_date_time_lookups (lookup.tests.LookupTests.test_chain_date_time_lookups) ... ok 319s test_count (lookup.tests.LookupTests.test_count) ... ok 319s test_custom_field_none_rhs (lookup.tests.LookupTests.test_custom_field_none_rhs) 319s __exact=value is transformed to __isnull=True if Field.get_prep_value() ... ok 319s test_custom_lookup_none_rhs (lookup.tests.LookupTests.test_custom_lookup_none_rhs) 319s Lookup.can_use_none_as_rhs=True allows None as a lookup value. ... ok 319s test_error_messages (lookup.tests.LookupTests.test_error_messages) ... ok 319s test_escaping (lookup.tests.LookupTests.test_escaping) ... ok 319s test_exact_booleanfield (lookup.tests.LookupTests.test_exact_booleanfield) ... skipped 'MySQL-specific workaround.' 319s test_exact_booleanfield_annotation (lookup.tests.LookupTests.test_exact_booleanfield_annotation) ... skipped 'MySQL-specific workaround.' 319s test_exact_exists (lookup.tests.LookupTests.test_exact_exists) ... ok 319s test_exact_none_transform (lookup.tests.LookupTests.test_exact_none_transform) 319s Transforms are used for __exact=None. ... ok 319s test_exact_query_rhs_with_selected_columns (lookup.tests.LookupTests.test_exact_query_rhs_with_selected_columns) ... ok 319s test_exact_sliced_queryset_limit_one (lookup.tests.LookupTests.test_exact_sliced_queryset_limit_one) ... ok 319s test_exact_sliced_queryset_limit_one_offset (lookup.tests.LookupTests.test_exact_sliced_queryset_limit_one_offset) ... ok 319s test_exact_sliced_queryset_not_limited_to_one (lookup.tests.LookupTests.test_exact_sliced_queryset_not_limited_to_one) ... ok 319s test_exclude (lookup.tests.LookupTests.test_exclude) ... ok 319s test_exists (lookup.tests.LookupTests.test_exists) ... ok 319s test_filter_by_reverse_related_field_transform (lookup.tests.LookupTests.test_filter_by_reverse_related_field_transform) ... ok 319s test_get_next_previous_by (lookup.tests.LookupTests.test_get_next_previous_by) ... ok 319s test_in (lookup.tests.LookupTests.test_in) ... ok 319s test_in_bulk (lookup.tests.LookupTests.test_in_bulk) ... ok 319s test_in_bulk_distinct_field (lookup.tests.LookupTests.test_in_bulk_distinct_field) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 319s test_in_bulk_lots_of_ids (lookup.tests.LookupTests.test_in_bulk_lots_of_ids) ... ok 319s test_in_bulk_meta_constraint (lookup.tests.LookupTests.test_in_bulk_meta_constraint) ... ok 319s test_in_bulk_multiple_distinct_field (lookup.tests.LookupTests.test_in_bulk_multiple_distinct_field) ... skipped "Database doesn't support feature(s): can_distinct_on_fields" 319s test_in_bulk_non_unique_field (lookup.tests.LookupTests.test_in_bulk_non_unique_field) ... ok 319s test_in_bulk_non_unique_meta_constaint (lookup.tests.LookupTests.test_in_bulk_non_unique_meta_constaint) ... ok 319s test_in_bulk_sliced_queryset (lookup.tests.LookupTests.test_in_bulk_sliced_queryset) ... ok 319s test_in_bulk_with_field (lookup.tests.LookupTests.test_in_bulk_with_field) ... ok 319s test_in_different_database (lookup.tests.LookupTests.test_in_different_database) ... ok 319s test_in_empty_list (lookup.tests.LookupTests.test_in_empty_list) ... ok 319s test_in_ignore_none (lookup.tests.LookupTests.test_in_ignore_none) ... ok 319s test_in_ignore_none_with_unhashable_items (lookup.tests.LookupTests.test_in_ignore_none_with_unhashable_items) ... ok 319s test_in_ignore_solo_none (lookup.tests.LookupTests.test_in_ignore_solo_none) ... ok 319s test_in_keeps_value_ordering (lookup.tests.LookupTests.test_in_keeps_value_ordering) ... ok 319s test_isnull_non_boolean_value (lookup.tests.LookupTests.test_isnull_non_boolean_value) ... ok 319s test_isnull_textfield (lookup.tests.LookupTests.test_isnull_textfield) ... ok 319s test_iterator (lookup.tests.LookupTests.test_iterator) ... ok 319s test_lookup_collision (lookup.tests.LookupTests.test_lookup_collision) 319s Genuine field names don't collide with built-in lookup types ... ok 319s test_lookup_date_as_str (lookup.tests.LookupTests.test_lookup_date_as_str) ... ok 319s test_lookup_int_as_str (lookup.tests.LookupTests.test_lookup_int_as_str) ... ok 319s test_lookup_rhs (lookup.tests.LookupTests.test_lookup_rhs) ... ok 319s test_nested_outerref_lhs (lookup.tests.LookupTests.test_nested_outerref_lhs) ... ok 319s test_none (lookup.tests.LookupTests.test_none) ... ok 319s test_nonfield_lookups (lookup.tests.LookupTests.test_nonfield_lookups) 319s A lookup query containing non-fields raises the proper exception. ... ok 319s test_pattern_lookups_with_substr (lookup.tests.LookupTests.test_pattern_lookups_with_substr) ... ok 319s test_regex (lookup.tests.LookupTests.test_regex) ... ok 319s test_regex_backreferencing (lookup.tests.LookupTests.test_regex_backreferencing) ... ok 319s test_regex_non_ascii (lookup.tests.LookupTests.test_regex_non_ascii) 319s A regex lookup does not trip on non-ASCII characters. ... ok 319s test_regex_non_string (lookup.tests.LookupTests.test_regex_non_string) 319s A regex lookup does not fail on non-string fields ... ok 319s test_regex_null (lookup.tests.LookupTests.test_regex_null) 319s A regex lookup does not fail on null/None values ... ok 319s test_relation_nested_lookup_error (lookup.tests.LookupTests.test_relation_nested_lookup_error) ... ok 319s test_textfield_exact_null (lookup.tests.LookupTests.test_textfield_exact_null) ... ok 319s test_unsupported_lookup_reverse_foreign_key (lookup.tests.LookupTests.test_unsupported_lookup_reverse_foreign_key) ... ok 319s test_unsupported_lookup_reverse_foreign_key_custom_lookups (lookup.tests.LookupTests.test_unsupported_lookup_reverse_foreign_key_custom_lookups) ... ok 319s test_unsupported_lookups (lookup.tests.LookupTests.test_unsupported_lookups) ... ok 319s test_unsupported_lookups_custom_lookups (lookup.tests.LookupTests.test_unsupported_lookups_custom_lookups) ... ok 319s test_values (lookup.tests.LookupTests.test_values) ... ok 319s test_values_list (lookup.tests.LookupTests.test_values_list) ... ok 320s test_default_related_name (model_options.test_default_related_name.DefaultRelatedNameTests.test_default_related_name) ... ok 320s test_default_related_name_in_queryset_lookup (model_options.test_default_related_name.DefaultRelatedNameTests.test_default_related_name_in_queryset_lookup) ... ok 320s test_inheritance (model_options.test_default_related_name.DefaultRelatedNameTests.test_inheritance) ... ok 320s test_inheritance_with_overridden_default_related_name (model_options.test_default_related_name.DefaultRelatedNameTests.test_inheritance_with_overridden_default_related_name) ... ok 320s test_model_name_not_available_in_queryset_lookup (model_options.test_default_related_name.DefaultRelatedNameTests.test_model_name_not_available_in_queryset_lookup) ... ok 320s test_no_default_related_name (model_options.test_default_related_name.DefaultRelatedNameTests.test_no_default_related_name) ... ok 320s test_related_name_overrides_default_related_name (model_options.test_default_related_name.DefaultRelatedNameTests.test_related_name_overrides_default_related_name) ... ok 320s test_in_lookup_query_evaluation (queryset_pickle.tests.InLookupTests.test_in_lookup_query_evaluation) ... ok 320s test_in_lookup_queryset_evaluation (queryset_pickle.tests.InLookupTests.test_in_lookup_queryset_evaluation) 320s Neither pickling nor unpickling a QuerySet.query with an __in=inner_qs ... ok 320s test_annotation_values (queryset_pickle.tests.PickleabilityTestCase.test_annotation_values) ... ok 320s test_annotation_values_list (queryset_pickle.tests.PickleabilityTestCase.test_annotation_values_list) ... ok 320s test_annotation_with_callable_default (queryset_pickle.tests.PickleabilityTestCase.test_annotation_with_callable_default) ... ok 320s test_binaryfield (queryset_pickle.tests.PickleabilityTestCase.test_binaryfield) ... ok 320s test_datetime_callable_default_all (queryset_pickle.tests.PickleabilityTestCase.test_datetime_callable_default_all) ... ok 320s test_datetime_callable_default_filter (queryset_pickle.tests.PickleabilityTestCase.test_datetime_callable_default_filter) ... ok 320s test_doesnotexist_class (queryset_pickle.tests.PickleabilityTestCase.test_doesnotexist_class) ... ok 320s test_doesnotexist_exception (queryset_pickle.tests.PickleabilityTestCase.test_doesnotexist_exception) ... ok 320s test_filter_deferred (queryset_pickle.tests.PickleabilityTestCase.test_filter_deferred) ... ok 320s test_filter_reverse_fk (queryset_pickle.tests.PickleabilityTestCase.test_filter_reverse_fk) ... ok 320s test_forward_relatedobjectdoesnotexist_class (queryset_pickle.tests.PickleabilityTestCase.test_forward_relatedobjectdoesnotexist_class) ... ok 320s test_manager_pickle (queryset_pickle.tests.PickleabilityTestCase.test_manager_pickle) ... ok 320s test_missing_django_version_unpickling (queryset_pickle.tests.PickleabilityTestCase.test_missing_django_version_unpickling) 320s #21430 -- Verifies a warning is raised for querysets that are ... ok 320s test_model_pickle (queryset_pickle.tests.PickleabilityTestCase.test_model_pickle) 320s A model not defined on module level is picklable. ... ok 320s test_model_pickle_dynamic (queryset_pickle.tests.PickleabilityTestCase.test_model_pickle_dynamic) ... ok 320s test_model_pickle_m2m (queryset_pickle.tests.PickleabilityTestCase.test_model_pickle_m2m) 320s Test intentionally the automatically created through model. ... ok 320s test_multipleobjectsreturned_class (queryset_pickle.tests.PickleabilityTestCase.test_multipleobjectsreturned_class) ... ok 320s test_order_by_model_with_abstract_inheritance_and_meta_ordering (queryset_pickle.tests.PickleabilityTestCase.test_order_by_model_with_abstract_inheritance_and_meta_ordering) ... ok 320s test_pickle_boolean_expression_in_Q__queryset (queryset_pickle.tests.PickleabilityTestCase.test_pickle_boolean_expression_in_Q__queryset) ... ok 320s test_pickle_exists_kwargs_queryset_not_evaluated (queryset_pickle.tests.PickleabilityTestCase.test_pickle_exists_kwargs_queryset_not_evaluated) ... ok 320s test_pickle_exists_queryset_not_evaluated (queryset_pickle.tests.PickleabilityTestCase.test_pickle_exists_queryset_not_evaluated) ... ok 320s test_pickle_exists_queryset_still_usable (queryset_pickle.tests.PickleabilityTestCase.test_pickle_exists_queryset_still_usable) ... ok 320s test_pickle_filteredrelation (queryset_pickle.tests.PickleabilityTestCase.test_pickle_filteredrelation) ... ok 320s test_pickle_filteredrelation_m2m (queryset_pickle.tests.PickleabilityTestCase.test_pickle_filteredrelation_m2m) ... ok 320s test_pickle_prefetch_queryset_not_evaluated (queryset_pickle.tests.PickleabilityTestCase.test_pickle_prefetch_queryset_not_evaluated) ... ok 320s test_pickle_prefetch_queryset_still_usable (queryset_pickle.tests.PickleabilityTestCase.test_pickle_prefetch_queryset_still_usable) ... ok 320s test_pickle_prefetch_queryset_usable_outside_of_prefetch (queryset_pickle.tests.PickleabilityTestCase.test_pickle_prefetch_queryset_usable_outside_of_prefetch) ... ok 320s test_pickle_prefetch_related_idempotence (queryset_pickle.tests.PickleabilityTestCase.test_pickle_prefetch_related_idempotence) ... ok 320s test_pickle_prefetch_related_with_m2m_and_objects_deletion (queryset_pickle.tests.PickleabilityTestCase.test_pickle_prefetch_related_with_m2m_and_objects_deletion) 320s #24831 -- Cached properties on ManyToOneRel created in QuerySet.delete() ... ok 320s test_pickle_subquery_queryset_not_evaluated (queryset_pickle.tests.PickleabilityTestCase.test_pickle_subquery_queryset_not_evaluated) ... ok 320s test_related_field (queryset_pickle.tests.PickleabilityTestCase.test_related_field) ... ok 320s test_reverse_one_to_one_relatedobjectdoesnotexist_class (queryset_pickle.tests.PickleabilityTestCase.test_reverse_one_to_one_relatedobjectdoesnotexist_class) ... ok 320s test_specialized_queryset (queryset_pickle.tests.PickleabilityTestCase.test_specialized_queryset) ... ok 320s test_standalone_method_as_default (queryset_pickle.tests.PickleabilityTestCase.test_standalone_method_as_default) ... ok 320s test_staticmethod_as_default (queryset_pickle.tests.PickleabilityTestCase.test_staticmethod_as_default) ... ok 320s test_string_as_default (queryset_pickle.tests.PickleabilityTestCase.test_string_as_default) ... ok 320s test_unsupported_unpickle (queryset_pickle.tests.PickleabilityTestCase.test_unsupported_unpickle) 320s #21430 -- Verifies a warning is raised for querysets that are ... ok 321s test_m2m_and_m2o (m2m_and_m2o.tests.RelatedObjectTests.test_m2m_and_m2o) ... ok 321s test_related_objects_have_name_attribute (m2m_and_m2o.tests.RelatedObjectTests.test_related_objects_have_name_attribute) ... ok 321s test_m2m_with_unicode_reference (m2m_and_m2o.tests.RelatedObjectUnicodeTests.test_m2m_with_unicode_reference) 321s Regression test for #6045: references to other models can be ... ok 321s test_action_flag_choices (admin_utils.test_logentry.LogEntryTests.test_action_flag_choices) ... ok 321s test_log_action (admin_utils.test_logentry.LogEntryTests.test_log_action) ... ok 321s test_logentry_change_message (admin_utils.test_logentry.LogEntryTests.test_logentry_change_message) 321s LogEntry.change_message is stored as a dumped JSON structure to be able ... ok 321s test_logentry_change_message_formsets (admin_utils.test_logentry.LogEntryTests.test_logentry_change_message_formsets) 321s All messages for changed formsets are logged in a change message. ... ok 321s test_logentry_change_message_localized_datetime_input (admin_utils.test_logentry.LogEntryTests.test_logentry_change_message_localized_datetime_input) 321s Localized date/time inputs shouldn't affect changed form data detection. ... ok 321s test_logentry_change_message_not_json (admin_utils.test_logentry.LogEntryTests.test_logentry_change_message_not_json) 321s LogEntry.change_message was a string before Django 1.10. ... ok 321s test_logentry_get_admin_url (admin_utils.test_logentry.LogEntryTests.test_logentry_get_admin_url) 321s LogEntry.get_admin_url returns a URL to edit the entry's object or ... ok 321s test_logentry_get_edited_object (admin_utils.test_logentry.LogEntryTests.test_logentry_get_edited_object) 321s LogEntry.get_edited_object() returns the edited object of a LogEntry ... ok 321s test_logentry_repr (admin_utils.test_logentry.LogEntryTests.test_logentry_repr) ... ok 321s test_logentry_save (admin_utils.test_logentry.LogEntryTests.test_logentry_save) 321s LogEntry.action_time is a timestamp of the date when the entry was ... ok 321s test_logentry_unicode (admin_utils.test_logentry.LogEntryTests.test_logentry_unicode) ... ok 321s test_proxy_model_content_type_is_used_for_log_entries (admin_utils.test_logentry.LogEntryTests.test_proxy_model_content_type_is_used_for_log_entries) 321s Log entries for proxy models should have the proxy model's contenttype ... ok 321s test_recentactions_without_content_type (admin_utils.test_logentry.LogEntryTests.test_recentactions_without_content_type) 321s If a LogEntry is missing content_type it will not display it in span ... ok 321s test_cyclic (admin_utils.tests.NestedObjectsTests.test_cyclic) ... ok 321s test_non_added_parent (admin_utils.tests.NestedObjectsTests.test_non_added_parent) ... ok 321s test_on_delete_do_nothing (admin_utils.tests.NestedObjectsTests.test_on_delete_do_nothing) 321s The nested collector doesn't query for DO_NOTHING objects. ... ok 321s test_queries (admin_utils.tests.NestedObjectsTests.test_queries) ... ok 321s test_relation_on_abstract (admin_utils.tests.NestedObjectsTests.test_relation_on_abstract) 321s NestedObjects.collect() doesn't trip (AttributeError) on the special ... ok 321s test_siblings (admin_utils.tests.NestedObjectsTests.test_siblings) ... ok 321s test_unrelated_roots (admin_utils.tests.NestedObjectsTests.test_unrelated_roots) ... ok 322s test_full_clean_with_check_constraints (validation.test_constraints.PerformConstraintChecksTest.test_full_clean_with_check_constraints) ... ok 322s test_full_clean_with_check_constraints_disabled (validation.test_constraints.PerformConstraintChecksTest.test_full_clean_with_check_constraints_disabled) ... ok 322s test_full_clean_with_check_constraints_on_child_model (validation.test_constraints.PerformConstraintChecksTest.test_full_clean_with_check_constraints_on_child_model) ... ok 322s test_full_clean_with_partial_unique_constraints (validation.test_constraints.PerformConstraintChecksTest.test_full_clean_with_partial_unique_constraints) ... ok 322s test_full_clean_with_partial_unique_constraints_disabled (validation.test_constraints.PerformConstraintChecksTest.test_full_clean_with_partial_unique_constraints_disabled) ... ok 322s test_full_clean_with_unique_constraints (validation.test_constraints.PerformConstraintChecksTest.test_full_clean_with_unique_constraints) ... ok 322s test_full_clean_with_unique_constraints_disabled (validation.test_constraints.PerformConstraintChecksTest.test_full_clean_with_unique_constraints_disabled) ... ok 322s test_primary_key_unique_check_not_performed_when_adding_and_pk_not_specified (validation.test_unique.PerformUniqueChecksTest.test_primary_key_unique_check_not_performed_when_adding_and_pk_not_specified) ... ok 322s test_primary_key_unique_check_not_performed_when_not_adding (validation.test_unique.PerformUniqueChecksTest.test_primary_key_unique_check_not_performed_when_not_adding) ... ok 322s test_primary_key_unique_check_performed_when_adding_and_pk_specified (validation.test_unique.PerformUniqueChecksTest.test_primary_key_unique_check_performed_when_adding_and_pk_specified) ... ok 322s test_unique_errors (validation.test_unique.PerformUniqueChecksTest.test_unique_errors) ... ok 322s test_unique_for_date (validation.test_unique.PerformUniqueChecksTest.test_unique_for_date) ... ok 322s test_unique_for_date_with_nullable_date (validation.test_unique.PerformUniqueChecksTest.test_unique_for_date_with_nullable_date) 322s unique_for_date/year/month checks shouldn't trigger when the ... ok 322s test_FK_validates_using_base_manager (validation.tests.BaseModelValidationTests.test_FK_validates_using_base_manager) ... ok 322s test_correct_FK_value_validates (validation.tests.BaseModelValidationTests.test_correct_FK_value_validates) ... ok 322s test_correct_email_value_passes (validation.tests.BaseModelValidationTests.test_correct_email_value_passes) ... ok 322s test_custom_validate_method (validation.tests.BaseModelValidationTests.test_custom_validate_method) ... ok 322s test_full_clean_does_not_mutate_exclude (validation.tests.BaseModelValidationTests.test_full_clean_does_not_mutate_exclude) ... ok 322s test_limited_FK_raises_error (validation.tests.BaseModelValidationTests.test_limited_FK_raises_error) ... ok 322s test_malformed_slug_raises_error (validation.tests.BaseModelValidationTests.test_malformed_slug_raises_error) ... ok 322s test_missing_required_field_raises_error (validation.tests.BaseModelValidationTests.test_missing_required_field_raises_error) ... ok 322s test_text_greater_that_charfields_max_length_raises_errors (validation.tests.BaseModelValidationTests.test_text_greater_that_charfields_max_length_raises_errors) ... ok 322s test_with_correct_value_model_validates (validation.tests.BaseModelValidationTests.test_with_correct_value_model_validates) ... ok 322s test_wrong_FK_value_raises_error (validation.tests.BaseModelValidationTests.test_wrong_FK_value_raises_error) ... ok 322s test_wrong_email_value_raises_error (validation.tests.BaseModelValidationTests.test_wrong_email_value_raises_error) ... ok 322s test_wrong_url_value_raises_error (validation.tests.BaseModelValidationTests.test_wrong_url_value_raises_error) ... ok 322s test_correct_generic_ip_passes (validation.tests.GenericIPAddressFieldTests.test_correct_generic_ip_passes) ... ok 322s test_correct_v4_ip_passes (validation.tests.GenericIPAddressFieldTests.test_correct_v4_ip_passes) ... ok 322s test_correct_v6_ip_passes (validation.tests.GenericIPAddressFieldTests.test_correct_v6_ip_passes) ... ok 322s test_empty_generic_ip_passes (validation.tests.GenericIPAddressFieldTests.test_empty_generic_ip_passes) ... ok 322s test_invalid_generic_ip_raises_error (validation.tests.GenericIPAddressFieldTests.test_invalid_generic_ip_raises_error) ... ok 322s test_invalid_v4_ip_raises_error (validation.tests.GenericIPAddressFieldTests.test_invalid_v4_ip_raises_error) ... ok 322s test_invalid_v6_ip_raises_error (validation.tests.GenericIPAddressFieldTests.test_invalid_v6_ip_raises_error) ... ok 322s test_v4_unpack_uniqueness_detection (validation.tests.GenericIPAddressFieldTests.test_v4_unpack_uniqueness_detection) ... ok 322s test_v6_uniqueness_detection (validation.tests.GenericIPAddressFieldTests.test_v6_uniqueness_detection) ... ok 322s test_partial_validation (validation.tests.ModelFormsTests.test_partial_validation) ... ok 322s test_validation_with_empty_blank_field (validation.tests.ModelFormsTests.test_validation_with_empty_blank_field) ... ok 322s test_validation_with_invalid_blank_field (validation.tests.ModelFormsTests.test_validation_with_invalid_blank_field) ... ok 322s test_database_checks_called (check_framework.test_database.DatabaseCheckTests.test_database_checks_called) ... ok 322s test_mysql_strict_mode (check_framework.test_database.DatabaseCheckTests.test_mysql_strict_mode) ... skipped 'Test only for MySQL' 323s test_collision_abstract_model (check_framework.test_model_checks.ConstraintNameTests.test_collision_abstract_model) ... ok 323s test_collision_across_apps (check_framework.test_model_checks.ConstraintNameTests.test_collision_across_apps) ... ok 323s test_collision_in_different_models (check_framework.test_model_checks.ConstraintNameTests.test_collision_in_different_models) ... ok 323s test_collision_in_same_model (check_framework.test_model_checks.ConstraintNameTests.test_collision_in_same_model) ... ok 323s test_no_collision_abstract_model_interpolation (check_framework.test_model_checks.ConstraintNameTests.test_no_collision_abstract_model_interpolation) ... ok 323s test_no_collision_across_apps_interpolation (check_framework.test_model_checks.ConstraintNameTests.test_no_collision_across_apps_interpolation) ... ok 323s test_custom_max_lengths (max_lengths.tests.MaxLengthORMTests.test_custom_max_lengths) ... ok 323s test_combine_isnull (null_fk.tests.NullFkTests.test_combine_isnull) ... ok 323s test_null_fk (null_fk.tests.NullFkTests.test_null_fk) ... ok 323s test_access (deprecation.test_storages.DefaultStorageDeprecationTests.test_access) ... ok 323s test_access_warning (deprecation.test_storages.DefaultStorageDeprecationTests.test_access_warning) ... ok 323s test_default_file_storage (deprecation.test_storages.DefaultStorageDeprecationTests.test_default_file_storage) ... ok 323s test_override_settings_warning (deprecation.test_storages.DefaultStorageDeprecationTests.test_override_settings_warning) ... ok 323s test_settings_init (deprecation.test_storages.DefaultStorageDeprecationTests.test_settings_init) ... ok 323s test_settings_storages_init (deprecation.test_storages.DefaultStorageDeprecationTests.test_settings_storages_init) ... ok 323s test_storage (deprecation.test_storages.DefaultStorageDeprecationTests.test_storage) ... ok 323s test_use_both_error (deprecation.test_storages.DefaultStorageDeprecationTests.test_use_both_error) ... ok 323s test_access (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_access) ... ok 323s test_access_warning (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_access_warning) ... ok 323s test_override_settings_warning (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_override_settings_warning) ... ok 323s test_settings_init (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_settings_init) ... ok 323s test_settings_storages_init (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_settings_storages_init) ... ok 323s test_staticfiles_storage (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_staticfiles_storage) ... ok 323s test_storage (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_storage) ... ok 323s test_use_both_error (deprecation.test_storages.StaticfilesStorageDeprecationTests.test_use_both_error) ... ok 323s test_access (deprecation.test_use_l10n.DeprecationTests.test_access) ... ok 323s test_access_warning (deprecation.test_use_l10n.DeprecationTests.test_access_warning) ... ok 323s test_override_settings_warning (deprecation.test_use_l10n.DeprecationTests.test_override_settings_warning) ... ok 323s test_settings_init_warning (deprecation.test_use_l10n.DeprecationTests.test_settings_init_warning) ... ok 323s test_model_with_evaluate_method (model_regress.tests.EvaluateMethodTest.test_model_with_evaluate_method) 323s You can filter by objects that have an 'evaluate' attr ... ok 323s test_fields_cache_reset_on_copy (model_regress.tests.ModelFieldsCacheTest.test_fields_cache_reset_on_copy) ... ok 324s test_chained_fks (model_regress.tests.ModelTests.test_chained_fks) 324s Chained foreign keys with to_field produce incorrect query. ... ok 324s test_date_filter_null (model_regress.tests.ModelTests.test_date_filter_null) ... ok 324s test_date_lookup (model_regress.tests.ModelTests.test_date_lookup) ... ok 324s test_empty_choice (model_regress.tests.ModelTests.test_empty_choice) ... ok 324s test_get_next_prev_by_field (model_regress.tests.ModelTests.test_get_next_prev_by_field) ... ok 324s test_get_next_prev_by_field_unsaved (model_regress.tests.ModelTests.test_get_next_prev_by_field_unsaved) ... ok 324s test_long_textfield (model_regress.tests.ModelTests.test_long_textfield) ... ok 324s test_long_unicode_textfield (model_regress.tests.ModelTests.test_long_unicode_textfield) ... ok 324s test_metaclass_can_access_attribute_dict (model_regress.tests.ModelTests.test_metaclass_can_access_attribute_dict) 324s Model metaclasses have access to the class attribute dict in ... ok 324s test_model_init_too_many_args (model_regress.tests.ModelTests.test_model_init_too_many_args) ... ok 324s test_primary_key_foreign_key_types (model_regress.tests.ModelTests.test_primary_key_foreign_key_types) ... ok 324s test_related_gte_lookup (model_regress.tests.ModelTests.test_related_gte_lookup) 324s Regression test for #10153: foreign key __gte lookups. ... ok 324s test_related_lte_lookup (model_regress.tests.ModelTests.test_related_lte_lookup) 324s Regression test for #10153: foreign key __lte lookups. ... ok 324s test_sql_insert_compiler_return_id_attribute (model_regress.tests.ModelTests.test_sql_insert_compiler_return_id_attribute) 324s Regression test for #14019: SQLInsertCompiler.as_sql() failure ... ok 324s test_timezones (model_regress.tests.ModelTests.test_timezones) ... skipped "Database doesn't support feature(s): supports_timezones" 324s test_pk_validation (model_regress.tests.ModelValidationTest.test_pk_validation) ... ok 324s test_annotate (generic_relations_regress.tests.GenericRelationTests.test_annotate) ... ok 324s test_charlink_delete (generic_relations_regress.tests.GenericRelationTests.test_charlink_delete) ... ok 324s test_coerce_object_id_remote_field_cache_persistence (generic_relations_regress.tests.GenericRelationTests.test_coerce_object_id_remote_field_cache_persistence) ... ok 324s test_editable_generic_rel (generic_relations_regress.tests.GenericRelationTests.test_editable_generic_rel) ... ok 324s test_extra_join_condition (generic_relations_regress.tests.GenericRelationTests.test_extra_join_condition) ... ok 324s test_filter_on_related_proxy_model (generic_relations_regress.tests.GenericRelationTests.test_filter_on_related_proxy_model) ... ok 324s test_filter_targets_related_pk (generic_relations_regress.tests.GenericRelationTests.test_filter_targets_related_pk) ... ok 324s test_generic_relation_ordering (generic_relations_regress.tests.GenericRelationTests.test_generic_relation_ordering) 324s Ordering over a generic relation does not include extraneous ... ok 324s test_generic_reverse_relation_exclude_filter (generic_relations_regress.tests.GenericRelationTests.test_generic_reverse_relation_exclude_filter) ... ok 324s test_generic_reverse_relation_with_abc (generic_relations_regress.tests.GenericRelationTests.test_generic_reverse_relation_with_abc) 324s The reverse generic relation accessor (targets) is created if the ... ok 324s test_generic_reverse_relation_with_mti (generic_relations_regress.tests.GenericRelationTests.test_generic_reverse_relation_with_mti) 324s Filtering with a reverse generic relation, where the GenericRelation ... ok 324s test_gfk_to_model_with_empty_pk (generic_relations_regress.tests.GenericRelationTests.test_gfk_to_model_with_empty_pk) 324s Test related to #13085 ... ok 324s test_inherited_models_content_type (generic_relations_regress.tests.GenericRelationTests.test_inherited_models_content_type) 324s GenericRelations on inherited classes use the correct content type. ... ok 324s test_join_reuse (generic_relations_regress.tests.GenericRelationTests.test_join_reuse) ... ok 324s test_q_object_or (generic_relations_regress.tests.GenericRelationTests.test_q_object_or) 324s SQL query parameters for generic relations are properly ... ok 324s test_reverse_relation_pk (generic_relations_regress.tests.GenericRelationTests.test_reverse_relation_pk) 324s The correct column name is used for the primary key on the ... ok 324s test_target_model_bool_false (generic_relations_regress.tests.GenericRelationTests.test_target_model_bool_false) 324s Saving a model with a GenericForeignKey to a model instance whose ... ok 324s test_target_model_len_zero (generic_relations_regress.tests.GenericRelationTests.test_target_model_len_zero) 324s Saving a model with a GenericForeignKey to a model instance whose ... ok 324s test_textlink_delete (generic_relations_regress.tests.GenericRelationTests.test_textlink_delete) ... ok 324s test_ticket_20378 (generic_relations_regress.tests.GenericRelationTests.test_ticket_20378) ... ok 324s test_ticket_20564 (generic_relations_regress.tests.GenericRelationTests.test_ticket_20564) ... ok 324s test_ticket_20564_nullable_fk (generic_relations_regress.tests.GenericRelationTests.test_ticket_20564_nullable_fk) ... ok 324s test_ticket_22982 (generic_relations_regress.tests.GenericRelationTests.test_ticket_22982) ... ok 324s test_ticket_22998 (generic_relations_regress.tests.GenericRelationTests.test_ticket_22998) ... ok 324s test_empty_update_fields (update_only_fields.tests.UpdateOnlyFieldsTests.test_empty_update_fields) ... ok 324s test_num_queries_inheritance (update_only_fields.tests.UpdateOnlyFieldsTests.test_num_queries_inheritance) ... ok 324s test_select_related_only_interaction (update_only_fields.tests.UpdateOnlyFieldsTests.test_select_related_only_interaction) ... ok 324s test_update_fields_basic (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_basic) ... ok 324s test_update_fields_deferred (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_deferred) ... ok 324s test_update_fields_fk_defer (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_fk_defer) ... ok 324s test_update_fields_incorrect_params (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_incorrect_params) ... ok 324s test_update_fields_inheritance (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_inheritance) ... ok 324s test_update_fields_inheritance_defer (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_inheritance_defer) ... ok 324s test_update_fields_inheritance_with_proxy_model (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_inheritance_with_proxy_model) ... ok 324s test_update_fields_m2m (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_m2m) ... ok 324s test_update_fields_only_1 (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_only_1) ... ok 324s test_update_fields_only_2 (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_only_2) ... ok 324s test_update_fields_only_repeated (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_only_repeated) ... ok 324s test_update_fields_signals (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_fields_signals) ... ok 324s test_update_non_concrete_field (update_only_fields.tests.UpdateOnlyFieldsTests.test_update_non_concrete_field) ... ok 325s test_15776 (delete_regress.tests.DeleteCascadeTests.test_15776) ... ok 325s test_fk_to_m2m_through (delete_regress.tests.DeleteCascadeTests.test_fk_to_m2m_through) 325s If an M2M relationship has an explicitly-specified through model, and ... ok 325s test_generic_relation_cascade (delete_regress.tests.DeleteCascadeTests.test_generic_relation_cascade) 325s Django cascades deletes through generic-related objects to their ... ok 325s test_foreign_key_delete_nullifies_correct_columns (delete_regress.tests.DeleteTests.test_foreign_key_delete_nullifies_correct_columns) 325s With a model (Researcher) that has two foreign keys pointing to the ... ok 325s test_meta_ordered_delete (delete_regress.tests.DeleteTests.test_meta_ordered_delete) ... ok 325s test_self_reference_with_through_m2m_at_second_level (delete_regress.tests.DeleteTests.test_self_reference_with_through_m2m_at_second_level) ... ok 325s test_large_deletes (delete_regress.tests.LargeDeleteTests.test_large_deletes) 325s If the number of objects > chunk size, deletion still occurs. ... ok 325s test_19187_values (delete_regress.tests.ProxyDeleteTest.test_19187_values) ... ok 325s test_delete_concrete_parent (delete_regress.tests.ProxyDeleteTest.test_delete_concrete_parent) 325s Deleting an instance of a concrete model should also delete objects ... ok 325s test_delete_proxy (delete_regress.tests.ProxyDeleteTest.test_delete_proxy) 325s Deleting the *proxy* instance bubbles through to its non-proxy and ... ok 325s test_delete_proxy_of_proxy (delete_regress.tests.ProxyDeleteTest.test_delete_proxy_of_proxy) 325s Deleting a proxy-of-proxy instance should bubble through to its proxy ... ok 325s test_delete_proxy_pair (delete_regress.tests.ProxyDeleteTest.test_delete_proxy_pair) 325s If a pair of proxy models are linked by an FK from one concrete parent ... ok 325s test_set_querycount (delete_regress.tests.SetQueryCountTests.test_set_querycount) ... ok 325s test_ticket_19102_annotate (delete_regress.tests.Ticket19102Tests.test_ticket_19102_annotate) ... ok 325s test_ticket_19102_defer (delete_regress.tests.Ticket19102Tests.test_ticket_19102_defer) ... ok 325s test_ticket_19102_extra (delete_regress.tests.Ticket19102Tests.test_ticket_19102_extra) ... ok 325s test_ticket_19102_select_related (delete_regress.tests.Ticket19102Tests.test_ticket_19102_select_related) ... ok 325s test_boolean_type (datatypes.tests.DataTypesTestCase.test_boolean_type) ... ok 325s test_date_type (datatypes.tests.DataTypesTestCase.test_date_type) ... ok 325s test_datefield_auto_now_add (datatypes.tests.DataTypesTestCase.test_datefield_auto_now_add) 325s Regression test for #10970, auto_now_add for DateField should store ... ok 325s test_error_on_timezone (datatypes.tests.DataTypesTestCase.test_error_on_timezone) 325s Regression test for #8354: the MySQL and Oracle backends should raise ... ok 325s test_textfields_str (datatypes.tests.DataTypesTestCase.test_textfields_str) 325s TextField values returned from the database should be str. ... ok 325s test_time_field (datatypes.tests.DataTypesTestCase.test_time_field) ... ok 325s test_year_boundaries (datatypes.tests.DataTypesTestCase.test_year_boundaries) 325s Year boundary tests (ticket #3689) ... ok 325s test_multiple_context (test_client_regress.tests.AssertTemplateUsedTests.test_multiple_context) 325s Template assertions work when there are multiple contexts ... ok 325s test_no_context (test_client_regress.tests.AssertTemplateUsedTests.test_no_context) 325s Template usage assertions work then templates aren't in use ... ok 325s test_single_context (test_client_regress.tests.AssertTemplateUsedTests.test_single_context) 325s Template assertions work when there is a single context ... ok 325s test_template_rendered_multiple_times (test_client_regress.tests.AssertTemplateUsedTests.test_template_rendered_multiple_times) 325s Template assertions work when a template is rendered multiple times. ... ok 326s test_15368 (test_client_regress.tests.ContextTests.test_15368) ... ok 326s test_contextlist_get (test_client_regress.tests.ContextTests.test_contextlist_get) ... ok 326s test_contextlist_keys (test_client_regress.tests.ContextTests.test_contextlist_keys) ... ok 326s test_inherited_context (test_client_regress.tests.ContextTests.test_inherited_context) 326s Context variables can be retrieved from a list of contexts ... ok 326s test_nested_requests (test_client_regress.tests.ContextTests.test_nested_requests) 326s response.context is not lost when view call another view. ... ok 326s test_single_context (test_client_regress.tests.ContextTests.test_single_context) 326s Context variables can be retrieved from a single context ... ok 326s test_exception_cleared (test_client_regress.tests.ExceptionTests.test_exception_cleared) 326s #5836 - A stale user exception isn't re-raised by the test client. ... ok 326s test_login_different_client (test_client_regress.tests.LoginTests.test_login_different_client) 326s Using a different test client doesn't violate authentication ... ok 326s test_login (test_client_regress.tests.SessionEngineTests.test_login) 326s A session engine that modifies the session key can be used to log in ... ok 326s test_login_with_user (test_client_regress.tests.SessionTests.test_login_with_user) 326s Login should send user_logged_in signal on successful login. ... ok 326s test_login_without_signal (test_client_regress.tests.SessionTests.test_login_without_signal) 326s Login shouldn't send signal if user wasn't logged in ... ok 326s test_logout (test_client_regress.tests.SessionTests.test_logout) 326s Logout should work whether the user is logged in or not (#9978). ... ok 326s test_logout_with_custom_auth_backend (test_client_regress.tests.SessionTests.test_logout_with_custom_auth_backend) 326s Request a logout after logging in with custom authentication backend ... ok 326s test_logout_with_custom_user (test_client_regress.tests.SessionTests.test_logout_with_custom_user) 326s Logout should send user_logged_out signal if custom user was logged in. ... ok 326s test_logout_with_user (test_client_regress.tests.SessionTests.test_logout_with_user) 326s Logout should send user_logged_out signal if user was logged in. ... ok 326s test_logout_without_user (test_client_regress.tests.SessionTests.test_logout_without_user) 326s Logout should send signal even if user not authenticated. ... ok 326s test_session (test_client_regress.tests.SessionTests.test_session) 326s The session isn't lost if a user logs in ... ok 326s test_session_initiated (test_client_regress.tests.SessionTests.test_session_initiated) ... ok 326s test_m2m_relations_add_remove_clear (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_add_remove_clear) ... ok 326s test_m2m_relations_signals_all_the_doors_off_of_cars (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_all_the_doors_off_of_cars) ... ok 326s test_m2m_relations_signals_alternative_ways (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_alternative_ways) ... ok 326s test_m2m_relations_signals_clear_all_parts_of_the_self_vw (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_clear_all_parts_of_the_self_vw) ... ok 326s test_m2m_relations_signals_clearing_removing (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_clearing_removing) ... ok 326s test_m2m_relations_signals_give_the_self_vw_some_optional_parts (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_give_the_self_vw_some_optional_parts) ... ok 326s test_m2m_relations_signals_remove_relation (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_remove_relation) ... ok 326s test_m2m_relations_signals_reverse_relation (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_reverse_relation) ... ok 326s test_m2m_relations_signals_reverse_relation_with_custom_related_name (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_reverse_relation_with_custom_related_name) ... ok 326s test_m2m_relations_signals_when_inheritance (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_signals_when_inheritance) ... ok 326s test_m2m_relations_with_self_add_fan (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_with_self_add_fan) ... ok 326s test_m2m_relations_with_self_add_friends (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_with_self_add_friends) ... ok 326s test_m2m_relations_with_self_add_idols (m2m_signals.tests.ManyToManySignalsTest.test_m2m_relations_with_self_add_idols) ... ok 326s test_pk_set_on_repeated_add_remove (m2m_signals.tests.ManyToManySignalsTest.test_pk_set_on_repeated_add_remove) 326s m2m_changed is always fired, even for repeated calls to the same ... ok 326s test_field_defaults (field_defaults.tests.DefaultTests.test_field_defaults) ... ok 327s test_model_admin_no_delete_permission (admin_views.test_actions.AdminActionsPermissionTests.test_model_admin_no_delete_permission) 327s Permission is denied if the user doesn't have delete permission for the ... ok 327s test_model_admin_no_delete_permission_externalsubscriber (admin_views.test_actions.AdminActionsPermissionTests.test_model_admin_no_delete_permission_externalsubscriber) 327s Permission is denied if the user doesn't have delete permission for a ... ok 327s test_add (cache.tests.LocMemCacheTests.test_add) ... ok 327s test_add_fail_on_pickleerror (cache.tests.LocMemCacheTests.test_add_fail_on_pickleerror) ... ok 327s test_binary_string (cache.tests.LocMemCacheTests.test_binary_string) ... ok 327s test_cache_read_for_model_instance (cache.tests.LocMemCacheTests.test_cache_read_for_model_instance) ... ok 327s test_cache_read_for_model_instance_with_deferred (cache.tests.LocMemCacheTests.test_cache_read_for_model_instance_with_deferred) ... ok 327s test_cache_versioning_add (cache.tests.LocMemCacheTests.test_cache_versioning_add) ... ok 327s test_cache_versioning_delete (cache.tests.LocMemCacheTests.test_cache_versioning_delete) ... ok 327s test_cache_versioning_get_set (cache.tests.LocMemCacheTests.test_cache_versioning_get_set) ... ok 327s test_cache_versioning_get_set_many (cache.tests.LocMemCacheTests.test_cache_versioning_get_set_many) ... ok 327s test_cache_versioning_has_key (cache.tests.LocMemCacheTests.test_cache_versioning_has_key) ... ok 327s test_cache_versioning_incr_decr (cache.tests.LocMemCacheTests.test_cache_versioning_incr_decr) ... ok 327s test_cache_write_for_model_instance_with_deferred (cache.tests.LocMemCacheTests.test_cache_write_for_model_instance_with_deferred) ... ok 327s test_cache_write_unpicklable_object (cache.tests.LocMemCacheTests.test_cache_write_unpicklable_object) ... ok 327s test_clear (cache.tests.LocMemCacheTests.test_clear) ... ok 327s test_close (cache.tests.LocMemCacheTests.test_close) ... ok 327s test_cull (cache.tests.LocMemCacheTests.test_cull) ... ok 327s test_cull_delete_when_store_empty (cache.tests.LocMemCacheTests.test_cull_delete_when_store_empty) ... ok 327s test_custom_key_func (cache.tests.LocMemCacheTests.test_custom_key_func) ... ok 327s test_data_types (cache.tests.LocMemCacheTests.test_data_types) ... ok 327s test_decr (cache.tests.LocMemCacheTests.test_decr) ... ok 327s test_decr_version (cache.tests.LocMemCacheTests.test_decr_version) ... ok 327s test_default_used_when_none_is_set (cache.tests.LocMemCacheTests.test_default_used_when_none_is_set) 327s If None is cached, get() returns it instead of the default. ... ok 327s test_delete (cache.tests.LocMemCacheTests.test_delete) ... ok 327s test_delete_many (cache.tests.LocMemCacheTests.test_delete_many) ... ok 327s test_delete_many_no_keys (cache.tests.LocMemCacheTests.test_delete_many_no_keys) ... ok 327s test_delete_nonexistent (cache.tests.LocMemCacheTests.test_delete_nonexistent) ... ok 327s test_expiration (cache.tests.LocMemCacheTests.test_expiration) ... ok 327s test_float_timeout (cache.tests.LocMemCacheTests.test_float_timeout) ... ok 327s test_forever_timeout (cache.tests.LocMemCacheTests.test_forever_timeout) 327s Passing in None into timeout results in a value that is cached forever ... ok 327s test_get_many (cache.tests.LocMemCacheTests.test_get_many) ... ok 327s test_get_or_set (cache.tests.LocMemCacheTests.test_get_or_set) ... ok 327s test_get_or_set_callable (cache.tests.LocMemCacheTests.test_get_or_set_callable) ... ok 327s test_get_or_set_racing (cache.tests.LocMemCacheTests.test_get_or_set_racing) ... ok 327s test_get_or_set_version (cache.tests.LocMemCacheTests.test_get_or_set_version) ... ok 327s test_has_key (cache.tests.LocMemCacheTests.test_has_key) ... ok 327s test_in (cache.tests.LocMemCacheTests.test_in) ... ok 327s test_incr (cache.tests.LocMemCacheTests.test_incr) ... ok 327s test_incr_decr_timeout (cache.tests.LocMemCacheTests.test_incr_decr_timeout) 327s incr/decr does not modify expiry time (matches memcached behavior) ... ok 327s test_incr_version (cache.tests.LocMemCacheTests.test_incr_version) ... ok 327s test_invalid_key_characters (cache.tests.LocMemCacheTests.test_invalid_key_characters) ... ok 327s test_invalid_key_length (cache.tests.LocMemCacheTests.test_invalid_key_length) ... ok 327s test_invalid_with_version_key_length (cache.tests.LocMemCacheTests.test_invalid_with_version_key_length) ... ok 327s test_locking_on_pickle (cache.tests.LocMemCacheTests.test_locking_on_pickle) 327s #20613/#18541 -- Ensures pickling is done outside of the lock. ... ok 327s test_long_timeout (cache.tests.LocMemCacheTests.test_long_timeout) 327s Follow memcached's convention where a timeout greater than 30 days is ... ok 327s test_lru_get (cache.tests.LocMemCacheTests.test_lru_get) 327s get() moves cache keys. ... ok 327s test_lru_incr (cache.tests.LocMemCacheTests.test_lru_incr) 327s incr() moves cache keys. ... ok 327s test_lru_set (cache.tests.LocMemCacheTests.test_lru_set) 327s set() moves cache keys. ... ok 327s test_multiple_caches (cache.tests.LocMemCacheTests.test_multiple_caches) 327s Multiple locmem caches are isolated ... ok 327s test_non_existent (cache.tests.LocMemCacheTests.test_non_existent) 327s Nonexistent cache keys return as None/default. ... ok 327s test_prefix (cache.tests.LocMemCacheTests.test_prefix) ... ok 327s test_set_fail_on_pickleerror (cache.tests.LocMemCacheTests.test_set_fail_on_pickleerror) ... ok 327s test_set_many (cache.tests.LocMemCacheTests.test_set_many) ... ok 327s test_set_many_empty_data (cache.tests.LocMemCacheTests.test_set_many_empty_data) ... ok 327s test_set_many_expiration (cache.tests.LocMemCacheTests.test_set_many_expiration) ... ok 327s test_set_many_returns_empty_list_on_success (cache.tests.LocMemCacheTests.test_set_many_returns_empty_list_on_success) 327s set_many() returns an empty list when all keys are inserted. ... ok 327s test_simple (cache.tests.LocMemCacheTests.test_simple) ... ok 327s test_touch (cache.tests.LocMemCacheTests.test_touch) ... ok 327s test_unicode (cache.tests.LocMemCacheTests.test_unicode) ... ok 327s test_zero_cull (cache.tests.LocMemCacheTests.test_zero_cull) ... ok 327s test_zero_timeout (cache.tests.LocMemCacheTests.test_zero_timeout) 327s Passing in zero into timeout results in a value that is not cached ... ok 327s test_available_apps (admin_views.test_adminsite.SiteEachContextTest.test_available_apps) ... ok 327s test_each_context (admin_views.test_adminsite.SiteEachContextTest.test_each_context) ... ok 327s test_each_context_site_url_with_script_name (admin_views.test_adminsite.SiteEachContextTest.test_each_context_site_url_with_script_name) ... ok 328s test_custom_to_field (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_custom_to_field) ... ok 328s test_custom_to_field_custom_pk (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_custom_to_field_custom_pk) ... ok 328s test_custom_to_field_permission_denied (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_custom_to_field_permission_denied) ... ok 328s test_field_does_not_allowed (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_field_does_not_allowed) ... ok 328s test_field_does_not_exist (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_field_does_not_exist) ... ok 328s test_field_no_related_field (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_field_no_related_field) ... ok 328s test_get_paginator (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_get_paginator) 328s Search results are paginated. ... ok 328s test_has_view_or_change_permission_required (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_has_view_or_change_permission_required) 328s Users require the change permission for the related model to the ... ok 328s test_limit_choices_to (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_limit_choices_to) ... ok 328s test_missing_search_fields (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_missing_search_fields) ... ok 328s test_must_be_logged_in (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_must_be_logged_in) ... ok 328s test_search_use_distinct (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_search_use_distinct) 328s Searching across model relations use QuerySet.distinct() to avoid ... ok 328s test_serialize_result (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_serialize_result) ... ok 328s test_success (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_success) ... ok 328s test_to_field_resolution_with_fk_pk (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_to_field_resolution_with_fk_pk) ... ok 328s test_to_field_resolution_with_mti (admin_views.test_autocomplete_view.AutocompleteJsonViewTests.test_to_field_resolution_with_mti) 328s to_field resolution should correctly resolve for target models using ... ok 328s test_breadcrumbs_absent (admin_views.test_breadcrumbs.AdminBreadcrumbsTests.test_breadcrumbs_absent) ... ok 328s test_breadcrumbs_present (admin_views.test_breadcrumbs.AdminBreadcrumbsTests.test_breadcrumbs_present) ... ok 328s test_action_column_class (admin_views.test_actions.AdminActionsTest.test_action_column_class) 328s The checkbox column class is present in the response. ... ok 328s test_actions_ordering (admin_views.test_actions.AdminActionsTest.test_actions_ordering) 328s Actions are ordered as expected. ... ok 328s test_custom_function_action_no_perm_response (admin_views.test_actions.AdminActionsTest.test_custom_function_action_no_perm_response) 328s A custom action may returns an HttpResponse with a 403 code. ... ok 328s test_custom_function_action_streaming_response (admin_views.test_actions.AdminActionsTest.test_custom_function_action_streaming_response) 328s A custom action may return a StreamingHttpResponse. ... ok 328s test_custom_function_action_with_redirect (admin_views.test_actions.AdminActionsTest.test_custom_function_action_with_redirect) 328s Another custom action defined in a function. ... ok 328s test_custom_function_mail_action (admin_views.test_actions.AdminActionsTest.test_custom_function_mail_action) 328s A custom action may be defined in a function. ... ok 328s test_default_delete_action_nonexistent_pk (admin_views.test_actions.AdminActionsTest.test_default_delete_action_nonexistent_pk) ... ok 328s test_default_redirect (admin_views.test_actions.AdminActionsTest.test_default_redirect) 328s Actions which don't return an HttpResponse are redirected to the same ... ok 328s test_delete_queryset_hook (admin_views.test_actions.AdminActionsTest.test_delete_queryset_hook) ... ok 328s test_delete_selected_uses_get_deleted_objects (admin_views.test_actions.AdminActionsTest.test_delete_selected_uses_get_deleted_objects) 328s The delete_selected action uses ModelAdmin.get_deleted_objects(). ... ok 328s test_media_from_actions_form (admin_views.test_actions.AdminActionsTest.test_media_from_actions_form) 328s The action form's media is included in the changelist view's media. ... ok 328s test_model_admin_custom_action (admin_views.test_actions.AdminActionsTest.test_model_admin_custom_action) 328s A custom action defined in a ModelAdmin method. ... ok 328s test_model_admin_default_delete_action (admin_views.test_actions.AdminActionsTest.test_model_admin_default_delete_action) ... ok 328s test_model_admin_default_delete_action_no_change_url (admin_views.test_actions.AdminActionsTest.test_model_admin_default_delete_action_no_change_url) 328s The default delete action doesn't break if a ModelAdmin removes the ... ok 328s test_model_admin_default_delete_action_protected (admin_views.test_actions.AdminActionsTest.test_model_admin_default_delete_action_protected) 328s The default delete action where some related objects are protected ... ok 328s test_model_without_action (admin_views.test_actions.AdminActionsTest.test_model_without_action) 328s A ModelAdmin might not have any actions. ... ok 328s test_model_without_action_still_has_jquery (admin_views.test_actions.AdminActionsTest.test_model_without_action_still_has_jquery) 328s A ModelAdmin without any actions still has jQuery included on the page. ... ok 328s test_multiple_actions_form (admin_views.test_actions.AdminActionsTest.test_multiple_actions_form) 328s Actions come from the form whose submit button was pressed (#10618). ... ok 328s test_non_localized_pk (admin_views.test_actions.AdminActionsTest.test_non_localized_pk) 328s If USE_THOUSAND_SEPARATOR is set, the ids for the objects selected for ... ok 328s test_popup_actions (admin_views.test_actions.AdminActionsTest.test_popup_actions) 328s Actions aren't shown in popups. ... ok 328s test_popup_template_escaping (admin_views.test_actions.AdminActionsTest.test_popup_template_escaping) ... ok 328s test_popup_template_response_on_add (admin_views.test_actions.AdminActionsTest.test_popup_template_response_on_add) 328s Success on popups shall be rendered from template in order to allow ... ok 328s test_popup_template_response_on_change (admin_views.test_actions.AdminActionsTest.test_popup_template_response_on_change) ... ok 328s test_popup_template_response_on_delete (admin_views.test_actions.AdminActionsTest.test_popup_template_response_on_delete) ... ok 328s test_selection_counter (admin_views.test_actions.AdminActionsTest.test_selection_counter) 328s The selection counter is there. ... ok 328s test_user_message_on_no_action (admin_views.test_actions.AdminActionsTest.test_user_message_on_no_action) 328s User sees a warning when 'Go' is pressed and no action is selected. ... ok 328s test_user_message_on_none_selected (admin_views.test_actions.AdminActionsTest.test_user_message_on_none_selected) 328s User sees a warning when 'Go' is pressed and no items are selected. ... ok 328s test_inactive_user (admin_views.test_forms.AdminAuthenticationFormTests.test_inactive_user) ... ok 328s test_add_view (admin_views.test_multidb.MultiDatabaseTests.test_add_view) ... ok 328s test_change_view (admin_views.test_multidb.MultiDatabaseTests.test_change_view) ... ok 328s test_delete_view (admin_views.test_multidb.MultiDatabaseTests.test_delete_view) ... ok 329s test_changed_message_uses_form_labels (admin_views.test_history_view.AdminHistoryViewTests.test_changed_message_uses_form_labels) 329s Admin's model history change messages use form labels instead of ... ok 329s test_included_app_list_template_context_fully_set (admin_views.test_nav_sidebar.AdminSidebarTests.test_included_app_list_template_context_fully_set) ... ok 329s test_sidebar_aria_current_page (admin_views.test_nav_sidebar.AdminSidebarTests.test_sidebar_aria_current_page) ... ok 329s test_sidebar_aria_current_page_missing_without_request_context_processor (admin_views.test_nav_sidebar.AdminSidebarTests.test_sidebar_aria_current_page_missing_without_request_context_processor) ... ok 329s test_sidebar_disabled (admin_views.test_nav_sidebar.AdminSidebarTests.test_sidebar_disabled) ... ok 329s test_sidebar_model_name_non_ascii (admin_views.test_nav_sidebar.AdminSidebarTests.test_sidebar_model_name_non_ascii) ... ok 329s test_sidebar_not_on_index (admin_views.test_nav_sidebar.AdminSidebarTests.test_sidebar_not_on_index) ... ok 329s test_sidebar_unauthenticated (admin_views.test_nav_sidebar.AdminSidebarTests.test_sidebar_unauthenticated) ... ok 329s test_choice_links (admin_views.test_templatetags.DateHierarchyTests.test_choice_links) ... ok 329s test_choice_links_datetime (admin_views.test_templatetags.DateHierarchyTests.test_choice_links_datetime) ... ok 329s test_override_change_form_template_tags (admin_views.test_templatetags.AdminTemplateTagsTest.test_override_change_form_template_tags) 329s admin_modify template tags follow the standard search pattern ... ok 329s test_override_change_list_template_tags (admin_views.test_templatetags.AdminTemplateTagsTest.test_override_change_list_template_tags) 329s admin_list template tags follow the standard search pattern ... ok 329s test_override_show_save_and_add_another (admin_views.test_templatetags.AdminTemplateTagsTest.test_override_show_save_and_add_another) ... ok 329s test_submit_row (admin_views.test_templatetags.AdminTemplateTagsTest.test_submit_row) 329s submit_row template tag should pass whole context. ... ok 329s test_submit_row_save_as_new_add_permission_required (admin_views.test_templatetags.AdminTemplateTagsTest.test_submit_row_save_as_new_add_permission_required) ... ok 329s test_should_be_able_to_edit_related_objects_on_add_view (admin_views.tests.AdminCustomSaveRelatedTests.test_should_be_able_to_edit_related_objects_on_add_view) ... ok 329s test_should_be_able_to_edit_related_objects_on_change_view (admin_views.tests.AdminCustomSaveRelatedTests.test_should_be_able_to_edit_related_objects_on_change_view) ... ok 329s test_should_be_able_to_edit_related_objects_on_changelist_view (admin_views.tests.AdminCustomSaveRelatedTests.test_should_be_able_to_edit_related_objects_on_changelist_view) ... ok 330s test_change_password_template (admin_views.tests.AdminCustomTemplateTests.test_change_password_template) ... ok 330s test_custom_model_admin_templates (admin_views.tests.AdminCustomTemplateTests.test_custom_model_admin_templates) ... ok 330s test_extended_bodyclass_change_list (admin_views.tests.AdminCustomTemplateTests.test_extended_bodyclass_change_list) 330s The admin/change_list.html' template uses block.super ... ok 330s test_extended_bodyclass_template_change_form (admin_views.tests.AdminCustomTemplateTests.test_extended_bodyclass_template_change_form) 330s The admin/change_form.html template uses block.super in the ... ok 330s test_extended_bodyclass_template_delete_confirmation (admin_views.tests.AdminCustomTemplateTests.test_extended_bodyclass_template_delete_confirmation) 330s The admin/delete_confirmation.html template uses ... ok 330s test_extended_bodyclass_template_delete_selected_confirmation (admin_views.tests.AdminCustomTemplateTests.test_extended_bodyclass_template_delete_selected_confirmation) 330s The admin/delete_selected_confirmation.html template uses ... ok 330s test_extended_bodyclass_template_index (admin_views.tests.AdminCustomTemplateTests.test_extended_bodyclass_template_index) 330s The admin/index.html template uses block.super in the bodyclass block. ... ok 330s test_extended_bodyclass_template_login (admin_views.tests.AdminCustomTemplateTests.test_extended_bodyclass_template_login) 330s The admin/login.html template uses block.super in the ... ok 330s test_filter_with_custom_template (admin_views.tests.AdminCustomTemplateTests.test_filter_with_custom_template) 330s A custom template can be used to render an admin filter. ... ok 330s test_add_model_modeladmin_defer_qs (admin_views.tests.AdminCustomQuerysetTest.test_add_model_modeladmin_defer_qs) ... ok 330s test_add_model_modeladmin_only_qs (admin_views.tests.AdminCustomQuerysetTest.test_add_model_modeladmin_only_qs) ... ok 330s test_change_view (admin_views.tests.AdminCustomQuerysetTest.test_change_view) ... ok 330s test_changelist_view (admin_views.tests.AdminCustomQuerysetTest.test_changelist_view) ... ok 330s test_changelist_view_count_queries (admin_views.tests.AdminCustomQuerysetTest.test_changelist_view_count_queries) ... ok 330s test_edit_model_modeladmin_defer_qs (admin_views.tests.AdminCustomQuerysetTest.test_edit_model_modeladmin_defer_qs) ... ok 330s test_edit_model_modeladmin_only_qs (admin_views.tests.AdminCustomQuerysetTest.test_edit_model_modeladmin_only_qs) ... ok 330s test_history_view_custom_qs (admin_views.tests.AdminCustomQuerysetTest.test_history_view_custom_qs) 330s Custom querysets are considered for the admin history view. ... ok 331s test_inline (admin_views.tests.AdminInheritedInlinesTest.test_inline) 331s Inline models which inherit from a common parent are correctly handled. ... ok 331s test_form_has_multipart_enctype (admin_views.tests.AdminInlineFileUploadTest.test_form_has_multipart_enctype) ... ok 331s test_inline_file_upload_edit_validation_error_post (admin_views.tests.AdminInlineFileUploadTest.test_inline_file_upload_edit_validation_error_post) 331s Inline file uploads correctly display prior data (#10002). ... ok 332s test_filters (admin_views.tests.AdminDocsTest.test_filters) ... ok 332s test_tags (admin_views.tests.AdminDocsTest.test_tags) ... ok 332s test_char_pk_inline (admin_views.tests.AdminInlineTests.test_char_pk_inline) 332s A model with a character PK can be saved as inlines. Regression for #10992 ... ok 332s test_explicit_autofield_inline (admin_views.tests.AdminInlineTests.test_explicit_autofield_inline) 332s A model with an explicit autofield primary key can be saved as inlines. ... ok 332s test_inherited_inline (admin_views.tests.AdminInlineTests.test_inherited_inline) 332s An inherited model can be saved as inlines. Regression for #11042 ... ok 332s test_integer_pk_inline (admin_views.tests.AdminInlineTests.test_integer_pk_inline) 332s A model with an integer PK can be saved as inlines. Regression for #10992 ... ok 332s test_ordered_inline (admin_views.tests.AdminInlineTests.test_ordered_inline) 332s An inline with an editable ordering fields is updated correctly. ... ok 332s test_simple_inline (admin_views.tests.AdminInlineTests.test_simple_inline) 332s A simple model can be saved as inlines ... ok 333s test_js_minified_only_if_debug_is_false (admin_views.tests.AdminJavaScriptTest.test_js_minified_only_if_debug_is_false) 333s The minified versions of the JS files are only used when DEBUG is False. ... ok 334s test_beginning_matches (admin_views.tests.AdminSearchTest.test_beginning_matches) ... ok 334s test_exact_matches (admin_views.tests.AdminSearchTest.test_exact_matches) ... ok 334s test_no_total_count (admin_views.tests.AdminSearchTest.test_no_total_count) 334s #8408 -- "Show all" should be displayed instead of the total count if ... ok 334s test_pluggable_search (admin_views.tests.AdminSearchTest.test_pluggable_search) ... ok 334s test_reset_link (admin_views.tests.AdminSearchTest.test_reset_link) 334s Test presence of reset link in search bar ("1 result (_x total_)"). ... ok 334s test_search_on_sibling_models (admin_views.tests.AdminSearchTest.test_search_on_sibling_models) 334s A search that mentions sibling models ... ok 334s test_search_with_spaces (admin_views.tests.AdminSearchTest.test_search_with_spaces) ... ok 334s test_with_fk_to_field (admin_views.tests.AdminSearchTest.test_with_fk_to_field) 334s The to_field GET parameter is preserved when a search is performed. ... ok 335s test_known_url_missing_slash_redirects_login_if_not_authenticated (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_known_url_missing_slash_redirects_login_if_not_authenticated) ... ok 335s test_known_url_missing_slash_redirects_with_slash_if_not_auth_no_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_known_url_missing_slash_redirects_with_slash_if_not_auth_no_catch_all_view) ... ok 335s test_known_url_redirects_login_if_not_auth_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_known_url_redirects_login_if_not_auth_without_final_catch_all_view) ... ok 335s test_known_url_redirects_login_if_not_authenticated (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_known_url_redirects_login_if_not_authenticated) ... ok 335s test_missing_slash_append_slash_false (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_false) ... ok 335s test_missing_slash_append_slash_false_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_false_without_final_catch_all_view) ... ok 335s test_missing_slash_append_slash_true (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_true) ... ok 335s test_missing_slash_append_slash_true_force_script_name (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_true_force_script_name) ... ok 335s test_missing_slash_append_slash_true_non_staff_user (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_true_non_staff_user) ... ok 335s test_missing_slash_append_slash_true_script_name (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_true_script_name) ... ok 335s test_missing_slash_append_slash_true_unknown_url (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_true_unknown_url) ... ok 335s test_missing_slash_append_slash_true_unknown_url_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_true_unknown_url_without_final_catch_all_view) ... ok 335s test_missing_slash_append_slash_true_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_missing_slash_append_slash_true_without_final_catch_all_view) ... ok 335s test_non_admin_url_404_if_not_authenticated (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_non_admin_url_404_if_not_authenticated) ... ok 335s test_non_admin_url_shares_url_prefix (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_non_admin_url_shares_url_prefix) ... ok 335s test_non_admin_url_shares_url_prefix_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_non_admin_url_shares_url_prefix_without_final_catch_all_view) ... ok 335s test_single_model_no_append_slash (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_single_model_no_append_slash) ... ok 335s test_unknown_url_404_if_authenticated (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_unknown_url_404_if_authenticated) ... ok 335s test_unknown_url_404_if_authenticated_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_unknown_url_404_if_authenticated_without_final_catch_all_view) ... ok 335s test_unknown_url_404_if_not_authenticated_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_unknown_url_404_if_not_authenticated_without_final_catch_all_view) ... ok 335s test_unknown_url_no_trailing_slash_if_not_auth_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_unknown_url_no_trailing_slash_if_not_auth_without_final_catch_all_view) ... ok 335s test_unknown_url_redirects_login_if_not_authenticated (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_unknown_url_redirects_login_if_not_authenticated) ... ok 335s test_unkown_url_without_trailing_slash_if_not_authenticated (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_unkown_url_without_trailing_slash_if_not_authenticated) ... ok 335s test_url_no_trailing_slash_if_not_auth_without_final_catch_all_view (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_url_no_trailing_slash_if_not_auth_without_final_catch_all_view) ... ok 335s test_url_without_trailing_slash_if_not_authenticated (admin_views.tests.AdminSiteFinalCatchAllPatternTests.test_url_without_trailing_slash_if_not_authenticated) ... ok 335s test_message_debug (admin_views.tests.AdminUserMessageTest.test_message_debug) ... ok 335s test_message_error (admin_views.tests.AdminUserMessageTest.test_message_error) ... ok 335s test_message_extra_tags (admin_views.tests.AdminUserMessageTest.test_message_extra_tags) ... ok 335s test_message_info (admin_views.tests.AdminUserMessageTest.test_message_info) ... ok 335s test_message_success (admin_views.tests.AdminUserMessageTest.test_message_success) ... ok 335s test_message_warning (admin_views.tests.AdminUserMessageTest.test_message_warning) ... ok 339s test_add_view (admin_views.tests.AdminKeepChangeListFiltersTests.test_add_view) ... ok 339s test_add_view_without_preserved_filters (admin_views.tests.AdminKeepChangeListFiltersTests.test_add_view_without_preserved_filters) ... ok 339s test_assert_url_equal (admin_views.tests.AdminKeepChangeListFiltersTests.test_assert_url_equal) ... ok 339s test_change_view (admin_views.tests.AdminKeepChangeListFiltersTests.test_change_view) ... ok 339s test_change_view_close_link (admin_views.tests.AdminKeepChangeListFiltersTests.test_change_view_close_link) ... ok 339s test_change_view_without_preserved_filters (admin_views.tests.AdminKeepChangeListFiltersTests.test_change_view_without_preserved_filters) ... ok 339s test_changelist_view (admin_views.tests.AdminKeepChangeListFiltersTests.test_changelist_view) ... ok 339s test_delete_view (admin_views.tests.AdminKeepChangeListFiltersTests.test_delete_view) ... ok 339s test_url_prefix (admin_views.tests.AdminKeepChangeListFiltersTests.test_url_prefix) ... ok 340s test_cyclic (admin_views.tests.AdminViewDeletedObjectsTest.test_cyclic) 340s Cyclic relationships should still cause each object to only be ... ok 340s test_delete_view_uses_get_deleted_objects (admin_views.tests.AdminViewDeletedObjectsTest.test_delete_view_uses_get_deleted_objects) 340s The delete view uses ModelAdmin.get_deleted_objects(). ... ok 340s test_generic_relations (admin_views.tests.AdminViewDeletedObjectsTest.test_generic_relations) 340s If a deleted object has GenericForeignKeys pointing to it, ... ok 340s test_generic_relations_with_related_query_name (admin_views.tests.AdminViewDeletedObjectsTest.test_generic_relations_with_related_query_name) 340s If a deleted object has GenericForeignKey with ... ok 340s test_inheritance (admin_views.tests.AdminViewDeletedObjectsTest.test_inheritance) 340s In the case of an inherited model, if either the child or ... ok 340s test_multiple_fkeys_to_same_instance (admin_views.tests.AdminViewDeletedObjectsTest.test_multiple_fkeys_to_same_instance) 340s If a deleted object has two relationships pointing to it from ... ok 340s test_multiple_fkeys_to_same_model (admin_views.tests.AdminViewDeletedObjectsTest.test_multiple_fkeys_to_same_model) 340s If a deleted object has two relationships from another model, ... ok 340s test_nesting (admin_views.tests.AdminViewDeletedObjectsTest.test_nesting) 340s Objects should be nested to display the relationships that ... ok 340s test_not_registered (admin_views.tests.AdminViewDeletedObjectsTest.test_not_registered) ... ok 340s test_perms_needed (admin_views.tests.AdminViewDeletedObjectsTest.test_perms_needed) ... ok 340s test_post_delete_protected (admin_views.tests.AdminViewDeletedObjectsTest.test_post_delete_protected) 340s A POST request to delete protected objects should display the page ... ok 340s test_post_delete_restricted (admin_views.tests.AdminViewDeletedObjectsTest.test_post_delete_restricted) ... ok 340s test_protected (admin_views.tests.AdminViewDeletedObjectsTest.test_protected) ... ok 340s test_restricted (admin_views.tests.AdminViewDeletedObjectsTest.test_restricted) ... ok 340s test_change_form_URL_has_correct_value (admin_views.tests.AdminViewFormUrlTest.test_change_form_URL_has_correct_value) 340s change_view has form_url in response.context ... ok 340s test_initial_data_can_be_overridden (admin_views.tests.AdminViewFormUrlTest.test_initial_data_can_be_overridden) 340s The behavior for setting initial form data can be overridden in the ... ok 341s test_changelist_input_html (admin_views.tests.AdminViewListEditable.test_changelist_input_html) ... ok 341s test_custom_pk (admin_views.tests.AdminViewListEditable.test_custom_pk) ... ok 341s test_inheritance (admin_views.tests.AdminViewListEditable.test_inheritance) ... ok 341s test_inheritance_2 (admin_views.tests.AdminViewListEditable.test_inheritance_2) ... ok 341s test_list_editable_action_choices (admin_views.tests.AdminViewListEditable.test_list_editable_action_choices) ... ok 341s test_list_editable_action_submit (admin_views.tests.AdminViewListEditable.test_list_editable_action_submit) ... ok 341s test_list_editable_ordering (admin_views.tests.AdminViewListEditable.test_list_editable_ordering) ... ok 341s test_list_editable_pagination (admin_views.tests.AdminViewListEditable.test_list_editable_pagination) 341s Pagination works for list_editable items. ... ok 341s test_list_editable_popup (admin_views.tests.AdminViewListEditable.test_list_editable_popup) 341s Fields should not be list-editable in popups. ... ok 341s test_non_field_errors (admin_views.tests.AdminViewListEditable.test_non_field_errors) 341s Non-field errors are displayed for each of the forms in the ... ok 341s test_non_form_errors (admin_views.tests.AdminViewListEditable.test_non_form_errors) ... ok 341s test_non_form_errors_is_errorlist (admin_views.tests.AdminViewListEditable.test_non_form_errors_is_errorlist) ... ok 341s test_pk_hidden_fields (admin_views.tests.AdminViewListEditable.test_pk_hidden_fields) 341s hidden pk fields aren't displayed in the table body and their ... ok 341s test_pk_hidden_fields_with_list_display_links (admin_views.tests.AdminViewListEditable.test_pk_hidden_fields_with_list_display_links) 341s Similarly as test_pk_hidden_fields, but when the hidden pk fields are ... ok 341s test_post_messages (admin_views.tests.AdminViewListEditable.test_post_messages) ... ok 341s test_post_submission (admin_views.tests.AdminViewListEditable.test_post_submission) ... ok 341s test_add_with_GET_args (admin_views.tests.AdminViewBasicTest.test_add_with_GET_args) ... ok 341s test_adminsite_display_site_url (admin_views.tests.AdminViewBasicTest.test_adminsite_display_site_url) 341s #13749 - Admin should display link to front-end site 'View site' ... ok 341s test_allowed_filtering_15103 (admin_views.tests.AdminViewBasicTest.test_allowed_filtering_15103) 341s Regressions test for ticket 15103 - filtering on fields defined in a ... ok 341s test_allows_attributeerror_to_bubble_up (admin_views.tests.AdminViewBasicTest.test_allows_attributeerror_to_bubble_up) 341s AttributeErrors are allowed to bubble when raised inside a change list ... ok 341s test_app_index_context (admin_views.tests.AdminViewBasicTest.test_app_index_context) ... ok 341s test_app_index_context_reordered (admin_views.tests.AdminViewBasicTest.test_app_index_context_reordered) ... ok 341s test_basic_add_GET (admin_views.tests.AdminViewBasicTest.test_basic_add_GET) 341s A smoke test to ensure GET on the add_view works. ... ok 341s test_basic_add_POST (admin_views.tests.AdminViewBasicTest.test_basic_add_POST) 341s A smoke test to ensure POST on add_view works. ... ok 341s test_basic_edit_GET (admin_views.tests.AdminViewBasicTest.test_basic_edit_GET) 341s A smoke test to ensure GET on the change_view works. ... ok 341s test_basic_edit_GET_old_url_redirect (admin_views.tests.AdminViewBasicTest.test_basic_edit_GET_old_url_redirect) 341s The change URL changed in Django 1.9, but the old one still redirects. ... ok 341s test_basic_edit_GET_string_PK (admin_views.tests.AdminViewBasicTest.test_basic_edit_GET_string_PK) 341s GET on the change_view (when passing a string as the PK argument for a ... ok 341s test_basic_edit_POST (admin_views.tests.AdminViewBasicTest.test_basic_edit_POST) 341s A smoke test to ensure POST on edit_view works. ... ok 341s test_basic_inheritance_GET_string_PK (admin_views.tests.AdminViewBasicTest.test_basic_inheritance_GET_string_PK) 341s GET on the change_view (for inherited models) redirects to the index ... ok 341s test_change_list_column_field_classes (admin_views.tests.AdminViewBasicTest.test_change_list_column_field_classes) ... ok 341s test_change_list_null_boolean_display (admin_views.tests.AdminViewBasicTest.test_change_list_null_boolean_display) ... ok 341s test_change_list_sorting_callable (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_callable) 341s Ensure we can sort on a list_display field that is a callable ... ok 341s test_change_list_sorting_callable_query_expression (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_callable_query_expression) 341s Query expressions may be used for admin_order_field. ... ok 341s test_change_list_sorting_callable_query_expression_reverse (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_callable_query_expression_reverse) ... ok 341s test_change_list_sorting_model (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_model) 341s Ensure we can sort on a list_display field that is a Model method ... ok 341s test_change_list_sorting_model_admin (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_model_admin) 341s Ensure we can sort on a list_display field that is a ModelAdmin method ... ok 341s test_change_list_sorting_model_admin_reverse (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_model_admin_reverse) 341s Ensure we can sort on a list_display field that is a ModelAdmin ... ok 341s test_change_list_sorting_model_meta (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_model_meta) ... ok 341s test_change_list_sorting_multiple (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_multiple) ... ok 341s test_change_list_sorting_override_model_admin (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_override_model_admin) ... ok 341s test_change_list_sorting_preserve_queryset_ordering (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_preserve_queryset_ordering) 341s If no ordering is defined in `ModelAdmin.ordering` or in the query ... ok 341s test_change_list_sorting_property (admin_views.tests.AdminViewBasicTest.test_change_list_sorting_property) 341s Sort on a list_display field that is a property (column 10 is ... ok 341s test_change_view_logs_m2m_field_changes (admin_views.tests.AdminViewBasicTest.test_change_view_logs_m2m_field_changes) 341s Changes to ManyToManyFields are included in the object's history. ... ok 341s test_change_view_subtitle_per_object (admin_views.tests.AdminViewBasicTest.test_change_view_subtitle_per_object) ... ok 341s test_change_view_with_show_delete_extra_context (admin_views.tests.AdminViewBasicTest.test_change_view_with_show_delete_extra_context) 341s The 'show_delete' context variable in the admin's change view controls ... ok 341s test_changelist_with_no_change_url (admin_views.tests.AdminViewBasicTest.test_changelist_with_no_change_url) 341s ModelAdmin.changelist_view shouldn't result in a NoReverseMatch if url ... ok 341s test_date_hierarchy_empty_queryset (admin_views.tests.AdminViewBasicTest.test_date_hierarchy_empty_queryset) ... ok 341s test_date_hierarchy_local_date_differ_from_utc (admin_views.tests.AdminViewBasicTest.test_date_hierarchy_local_date_differ_from_utc) ... ok 341s test_date_hierarchy_timezone_dst (admin_views.tests.AdminViewBasicTest.test_date_hierarchy_timezone_dst) ... ok 341s test_disallowed_filtering (admin_views.tests.AdminViewBasicTest.test_disallowed_filtering) ... ok 341s test_disallowed_to_field (admin_views.tests.AdminViewBasicTest.test_disallowed_to_field) ... ok 341s test_display_decorator_with_boolean_and_empty_value (admin_views.tests.AdminViewBasicTest.test_display_decorator_with_boolean_and_empty_value) ... ok 341s test_edit_save_as (admin_views.tests.AdminViewBasicTest.test_edit_save_as) 341s Test "save as". ... ok 341s test_edit_save_as_delete_inline (admin_views.tests.AdminViewBasicTest.test_edit_save_as_delete_inline) 341s Should be able to "Save as new" while also deleting an inline. ... ok 341s test_formset_kwargs_can_be_overridden (admin_views.tests.AdminViewBasicTest.test_formset_kwargs_can_be_overridden) ... ok 341s test_get_sortable_by_columns_subset (admin_views.tests.AdminViewBasicTest.test_get_sortable_by_columns_subset) ... ok 341s test_get_sortable_by_no_column (admin_views.tests.AdminViewBasicTest.test_get_sortable_by_no_column) ... ok 341s test_has_related_field_in_list_display_fk (admin_views.tests.AdminViewBasicTest.test_has_related_field_in_list_display_fk) 341s Joins shouldn't be performed for _id fields in list display. ... ok 341s test_has_related_field_in_list_display_o2o (admin_views.tests.AdminViewBasicTest.test_has_related_field_in_list_display_o2o) 341s Joins shouldn't be performed for _id fields in list display. ... ok 341s test_hide_change_password (admin_views.tests.AdminViewBasicTest.test_hide_change_password) 341s Tests if the "change password" link in the admin is hidden if the User ... ok 341s test_i18n_language_non_english_default (admin_views.tests.AdminViewBasicTest.test_i18n_language_non_english_default) 341s Check if the JavaScript i18n view returns an empty language catalog ... ok 341s test_i18n_language_non_english_fallback (admin_views.tests.AdminViewBasicTest.test_i18n_language_non_english_fallback) 341s Makes sure that the fallback language is still working properly ... ok 341s test_incorrect_lookup_parameters (admin_views.tests.AdminViewBasicTest.test_incorrect_lookup_parameters) 341s Ensure incorrect lookup parameters are handled gracefully. ... ok 341s test_invalid_appindex_url (admin_views.tests.AdminViewBasicTest.test_invalid_appindex_url) 341s #21056 -- URL reversing shouldn't work for nonexistent apps. ... ok 341s test_isnull_lookups (admin_views.tests.AdminViewBasicTest.test_isnull_lookups) 341s Ensure is_null is handled correctly. ... ok 341s test_jsi18n_format_fallback (admin_views.tests.AdminViewBasicTest.test_jsi18n_format_fallback) 341s The JavaScript i18n view doesn't return localized date/time formats ... ok 341s test_jsi18n_with_context (admin_views.tests.AdminViewBasicTest.test_jsi18n_with_context) ... ok 341s test_limited_filter (admin_views.tests.AdminViewBasicTest.test_limited_filter) 341s Admin changelist filters do not contain objects excluded via ... ok 341s test_logout_and_password_change_URLs (admin_views.tests.AdminViewBasicTest.test_logout_and_password_change_URLs) ... ok 341s test_multiple_sort_same_field (admin_views.tests.AdminViewBasicTest.test_multiple_sort_same_field) ... ok 341s test_named_group_field_choices_change_list (admin_views.tests.AdminViewBasicTest.test_named_group_field_choices_change_list) 341s Ensures the admin changelist shows correct values in the relevant column ... ok 341s test_named_group_field_choices_filter (admin_views.tests.AdminViewBasicTest.test_named_group_field_choices_filter) 341s Ensures the filter UI shows correctly when at least one named group has ... ok 341s test_password_change_helptext (admin_views.tests.AdminViewBasicTest.test_password_change_helptext) ... ok 341s test_popup_add_POST (admin_views.tests.AdminViewBasicTest.test_popup_add_POST) 341s HTTP response from a popup is properly escaped. ... ok 341s test_popup_dismiss_related (admin_views.tests.AdminViewBasicTest.test_popup_dismiss_related) 341s Regression test for ticket 20664 - ensure the pk is properly quoted. ... ok 341s test_relation_spanning_filters (admin_views.tests.AdminViewBasicTest.test_relation_spanning_filters) ... ok 341s test_render_delete_selected_confirmation_no_subtitle (admin_views.tests.AdminViewBasicTest.test_render_delete_selected_confirmation_no_subtitle) ... ok 341s test_render_views_no_subtitle (admin_views.tests.AdminViewBasicTest.test_render_views_no_subtitle) ... ok 341s test_resolve_admin_views (admin_views.tests.AdminViewBasicTest.test_resolve_admin_views) ... ok 341s test_sort_indicators_admin_order (admin_views.tests.AdminViewBasicTest.test_sort_indicators_admin_order) 341s The admin shows default sort indicators for all kinds of 'ordering' ... ok 341s test_sortable_by_columns_subset (admin_views.tests.AdminViewBasicTest.test_sortable_by_columns_subset) ... ok 341s test_sortable_by_no_column (admin_views.tests.AdminViewBasicTest.test_sortable_by_no_column) ... ok 341s test_trailing_slash_required (admin_views.tests.AdminViewBasicTest.test_trailing_slash_required) 341s If you leave off the trailing slash, app should redirect and add it. ... ok 341s test_view_subtitle_per_object (admin_views.tests.AdminViewBasicTest.test_view_subtitle_per_object) ... ok 341s test_client_logout_url_can_be_used_to_login (admin_views.tests.AdminViewLogoutTests.test_client_logout_url_can_be_used_to_login) ... ok 341s test_logout (admin_views.tests.AdminViewLogoutTests.test_logout) ... ok 342s test_add_view_form_and_formsets_run_validation (admin_views.tests.AdminViewOnSiteTests.test_add_view_form_and_formsets_run_validation) 342s Issue #20522 ... ok 342s test_callable (admin_views.tests.AdminViewOnSiteTests.test_callable) 342s The right link is displayed if view_on_site is a callable ... ok 342s test_change_view_form_and_formsets_run_validation (admin_views.tests.AdminViewOnSiteTests.test_change_view_form_and_formsets_run_validation) 342s Issue #20522 ... ok 342s test_check (admin_views.tests.AdminViewOnSiteTests.test_check) 342s The view_on_site value is either a boolean or a callable ... ok 342s test_custom_admin_site (admin_views.tests.AdminViewOnSiteTests.test_custom_admin_site) ... ok 342s test_false (admin_views.tests.AdminViewOnSiteTests.test_false) 342s The 'View on site' button is not displayed if view_on_site is False ... ok 342s test_missing_get_absolute_url (admin_views.tests.AdminViewOnSiteTests.test_missing_get_absolute_url) 342s None is returned if model doesn't have get_absolute_url ... ok 342s test_true (admin_views.tests.AdminViewOnSiteTests.test_true) 342s The default behavior is followed if view_on_site is True ... ok 342s test_add (admin_views.tests.AdminViewProxyModelPermissionsTests.test_add) ... ok 342s test_change (admin_views.tests.AdminViewProxyModelPermissionsTests.test_change) ... ok 342s test_delete (admin_views.tests.AdminViewProxyModelPermissionsTests.test_delete) ... ok 342s test_view (admin_views.tests.AdminViewProxyModelPermissionsTests.test_view) ... ok 343s test_change_view_history_link (admin_views.tests.AdminViewStringPrimaryKeyTest.test_change_view_history_link) 343s Object history button link should work and contain the pk value quoted. ... ok 343s test_changelist_to_changeform_link (admin_views.tests.AdminViewStringPrimaryKeyTest.test_changelist_to_changeform_link) 343s Link to the changeform of the object in changelist should use reverse() ... ok 343s test_deleteconfirmation_link (admin_views.tests.AdminViewStringPrimaryKeyTest.test_deleteconfirmation_link) 343s " ... ok 343s test_get_change_view (admin_views.tests.AdminViewStringPrimaryKeyTest.test_get_change_view) 343s Retrieving the object using urlencoded form of primary key should work ... ok 343s test_get_history_view (admin_views.tests.AdminViewStringPrimaryKeyTest.test_get_history_view) 343s Retrieving the history for an object using urlencoded form of primary ... ok 343s test_recentactions_link (admin_views.tests.AdminViewStringPrimaryKeyTest.test_recentactions_link) 343s The link from the recent actions list referring to the changeform of ... ok 343s test_redirect_on_add_view_continue_button (admin_views.tests.AdminViewStringPrimaryKeyTest.test_redirect_on_add_view_continue_button) 343s As soon as an object is added using "Save and continue editing" ... ok 343s test_shortcut_view_with_escaping (admin_views.tests.AdminViewStringPrimaryKeyTest.test_shortcut_view_with_escaping) 343s 'View on site should' work properly with char fields ... ok 343s test_url_conflicts_with_add (admin_views.tests.AdminViewStringPrimaryKeyTest.test_url_conflicts_with_add) 343s A model with a primary key that ends with add or is `add` should be visible ... ok 343s test_url_conflicts_with_delete (admin_views.tests.AdminViewStringPrimaryKeyTest.test_url_conflicts_with_delete) 343s A model with a primary key that ends with delete should be visible ... ok 343s test_url_conflicts_with_history (admin_views.tests.AdminViewStringPrimaryKeyTest.test_url_conflicts_with_history) 343s A model with a primary key that ends with history should be visible ... ok 343s test_unicode_delete (admin_views.tests.AdminViewUnicodeTest.test_unicode_delete) 343s The delete_view handles non-ASCII characters ... ok 343s test_unicode_edit (admin_views.tests.AdminViewUnicodeTest.test_unicode_edit) 343s A test to ensure that POST on edit_view handles non-ASCII characters. ... ok 344s test_no_standard_modeladmin_urls (admin_views.tests.AdminViewsNoUrlTest.test_no_standard_modeladmin_urls) 344s Admin index views don't break when user's ModelAdmin removes standard urls ... ok 344s test_add_view (admin_views.tests.AdminViewPermissionsTest.test_add_view) 344s Test add view restricts access and actually adds items. ... ok 344s test_add_view_with_view_only_inlines (admin_views.tests.AdminViewPermissionsTest.test_add_view_with_view_only_inlines) 344s User with add permission to a section but view-only for inlines. ... ok 344s test_app_list_permissions (admin_views.tests.AdminViewPermissionsTest.test_app_list_permissions) 344s If a user has no module perms, the app list returns a 404. ... ok 344s test_change_view (admin_views.tests.AdminViewPermissionsTest.test_change_view) 344s Change view should restrict access and allow users to edit items. ... ok 344s test_change_view_save_as_new (admin_views.tests.AdminViewPermissionsTest.test_change_view_save_as_new) 344s 'Save as new' should raise PermissionDenied for users without the 'add' ... ok 344s test_change_view_with_view_and_add_inlines (admin_views.tests.AdminViewPermissionsTest.test_change_view_with_view_and_add_inlines) 344s User has view and add permissions on the inline model. ... ok 344s test_change_view_with_view_and_delete_inlines (admin_views.tests.AdminViewPermissionsTest.test_change_view_with_view_and_delete_inlines) 344s User has view and delete permissions on the inline model. ... ok 344s test_change_view_with_view_only_inlines (admin_views.tests.AdminViewPermissionsTest.test_change_view_with_view_only_inlines) 344s User with change permission to a section but view-only for inlines. ... ok 344s test_change_view_with_view_only_last_inline (admin_views.tests.AdminViewPermissionsTest.test_change_view_with_view_only_last_inline) ... ok 344s test_change_view_without_object_change_permission (admin_views.tests.AdminViewPermissionsTest.test_change_view_without_object_change_permission) 344s The object should be read-only if the user has permission to view it ... ok 344s test_conditionally_show_add_section_link (admin_views.tests.AdminViewPermissionsTest.test_conditionally_show_add_section_link) 344s The foreign key widget should only show the "add related" button if the ... ok 344s test_conditionally_show_change_section_link (admin_views.tests.AdminViewPermissionsTest.test_conditionally_show_change_section_link) 344s The foreign key widget should only show the "change related" button if ... ok 344s test_conditionally_show_delete_section_link (admin_views.tests.AdminViewPermissionsTest.test_conditionally_show_delete_section_link) 344s The foreign key widget should only show the "delete related" button if ... ok 344s test_delete_view (admin_views.tests.AdminViewPermissionsTest.test_delete_view) 344s Delete view should restrict access and actually delete items. ... ok 344s test_delete_view_nonexistent_obj (admin_views.tests.AdminViewPermissionsTest.test_delete_view_nonexistent_obj) ... ok 344s test_delete_view_with_no_default_permissions (admin_views.tests.AdminViewPermissionsTest.test_delete_view_with_no_default_permissions) 344s The delete view allows users to delete collected objects without a ... ok 344s test_disabled_permissions_when_logged_in (admin_views.tests.AdminViewPermissionsTest.test_disabled_permissions_when_logged_in) ... ok 344s test_disabled_staff_permissions_when_logged_in (admin_views.tests.AdminViewPermissionsTest.test_disabled_staff_permissions_when_logged_in) ... ok 344s test_double_login_is_not_allowed (admin_views.tests.AdminViewPermissionsTest.test_double_login_is_not_allowed) 344s Regression test for #19327 ... ok 344s test_has_module_permission (admin_views.tests.AdminViewPermissionsTest.test_has_module_permission) 344s has_module_permission() returns True for all users who ... ok 344s test_history_view (admin_views.tests.AdminViewPermissionsTest.test_history_view) 344s History view should restrict access. ... ok 344s test_history_view_bad_url (admin_views.tests.AdminViewPermissionsTest.test_history_view_bad_url) ... ok 344s test_login (admin_views.tests.AdminViewPermissionsTest.test_login) 344s Make sure only staff members can log in. ... ok 344s test_login_has_permission (admin_views.tests.AdminViewPermissionsTest.test_login_has_permission) ... ok 344s test_login_page_notice_for_non_staff_users (admin_views.tests.AdminViewPermissionsTest.test_login_page_notice_for_non_staff_users) 344s A logged-in non-staff user trying to access the admin index should be ... ok 344s test_login_redirect_for_direct_get (admin_views.tests.AdminViewPermissionsTest.test_login_redirect_for_direct_get) 344s Login redirect should be to the admin index page when going directly to ... ok 344s test_login_successfully_redirects_to_original_URL (admin_views.tests.AdminViewPermissionsTest.test_login_successfully_redirects_to_original_URL) ... ok 344s test_overriding_has_module_permission (admin_views.tests.AdminViewPermissionsTest.test_overriding_has_module_permission) 344s If has_module_permission() always returns False, the module shouldn't ... ok 344s test_post_save_message_no_forbidden_links_visible (admin_views.tests.AdminViewPermissionsTest.test_post_save_message_no_forbidden_links_visible) 344s Post-save message shouldn't contain a link to the change form if the ... ok 344s test_shortcut_view_only_available_to_staff (admin_views.tests.AdminViewPermissionsTest.test_shortcut_view_only_available_to_staff) 344s Only admin users should be able to use the admin shortcut view. ... ok 344s test_app_model_in_app_index_body_class (admin_views.tests.CSSTest.test_app_model_in_app_index_body_class) 344s Ensure app and model tag are correctly read by app_index template ... ok 344s test_app_model_in_delete_confirmation_body_class (admin_views.tests.CSSTest.test_app_model_in_delete_confirmation_body_class) 344s Ensure app and model tag are correctly read by delete_confirmation ... ok 344s test_app_model_in_delete_selected_confirmation_body_class (admin_views.tests.CSSTest.test_app_model_in_delete_selected_confirmation_body_class) 344s Ensure app and model tag are correctly read by ... ok 344s test_app_model_in_form_body_class (admin_views.tests.CSSTest.test_app_model_in_form_body_class) 344s Ensure app and model tag are correctly read by change_form template ... ok 344s test_app_model_in_list_body_class (admin_views.tests.CSSTest.test_app_model_in_list_body_class) 344s Ensure app and model tag are correctly read by change_list template ... ok 344s test_changelist_field_classes (admin_views.tests.CSSTest.test_changelist_field_classes) 344s Cells of the change list table should contain the field name in their ... ok 344s test_field_prefix_css_classes (admin_views.tests.CSSTest.test_field_prefix_css_classes) 344s Fields have a CSS class name with a 'field-' prefix. ... ok 344s test_index_css_classes (admin_views.tests.CSSTest.test_index_css_classes) 344s CSS class names are used for each app and model on the admin index ... ok 345s test_custom_admin_site_app_index_view_and_template (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_app_index_view_and_template) ... ok 345s test_custom_admin_site_index_view_and_template (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_index_view_and_template) ... ok 345s test_custom_admin_site_login_form (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_login_form) ... ok 345s test_custom_admin_site_login_template (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_login_template) ... ok 345s test_custom_admin_site_logout_template (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_logout_template) ... ok 345s test_custom_admin_site_password_change_done_template (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_password_change_done_template) ... ok 345s test_custom_admin_site_password_change_template (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_password_change_template) ... ok 345s test_custom_admin_site_password_change_with_extra_context (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_password_change_with_extra_context) ... ok 345s test_custom_admin_site_view (admin_views.tests.CustomModelAdminTest.test_custom_admin_site_view) ... ok 345s test_pwd_change_custom_template (admin_views.tests.CustomModelAdminTest.test_pwd_change_custom_template) ... ok 345s test_explicitly_provided_pk (admin_views.tests.GetFormsetsWithInlinesArgumentTest.test_explicitly_provided_pk) ... ok 345s test_implicitly_generated_pk (admin_views.tests.GetFormsetsWithInlinesArgumentTest.test_implicitly_generated_pk) ... ok 345s test_empty (admin_views.tests.DateHierarchyTests.test_empty) 345s No date hierarchy links display with empty changelist. ... ok 345s test_multiple_years (admin_views.tests.DateHierarchyTests.test_multiple_years) 345s year-level links appear for year-spanning changelist. ... ok 345s test_related_field (admin_views.tests.DateHierarchyTests.test_related_field) ... ok 345s test_single (admin_views.tests.DateHierarchyTests.test_single) 345s Single day-level date hierarchy appears for single object. ... ok 345s test_within_month (admin_views.tests.DateHierarchyTests.test_within_month) 345s day-level links appear for changelist within single month. ... ok 345s test_within_year (admin_views.tests.DateHierarchyTests.test_within_year) 345s month-level links appear for changelist within single year. ... ok 346s test_callable (admin_views.tests.InlineAdminViewOnSiteTest.test_callable) 346s The right link is displayed if view_on_site is a callable ... ok 346s test_false (admin_views.tests.InlineAdminViewOnSiteTest.test_false) 346s The 'View on site' button is not displayed if view_on_site is False ... ok 346s test_true (admin_views.tests.InlineAdminViewOnSiteTest.test_true) 346s The 'View on site' button is displayed if view_on_site is True ... ok 346s test_limit_choices_to_as_callable (admin_views.tests.LimitChoicesToInAdminTest.test_limit_choices_to_as_callable) 346s Test for ticket 2445 changes to admin. ... ok 348s test_group_permission_performance (admin_views.tests.GroupAdminTest.test_group_permission_performance) ... ok 348s test_save_button (admin_views.tests.GroupAdminTest.test_save_button) ... ok 348s test_JS_i18n (admin_views.tests.NeverCacheTests.test_JS_i18n) 348s Check the never-cache status of the JavaScript i18n view ... ok 348s test_admin_index (admin_views.tests.NeverCacheTests.test_admin_index) 348s Check the never-cache status of the main index ... ok 348s test_app_index (admin_views.tests.NeverCacheTests.test_app_index) 348s Check the never-cache status of an application index ... ok 348s test_login (admin_views.tests.NeverCacheTests.test_login) 348s Check the never-cache status of login views ... ok 348s test_logout (admin_views.tests.NeverCacheTests.test_logout) 348s Check the never-cache status of logout view ... ok 348s test_model_add (admin_views.tests.NeverCacheTests.test_model_add) 348s Check the never-cache status of a model add page ... ok 348s test_model_delete (admin_views.tests.NeverCacheTests.test_model_delete) 348s Check the never-cache status of a model delete page ... ok 348s test_model_history (admin_views.tests.NeverCacheTests.test_model_history) 348s Check the never-cache status of a model history page ... ok 348s test_model_index (admin_views.tests.NeverCacheTests.test_model_index) 348s Check the never-cache status of a model index ... ok 348s test_model_view (admin_views.tests.NeverCacheTests.test_model_view) 348s Check the never-cache status of a model edit page ... ok 348s test_password_change (admin_views.tests.NeverCacheTests.test_password_change) 348s Check the never-cache status of the password change view ... ok 348s test_password_change_done (admin_views.tests.NeverCacheTests.test_password_change_done) 348s Check the never-cache status of the password change done view ... ok 349s test_prepopulated_maxlength_localized (admin_views.tests.PrePopulatedTest.test_prepopulated_maxlength_localized) 349s Regression test for #15938: if USE_THOUSAND_SEPARATOR is set, make sure ... ok 349s test_prepopulated_off (admin_views.tests.PrePopulatedTest.test_prepopulated_off) ... ok 349s test_prepopulated_on (admin_views.tests.PrePopulatedTest.test_prepopulated_on) ... ok 349s test_view_only_add_form (admin_views.tests.PrePopulatedTest.test_view_only_add_form) 349s PrePopulatedPostReadOnlyAdmin.prepopulated_fields includes 'slug' ... ok 349s test_view_only_change_form (admin_views.tests.PrePopulatedTest.test_view_only_change_form) 349s PrePopulatedPostReadOnlyAdmin.prepopulated_fields includes 'slug'. That ... ok 350s test_limit_choices_to (admin_views.tests.RawIdFieldsTest.test_limit_choices_to) 350s Regression test for 14880 ... ok 350s test_limit_choices_to_isnull_false (admin_views.tests.RawIdFieldsTest.test_limit_choices_to_isnull_false) 350s Regression test for 20182 ... ok 350s test_limit_choices_to_isnull_true (admin_views.tests.RawIdFieldsTest.test_limit_choices_to_isnull_true) 350s Regression test for 20182 ... ok 350s test_list_display_method_same_name_as_reverse_accessor (admin_views.tests.RawIdFieldsTest.test_list_display_method_same_name_as_reverse_accessor) 350s Should be able to use a ModelAdmin method in list_display that has the ... ok 351s test_add_view (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_add_view) ... ok 351s test_add_view_without_preserved_filters (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_add_view_without_preserved_filters) ... ok 351s test_assert_url_equal (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_assert_url_equal) ... ok 351s test_change_view (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_change_view) ... ok 351s test_change_view_close_link (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_change_view_close_link) ... ok 351s test_change_view_without_preserved_filters (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_change_view_without_preserved_filters) ... ok 351s test_changelist_view (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_changelist_view) ... ok 351s test_delete_view (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_delete_view) ... ok 351s test_url_prefix (admin_views.tests.NamespacedAdminKeepChangeListFiltersTests.test_url_prefix) ... ok 351s test_change_form_renders_correct_null_choice_value (admin_views.tests.ReadonlyTest.test_change_form_renders_correct_null_choice_value) 351s Regression test for #17911. ... ok 351s test_correct_autoescaping (admin_views.tests.ReadonlyTest.test_correct_autoescaping) 351s Make sure that non-field readonly elements are properly autoescaped (#24461) ... ok 351s test_label_suffix_translated (admin_views.tests.ReadonlyTest.test_label_suffix_translated) ... ok 351s test_readonly_field_overrides (admin_views.tests.ReadonlyTest.test_readonly_field_overrides) 351s Regression test for #22087 - ModelForm Meta overrides are ignored by ... ok 351s test_readonly_foreignkey_links_custom_admin_site (admin_views.tests.ReadonlyTest.test_readonly_foreignkey_links_custom_admin_site) ... ok 351s test_readonly_foreignkey_links_default_admin_site (admin_views.tests.ReadonlyTest.test_readonly_foreignkey_links_default_admin_site) ... ok 351s test_readonly_get (admin_views.tests.ReadonlyTest.test_readonly_get) ... ok 351s test_readonly_manytomany (admin_views.tests.ReadonlyTest.test_readonly_manytomany) 351s Regression test for #13004 ... ok 351s test_readonly_manytomany_backwards_ref (admin_views.tests.ReadonlyTest.test_readonly_manytomany_backwards_ref) 351s Regression test for #16433 - backwards references for related objects ... ok 351s test_readonly_manytomany_forwards_ref (admin_views.tests.ReadonlyTest.test_readonly_manytomany_forwards_ref) ... ok 351s test_readonly_onetoone_backwards_ref (admin_views.tests.ReadonlyTest.test_readonly_onetoone_backwards_ref) 351s Can reference a reverse OneToOneField in ModelAdmin.readonly_fields. ... ok 351s test_readonly_post (admin_views.tests.ReadonlyTest.test_readonly_post) ... ok 351s test_readonly_text_field (admin_views.tests.ReadonlyTest.test_readonly_text_field) ... ok 351s test_user_password_change_limited_queryset (admin_views.tests.ReadonlyTest.test_user_password_change_limited_queryset) ... ok 352s test_save_as_continue_false (admin_views.tests.SaveAsTests.test_save_as_continue_false) 352s Saving a new object using "Save as new" redirects to the changelist ... ok 352s test_save_as_duplication (admin_views.tests.SaveAsTests.test_save_as_duplication) 352s 'save as' creates a new person ... ok 352s test_save_as_new_with_inlines_with_validation_errors (admin_views.tests.SaveAsTests.test_save_as_new_with_inlines_with_validation_errors) ... ok 352s test_save_as_new_with_validation_errors (admin_views.tests.SaveAsTests.test_save_as_new_with_validation_errors) 352s When you click "Save as new" and have a validation error, ... ok 352s test_save_as_new_with_validation_errors_with_inlines (admin_views.tests.SaveAsTests.test_save_as_new_with_validation_errors_with_inlines) ... ok 352s test_secure_view_shows_login_if_not_logged_in (admin_views.tests.SecureViewTests.test_secure_view_shows_login_if_not_logged_in) ... ok 352s test_staff_member_required_decorator_works_with_argument (admin_views.tests.SecureViewTests.test_staff_member_required_decorator_works_with_argument) 352s Staff_member_required decorator works with an argument ... ok 352s test_custom_changelist (admin_views.tests.TestCustomChangeList.test_custom_changelist) 352s Validate that a custom ChangeList class can be used (#9749) ... ok 352s test_generic_content_object_in_list_display (admin_views.tests.TestGenericRelations.test_generic_content_object_in_list_display) ... ok 352s test_GET_parent_add (admin_views.tests.TestInlineNotEditable.test_GET_parent_add) 352s InlineModelAdmin broken? ... ok 353s test_all_fields_hidden (admin_views.tests.TestLabelVisibility.test_all_fields_hidden) ... ok 353s test_all_fields_visible (admin_views.tests.TestLabelVisibility.test_all_fields_visible) ... ok 353s test_mixin (admin_views.tests.TestLabelVisibility.test_mixin) ... ok 353s test_lang_name_present (admin_views.tests.ValidXHTMLTests.test_lang_name_present) ... ok 353s test_m2o_recursive (m2o_recursive.tests.ManyToOneRecursiveTests.test_m2o_recursive) ... ok 353s test_m2o_recursive2 (m2o_recursive.tests.MultipleManyToOneRecursiveTests.test_m2o_recursive2) ... ok 353s test_async_unsafe (async.tests.AsyncUnsafeTest.test_async_unsafe) ... ok 353s test_async_unsafe_suppressed (async.tests.AsyncUnsafeTest.test_async_unsafe_suppressed) 353s Utility class which turns an awaitable that only works on the thread with ... ok 353s test_caches_local (async.tests.CacheTest.test_caches_local) ... ok 353s test_get_async_connection (async.tests.DatabaseConnectionTest.test_get_async_connection) ... ok 353s test_base_view_class_is_sync (async.tests.ViewTests.test_base_view_class_is_sync) 353s View and by extension any subclasses that don't define handlers are ... ok 353s test_http_method_not_allowed_responds_correctly (async.tests.ViewTests.test_http_method_not_allowed_responds_correctly) ... ok 353s test_mixed_views_raise_error (async.tests.ViewTests.test_mixed_views_raise_error) ... ok 353s test_options_handler_responds_correctly (async.tests.ViewTests.test_options_handler_responds_correctly) ... ok 353s test_views_are_correctly_marked (async.tests.ViewTests.test_views_are_correctly_marked) ... ok 353s test_content_type_already_present (middleware.test_security.SecurityMiddlewareTest.test_content_type_already_present) 353s The middleware will not override an "X-Content-Type-Options" header ... ok 353s test_content_type_off (middleware.test_security.SecurityMiddlewareTest.test_content_type_off) 353s With SECURE_CONTENT_TYPE_NOSNIFF False, the middleware does not add an ... ok 353s test_content_type_on (middleware.test_security.SecurityMiddlewareTest.test_content_type_on) 353s With SECURE_CONTENT_TYPE_NOSNIFF set to True, the middleware adds ... ok 353s test_coop_already_present (middleware.test_security.SecurityMiddlewareTest.test_coop_already_present) 353s The middleware doesn't override a "Cross-Origin-Opener-Policy" header ... ok 353s test_coop_default (middleware.test_security.SecurityMiddlewareTest.test_coop_default) 353s SECURE_CROSS_ORIGIN_OPENER_POLICY defaults to same-origin. ... ok 353s test_coop_off (middleware.test_security.SecurityMiddlewareTest.test_coop_off) 353s With SECURE_CROSS_ORIGIN_OPENER_POLICY set to None, the middleware does ... ok 353s test_coop_on (middleware.test_security.SecurityMiddlewareTest.test_coop_on) 353s With SECURE_CROSS_ORIGIN_OPENER_POLICY set to a valid value, the ... ok 353s test_no_redirect_ssl (middleware.test_security.SecurityMiddlewareTest.test_no_redirect_ssl) 353s The middleware does not redirect secure requests. ... ok 353s test_redirect_exempt (middleware.test_security.SecurityMiddlewareTest.test_redirect_exempt) 353s The middleware does not redirect requests with URL path matching an ... ok 353s test_redirect_ssl_host (middleware.test_security.SecurityMiddlewareTest.test_redirect_ssl_host) 353s The middleware redirects to SECURE_SSL_HOST if given. ... ok 353s test_referrer_policy_already_present (middleware.test_security.SecurityMiddlewareTest.test_referrer_policy_already_present) 353s The middleware will not override a "Referrer-Policy" header already ... ok 353s test_referrer_policy_off (middleware.test_security.SecurityMiddlewareTest.test_referrer_policy_off) 353s With SECURE_REFERRER_POLICY set to None, the middleware does not add a ... ok 353s test_referrer_policy_on (middleware.test_security.SecurityMiddlewareTest.test_referrer_policy_on) 353s With SECURE_REFERRER_POLICY set to a valid value, the middleware adds a ... ok 353s test_ssl_redirect_off (middleware.test_security.SecurityMiddlewareTest.test_ssl_redirect_off) 353s With SECURE_SSL_REDIRECT False, the middleware does not redirect. ... ok 353s test_ssl_redirect_on (middleware.test_security.SecurityMiddlewareTest.test_ssl_redirect_on) 353s With SECURE_SSL_REDIRECT True, the middleware redirects any non-secure ... ok 353s test_sts_already_present (middleware.test_security.SecurityMiddlewareTest.test_sts_already_present) 353s The middleware will not override a "Strict-Transport-Security" header ... ok 353s test_sts_include_subdomains (middleware.test_security.SecurityMiddlewareTest.test_sts_include_subdomains) 353s With SECURE_HSTS_SECONDS non-zero and SECURE_HSTS_INCLUDE_SUBDOMAINS ... ok 353s test_sts_no_include_subdomains (middleware.test_security.SecurityMiddlewareTest.test_sts_no_include_subdomains) 353s With SECURE_HSTS_SECONDS non-zero and SECURE_HSTS_INCLUDE_SUBDOMAINS ... ok 353s test_sts_no_preload (middleware.test_security.SecurityMiddlewareTest.test_sts_no_preload) 353s With SECURE_HSTS_SECONDS non-zero and SECURE_HSTS_PRELOAD ... ok 353s test_sts_off (middleware.test_security.SecurityMiddlewareTest.test_sts_off) 353s With SECURE_HSTS_SECONDS=0, the middleware does not add a ... ok 353s test_sts_on (middleware.test_security.SecurityMiddlewareTest.test_sts_on) 353s With SECURE_HSTS_SECONDS=3600, the middleware adds ... ok 353s test_sts_only_if_secure (middleware.test_security.SecurityMiddlewareTest.test_sts_only_if_secure) 353s The "Strict-Transport-Security" header is not added to responses going ... ok 353s test_sts_preload (middleware.test_security.SecurityMiddlewareTest.test_sts_preload) 353s With SECURE_HSTS_SECONDS non-zero and SECURE_HSTS_PRELOAD True, the ... ok 353s test_sts_subdomains_and_preload (middleware.test_security.SecurityMiddlewareTest.test_sts_subdomains_and_preload) 353s With SECURE_HSTS_SECONDS non-zero, SECURE_HSTS_INCLUDE_SUBDOMAINS and ... ok 353s test_404_error_reporting (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_404_error_reporting) ... ok 353s test_404_error_reporting_ignored_url (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_404_error_reporting_ignored_url) ... ok 353s test_404_error_reporting_no_referer (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_404_error_reporting_no_referer) ... ok 353s test_custom_request_checker (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_custom_request_checker) ... ok 353s test_referer_equal_to_requested_url (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_referer_equal_to_requested_url) 353s Some bots set the referer to the current URL to avoid being blocked by ... ok 353s test_referer_equal_to_requested_url_on_another_domain (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_referer_equal_to_requested_url_on_another_domain) ... ok 353s test_referer_equal_to_requested_url_without_trailing_slash_with_append_slash (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_referer_equal_to_requested_url_without_trailing_slash_with_append_slash) ... ok 353s test_referer_equal_to_requested_url_without_trailing_slash_with_no_append_slash (middleware.tests.BrokenLinkEmailsMiddlewareTest.test_referer_equal_to_requested_url_without_trailing_slash_with_no_append_slash) ... ok 354s test_append_slash_disabled (middleware.tests.CommonMiddlewareTest.test_append_slash_disabled) 354s Disabling append slash functionality should leave slashless URLs alone. ... ok 354s test_append_slash_disabled_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_append_slash_disabled_custom_urlconf) 354s Disabling append slash functionality should leave slashless URLs alone. ... ok 354s test_append_slash_have_slash (middleware.tests.CommonMiddlewareTest.test_append_slash_have_slash) 354s URLs with slashes should go unmolested. ... ok 354s test_append_slash_have_slash_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_append_slash_have_slash_custom_urlconf) 354s URLs with slashes should go unmolested. ... ok 354s test_append_slash_leading_slashes (middleware.tests.CommonMiddlewareTest.test_append_slash_leading_slashes) 354s Paths starting with two slashes are escaped to prevent open redirects. ... ok 354s test_append_slash_no_redirect_on_POST_in_DEBUG (middleware.tests.CommonMiddlewareTest.test_append_slash_no_redirect_on_POST_in_DEBUG) 354s While in debug mode, an exception is raised with a warning ... ok 354s test_append_slash_no_redirect_on_POST_in_DEBUG_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_append_slash_no_redirect_on_POST_in_DEBUG_custom_urlconf) 354s While in debug mode, an exception is raised with a warning ... ok 354s test_append_slash_opt_out (middleware.tests.CommonMiddlewareTest.test_append_slash_opt_out) 354s Views marked with @no_append_slash should be left alone. ... ok 354s test_append_slash_quoted (middleware.tests.CommonMiddlewareTest.test_append_slash_quoted) 354s URLs which require quoting should be redirected to their slash version. ... ok 354s test_append_slash_quoted_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_append_slash_quoted_custom_urlconf) 354s URLs which require quoting should be redirected to their slash version. ... ok 354s test_append_slash_redirect (middleware.tests.CommonMiddlewareTest.test_append_slash_redirect) 354s APPEND_SLASH should redirect slashless URLs to a valid pattern. ... ok 354s test_append_slash_redirect_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_append_slash_redirect_custom_urlconf) 354s APPEND_SLASH should redirect slashless URLs to a valid pattern. ... ok 354s test_append_slash_redirect_querystring (middleware.tests.CommonMiddlewareTest.test_append_slash_redirect_querystring) 354s APPEND_SLASH should preserve querystrings when redirecting. ... ok 354s test_append_slash_redirect_querystring_have_slash (middleware.tests.CommonMiddlewareTest.test_append_slash_redirect_querystring_have_slash) 354s APPEND_SLASH should append slash to path when redirecting a request ... ok 354s test_append_slash_slashless_resource (middleware.tests.CommonMiddlewareTest.test_append_slash_slashless_resource) 354s Matches to explicit slashless URLs should go unmolested. ... ok 354s test_append_slash_slashless_resource_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_append_slash_slashless_resource_custom_urlconf) 354s Matches to explicit slashless URLs should go unmolested. ... ok 354s test_append_slash_slashless_unknown (middleware.tests.CommonMiddlewareTest.test_append_slash_slashless_unknown) 354s APPEND_SLASH should not redirect to unknown resources. ... ok 354s test_append_slash_slashless_unknown_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_append_slash_slashless_unknown_custom_urlconf) 354s APPEND_SLASH should not redirect to unknown resources. ... ok 354s test_content_length_header_added (middleware.tests.CommonMiddlewareTest.test_content_length_header_added) ... ok 354s test_content_length_header_not_added_for_streaming_response (middleware.tests.CommonMiddlewareTest.test_content_length_header_not_added_for_streaming_response) ... ok 354s test_content_length_header_not_changed (middleware.tests.CommonMiddlewareTest.test_content_length_header_not_changed) ... ok 354s test_disallowed_user_agents (middleware.tests.CommonMiddlewareTest.test_disallowed_user_agents) ... ok 354s test_non_ascii_query_string_does_not_crash (middleware.tests.CommonMiddlewareTest.test_non_ascii_query_string_does_not_crash) 354s Regression test for #15152 ... ok 354s test_prepend_www (middleware.tests.CommonMiddlewareTest.test_prepend_www) ... ok 354s test_prepend_www_append_slash_have_slash (middleware.tests.CommonMiddlewareTest.test_prepend_www_append_slash_have_slash) ... ok 354s test_prepend_www_append_slash_have_slash_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_prepend_www_append_slash_have_slash_custom_urlconf) ... ok 354s test_prepend_www_append_slash_slashless (middleware.tests.CommonMiddlewareTest.test_prepend_www_append_slash_slashless) ... ok 354s test_prepend_www_append_slash_slashless_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_prepend_www_append_slash_slashless_custom_urlconf) ... ok 354s test_prepend_www_custom_urlconf (middleware.tests.CommonMiddlewareTest.test_prepend_www_custom_urlconf) ... ok 354s test_response_redirect_class (middleware.tests.CommonMiddlewareTest.test_response_redirect_class) ... ok 354s test_response_redirect_class_subclass (middleware.tests.CommonMiddlewareTest.test_response_redirect_class_subclass) ... ok 354s test_etag_extended_cache_control (middleware.tests.ConditionalGetMiddlewareTest.test_etag_extended_cache_control) ... ok 354s test_if_modified_since_and_client_error (middleware.tests.ConditionalGetMiddlewareTest.test_if_modified_since_and_client_error) ... ok 354s test_if_modified_since_and_last_modified_in_the_future (middleware.tests.ConditionalGetMiddlewareTest.test_if_modified_since_and_last_modified_in_the_future) ... ok 354s test_if_modified_since_and_last_modified_in_the_past (middleware.tests.ConditionalGetMiddlewareTest.test_if_modified_since_and_last_modified_in_the_past) ... ok 354s test_if_modified_since_and_no_last_modified (middleware.tests.ConditionalGetMiddlewareTest.test_if_modified_since_and_no_last_modified) ... ok 354s test_if_modified_since_and_redirect (middleware.tests.ConditionalGetMiddlewareTest.test_if_modified_since_and_redirect) ... ok 354s test_if_modified_since_and_same_last_modified (middleware.tests.ConditionalGetMiddlewareTest.test_if_modified_since_and_same_last_modified) ... ok 354s test_if_none_match_and_client_error (middleware.tests.ConditionalGetMiddlewareTest.test_if_none_match_and_client_error) ... ok 354s test_if_none_match_and_different_etag (middleware.tests.ConditionalGetMiddlewareTest.test_if_none_match_and_different_etag) ... ok 354s test_if_none_match_and_no_etag (middleware.tests.ConditionalGetMiddlewareTest.test_if_none_match_and_no_etag) ... ok 354s test_if_none_match_and_redirect (middleware.tests.ConditionalGetMiddlewareTest.test_if_none_match_and_redirect) ... ok 354s test_if_none_match_and_same_etag (middleware.tests.ConditionalGetMiddlewareTest.test_if_none_match_and_same_etag) ... ok 354s test_middleware_calculates_etag (middleware.tests.ConditionalGetMiddlewareTest.test_middleware_calculates_etag) ... ok 354s test_middleware_wont_overwrite_etag (middleware.tests.ConditionalGetMiddlewareTest.test_middleware_wont_overwrite_etag) ... ok 354s test_no_etag_no_store_cache (middleware.tests.ConditionalGetMiddlewareTest.test_no_etag_no_store_cache) ... ok 354s test_no_etag_response_empty_content (middleware.tests.ConditionalGetMiddlewareTest.test_no_etag_response_empty_content) ... ok 354s test_no_etag_streaming_response (middleware.tests.ConditionalGetMiddlewareTest.test_no_etag_streaming_response) ... ok 354s test_no_head (middleware.tests.ConditionalGetMiddlewareTest.test_no_head) 354s ConditionalGetMiddleware shouldn't compute and return an ETag on a ... ok 354s test_no_if_modified_since_and_last_modified (middleware.tests.ConditionalGetMiddlewareTest.test_no_if_modified_since_and_last_modified) ... ok 354s test_no_if_none_match_and_etag (middleware.tests.ConditionalGetMiddlewareTest.test_no_if_none_match_and_etag) ... ok 354s test_no_unsafe (middleware.tests.ConditionalGetMiddlewareTest.test_no_unsafe) 354s ConditionalGetMiddleware shouldn't return a conditional response on an ... ok 354s test_not_modified_headers (middleware.tests.ConditionalGetMiddlewareTest.test_not_modified_headers) 354s The 304 Not Modified response should include only the headers required ... ok 354s test_etag_match (middleware.tests.ETagGZipMiddlewareTest.test_etag_match) 354s GZipMiddleware allows 304 Not Modified responses. ... ok 354s test_strong_etag_modified (middleware.tests.ETagGZipMiddlewareTest.test_strong_etag_modified) 354s GZipMiddleware makes a strong ETag weak. ... ok 354s test_weak_etag_not_modified (middleware.tests.ETagGZipMiddlewareTest.test_weak_etag_not_modified) 354s GZipMiddleware doesn't modify a weak ETag. ... ok 354s test_compress_async_streaming_response (middleware.tests.GZipMiddlewareTest.test_compress_async_streaming_response) 354s Compression is performed on responses with async streaming content. ... ok 354s test_compress_deterministic (middleware.tests.GZipMiddlewareTest.test_compress_deterministic) 354s Compression results are the same for the same content and don't ... ok 354s test_compress_file_response (middleware.tests.GZipMiddlewareTest.test_compress_file_response) 354s Compression is performed on FileResponse. ... ok 354s test_compress_non_200_response (middleware.tests.GZipMiddlewareTest.test_compress_non_200_response) 354s Compression is performed on responses with a status other than 200 ... ok 354s test_compress_response (middleware.tests.GZipMiddlewareTest.test_compress_response) 354s Compression is performed on responses with compressible content. ... ok 354s test_compress_streaming_response (middleware.tests.GZipMiddlewareTest.test_compress_streaming_response) 354s Compression is performed on responses with streaming content. ... ok 354s test_compress_streaming_response_unicode (middleware.tests.GZipMiddlewareTest.test_compress_streaming_response_unicode) 354s Compression is performed on responses with streaming Unicode content. ... ok 354s test_no_compress_compressed_response (middleware.tests.GZipMiddlewareTest.test_no_compress_compressed_response) 354s Compression isn't performed on responses that are already compressed. ... ok 354s test_no_compress_incompressible_response (middleware.tests.GZipMiddlewareTest.test_no_compress_incompressible_response) 354s Compression isn't performed on responses with incompressible content. ... ok 354s test_no_compress_short_response (middleware.tests.GZipMiddlewareTest.test_no_compress_short_response) 354s Compression isn't performed on responses with short content. ... ok 354s test_random_bytes (middleware.tests.GZipMiddlewareTest.test_random_bytes) 354s A random number of bytes is added to mitigate the BREACH attack. ... ok 354s test_random_bytes_streaming_response (middleware.tests.GZipMiddlewareTest.test_random_bytes_streaming_response) 354s A random number of bytes is added to mitigate the BREACH attack. ... ok 354s test_defaults_sameorigin (middleware.tests.XFrameOptionsMiddlewareTest.test_defaults_sameorigin) 354s If the X_FRAME_OPTIONS setting is not set then it defaults to ... ok 354s test_deny (middleware.tests.XFrameOptionsMiddlewareTest.test_deny) 354s The X_FRAME_OPTIONS setting can be set to DENY to have the middleware ... ok 354s test_dont_set_if_set (middleware.tests.XFrameOptionsMiddlewareTest.test_dont_set_if_set) 354s If the X-Frame-Options header is already set then the middleware does ... ok 354s test_is_extendable (middleware.tests.XFrameOptionsMiddlewareTest.test_is_extendable) 354s The XFrameOptionsMiddleware method that determines the X-Frame-Options ... ok 354s test_response_exempt (middleware.tests.XFrameOptionsMiddlewareTest.test_response_exempt) 354s If the response has an xframe_options_exempt attribute set to False ... ok 354s test_same_origin (middleware.tests.XFrameOptionsMiddlewareTest.test_same_origin) 354s The X_FRAME_OPTIONS setting can be set to SAMEORIGIN to have the ... ok 354s test_composite_primary_key (inspectdb.tests.InspectDBTransactionalTests.test_composite_primary_key) ... ok 354s test_foreign_data_wrapper (inspectdb.tests.InspectDBTransactionalTests.test_foreign_data_wrapper) ... skipped 'PostgreSQL specific SQL' 354s test_include_materialized_views (inspectdb.tests.InspectDBTransactionalTests.test_include_materialized_views) 354s inspectdb --include-views creates models for materialized views. ... skipped "Database doesn't support feature(s): can_introspect_materialized_views" 354s test_include_partitions (inspectdb.tests.InspectDBTransactionalTests.test_include_partitions) 354s inspectdb --include-partitions creates models for partitions. ... skipped 'PostgreSQL specific SQL' 354s test_include_views (inspectdb.tests.InspectDBTransactionalTests.test_include_views) 354s inspectdb --include-views creates models for database views. ... ok 354s test_covering_ignored (indexes.tests.CoveringIndexIgnoredTests.test_covering_ignored) ... ok 354s test_covering_func_index (indexes.tests.CoveringIndexTests.test_covering_func_index) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 354s test_covering_index (indexes.tests.CoveringIndexTests.test_covering_index) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 354s test_covering_partial_index (indexes.tests.CoveringIndexTests.test_covering_partial_index) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 354s test_condition_ignored (indexes.tests.PartialIndexConditionIgnoredTests.test_condition_ignored) ... skipped 'Database has feature(s) supports_partial_indexes' 355s test_boolean_restriction_partial (indexes.tests.PartialIndexTests.test_boolean_restriction_partial) ... ok 355s test_integer_restriction_partial (indexes.tests.PartialIndexTests.test_integer_restriction_partial) ... ok 355s test_is_null_condition (indexes.tests.PartialIndexTests.test_is_null_condition) ... ok 355s test_multiple_conditions (indexes.tests.PartialIndexTests.test_multiple_conditions) ... ok 355s test_partial_func_index (indexes.tests.PartialIndexTests.test_partial_func_index) ... ok 355s test_partial_index (indexes.tests.PartialIndexTests.test_partial_index) ... ok 355s test_no_index_for_foreignkey (indexes.tests.SchemaIndexesMySQLTests.test_no_index_for_foreignkey) 355s MySQL on InnoDB already creates indexes automatically for foreign keys. ... skipped 'MySQL tests' 355s test_create_index_ignores_opclasses (indexes.tests.SchemaIndexesNotPostgreSQLTests.test_create_index_ignores_opclasses) ... ok 355s test_ops_class (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class) ... skipped 'PostgreSQL tests' 355s test_ops_class_columns_lists_sql (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_columns_lists_sql) ... skipped 'PostgreSQL tests' 355s test_ops_class_descending (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_descending) ... skipped 'PostgreSQL tests' 355s test_ops_class_descending_columns_list_sql (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_descending_columns_list_sql) ... skipped 'PostgreSQL tests' 355s test_ops_class_descending_partial (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_descending_partial) ... skipped 'PostgreSQL tests' 355s test_ops_class_include (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_include) ... skipped 'PostgreSQL tests' 355s test_ops_class_include_tablespace (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_include_tablespace) ... skipped 'PostgreSQL tests' 355s test_ops_class_multiple_columns (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_multiple_columns) ... skipped 'PostgreSQL tests' 355s test_ops_class_partial (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_partial) ... skipped 'PostgreSQL tests' 355s test_ops_class_partial_tablespace (indexes.tests.SchemaIndexesPostgreSQLTests.test_ops_class_partial_tablespace) ... skipped 'PostgreSQL tests' 355s test_text_indexes (indexes.tests.SchemaIndexesPostgreSQLTests.test_text_indexes) 355s Test creation of PostgreSQL-specific text indexes (#12234) ... skipped 'PostgreSQL tests' 355s test_virtual_relation_indexes (indexes.tests.SchemaIndexesPostgreSQLTests.test_virtual_relation_indexes) 355s Test indexes are not created for related objects ... skipped 'PostgreSQL tests' 355s test_extract_function_traversal (utils_tests.test_archive.TestArchiveInvalid.test_extract_function_traversal) ... ok 355s test_run_loop_catches_stopiteration (utils_tests.test_autoreload.BaseReloaderTests.test_run_loop_catches_stopiteration) ... ok 355s test_run_loop_stop_and_return (utils_tests.test_autoreload.BaseReloaderTests.test_run_loop_stop_and_return) ... ok 355s test_wait_for_apps_ready_checks_for_exception (utils_tests.test_autoreload.BaseReloaderTests.test_wait_for_apps_ready_checks_for_exception) ... ok 355s test_wait_for_apps_ready_without_exception (utils_tests.test_autoreload.BaseReloaderTests.test_wait_for_apps_ready_without_exception) ... ok 355s test_watch_dir_with_unresolvable_path (utils_tests.test_autoreload.BaseReloaderTests.test_watch_dir_with_unresolvable_path) ... ok 355s test_watch_files_with_recursive_glob (utils_tests.test_autoreload.BaseReloaderTests.test_watch_files_with_recursive_glob) ... ok 355s test_watch_with_glob (utils_tests.test_autoreload.BaseReloaderTests.test_watch_with_glob) ... ok 355s test_watchman_available (utils_tests.test_autoreload.GetReloaderTests.test_watchman_available) ... ok 355s test_watchman_unavailable (utils_tests.test_autoreload.GetReloaderTests.test_watchman_unavailable) ... ok 355s test_manage_py (utils_tests.test_autoreload.RestartWithReloaderTests.test_manage_py) ... ok 355s test_python_m_django (utils_tests.test_autoreload.RestartWithReloaderTests.test_python_m_django) ... ok 355s test_calls_start_django (utils_tests.test_autoreload.RunWithReloaderTests.test_calls_start_django) ... ok 355s test_calls_sys_exit (utils_tests.test_autoreload.RunWithReloaderTests.test_calls_sys_exit) ... ok 355s test_swallows_keyboard_interrupt (utils_tests.test_autoreload.RunWithReloaderTests.test_swallows_keyboard_interrupt) ... ok 355s test_check_errors_called (utils_tests.test_autoreload.StartDjangoTests.test_check_errors_called) ... ok 355s test_echo_on_called (utils_tests.test_autoreload.StartDjangoTests.test_echo_on_called) ... ok 355s test_starts_thread_with_args (utils_tests.test_autoreload.StartDjangoTests.test_starts_thread_with_args) ... ok 355s test_glob (utils_tests.test_autoreload.StatReloaderTests.test_glob) ... ok 355s test_glob_recursive (utils_tests.test_autoreload.StatReloaderTests.test_glob_recursive) ... ok 355s test_multiple_globs (utils_tests.test_autoreload.StatReloaderTests.test_multiple_globs) ... ok 355s test_multiple_recursive_globs (utils_tests.test_autoreload.StatReloaderTests.test_multiple_recursive_globs) ... ok 355s test_nested_glob_recursive (utils_tests.test_autoreload.StatReloaderTests.test_nested_glob_recursive) ... ok 355s test_overlapping_glob_recursive (utils_tests.test_autoreload.StatReloaderTests.test_overlapping_glob_recursive) ... ok 355s test_overlapping_globs (utils_tests.test_autoreload.StatReloaderTests.test_overlapping_globs) ... ok 355s test_snapshot_files_ignores_missing_files (utils_tests.test_autoreload.StatReloaderTests.test_snapshot_files_ignores_missing_files) ... ok 355s test_snapshot_files_updates (utils_tests.test_autoreload.StatReloaderTests.test_snapshot_files_updates) ... ok 355s test_snapshot_files_with_duplicates (utils_tests.test_autoreload.StatReloaderTests.test_snapshot_files_with_duplicates) ... ok 355s test_tick_does_not_trigger_twice (utils_tests.test_autoreload.StatReloaderTests.test_tick_does_not_trigger_twice) ... ok 355s test_mutates_error_files (utils_tests.test_autoreload.TestCheckErrors.test_mutates_error_files) ... ok 355s test_entrypoint_fallback (utils_tests.test_autoreload.TestChildArguments.test_entrypoint_fallback) ... ok 355s test_exe_fallback (utils_tests.test_autoreload.TestChildArguments.test_exe_fallback) ... ok 355s test_module_no_spec (utils_tests.test_autoreload.TestChildArguments.test_module_no_spec) ... ok 355s test_raises_runtimeerror (utils_tests.test_autoreload.TestChildArguments.test_raises_runtimeerror) ... ok 355s test_run_as_module (utils_tests.test_autoreload.TestChildArguments.test_run_as_module) ... ok 355s test_run_as_non_django_module (utils_tests.test_autoreload.TestChildArguments.test_run_as_non_django_module) ... ok 355s test_run_as_non_django_module_non_package (utils_tests.test_autoreload.TestChildArguments.test_run_as_non_django_module_non_package) ... ok 355s test_warnoptions (utils_tests.test_autoreload.TestChildArguments.test_warnoptions) ... ok 355s test_xoptions (utils_tests.test_autoreload.TestChildArguments.test_xoptions) ... ok 355s test_common_roots (utils_tests.test_autoreload.TestCommonRoots.test_common_roots) ... ok 356s test_bytecode_conversion_to_source (utils_tests.test_autoreload.TestIterModulesAndFiles.test_bytecode_conversion_to_source) 356s .pyc and .pyo files are included in the files list. ... ok 356s test_check_errors (utils_tests.test_autoreload.TestIterModulesAndFiles.test_check_errors) 356s When a file containing an error is imported in a function wrapped by ... ok 356s test_check_errors_catches_all_exceptions (utils_tests.test_autoreload.TestIterModulesAndFiles.test_check_errors_catches_all_exceptions) 356s Since Python may raise arbitrary exceptions when importing code, ... ok 356s test_file_added (utils_tests.test_autoreload.TestIterModulesAndFiles.test_file_added) 356s When a file is added, it's returned by iter_all_python_module_files(). ... ok 356s test_main_module_is_resolved (utils_tests.test_autoreload.TestIterModulesAndFiles.test_main_module_is_resolved) ... ok 356s test_main_module_without_file_is_not_resolved (utils_tests.test_autoreload.TestIterModulesAndFiles.test_main_module_without_file_is_not_resolved) ... ok 356s test_module_without_spec (utils_tests.test_autoreload.TestIterModulesAndFiles.test_module_without_spec) ... ok 356s test_path_with_embedded_null_bytes (utils_tests.test_autoreload.TestIterModulesAndFiles.test_path_with_embedded_null_bytes) ... ok 356s test_paths_are_pathlib_instances (utils_tests.test_autoreload.TestIterModulesAndFiles.test_paths_are_pathlib_instances) ... ok 356s test_weakref_in_sys_module (utils_tests.test_autoreload.TestIterModulesAndFiles.test_weakref_in_sys_module) 356s iter_all_python_module_file() ignores weakref modules. ... ok 356s test_zip_reload (utils_tests.test_autoreload.TestIterModulesAndFiles.test_zip_reload) 356s Modules imported from zipped files have their archive location included ... ok 356s test_no_exception (utils_tests.test_autoreload.TestRaiseLastException.test_no_exception) ... ok 356s test_raises_custom_exception (utils_tests.test_autoreload.TestRaiseLastException.test_raises_custom_exception) ... ok 356s test_raises_exception (utils_tests.test_autoreload.TestRaiseLastException.test_raises_exception) ... ok 356s test_raises_exception_with_context (utils_tests.test_autoreload.TestRaiseLastException.test_raises_exception_with_context) ... ok 356s test_sys_paths_absolute (utils_tests.test_autoreload.TestSysPathDirectories.test_sys_paths_absolute) ... ok 356s test_sys_paths_directories (utils_tests.test_autoreload.TestSysPathDirectories.test_sys_paths_directories) ... ok 356s test_sys_paths_non_existing (utils_tests.test_autoreload.TestSysPathDirectories.test_sys_paths_non_existing) ... ok 356s test_sys_paths_with_directories (utils_tests.test_autoreload.TestSysPathDirectories.test_sys_paths_with_directories) ... ok 356s test_is_django_module (utils_tests.test_autoreload.TestUtilities.test_is_django_module) ... ok 356s test_is_django_path (utils_tests.test_autoreload.TestUtilities.test_is_django_path) ... ok 356s test_check_availability (utils_tests.test_autoreload.WatchmanReloaderTests.test_check_availability) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_check_availability_lower_version (utils_tests.test_autoreload.WatchmanReloaderTests.test_check_availability_lower_version) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_check_server_status (utils_tests.test_autoreload.WatchmanReloaderTests.test_check_server_status) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_check_server_status_raises_error (utils_tests.test_autoreload.WatchmanReloaderTests.test_check_server_status_raises_error) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_glob (utils_tests.test_autoreload.WatchmanReloaderTests.test_glob) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_glob_recursive (utils_tests.test_autoreload.WatchmanReloaderTests.test_glob_recursive) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_multiple_globs (utils_tests.test_autoreload.WatchmanReloaderTests.test_multiple_globs) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_multiple_recursive_globs (utils_tests.test_autoreload.WatchmanReloaderTests.test_multiple_recursive_globs) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_nested_glob_recursive (utils_tests.test_autoreload.WatchmanReloaderTests.test_nested_glob_recursive) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_overlapping_glob_recursive (utils_tests.test_autoreload.WatchmanReloaderTests.test_overlapping_glob_recursive) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_overlapping_globs (utils_tests.test_autoreload.WatchmanReloaderTests.test_overlapping_globs) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_pywatchman_not_available (utils_tests.test_autoreload.WatchmanReloaderTests.test_pywatchman_not_available) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_setting_timeout_from_environment_variable (utils_tests.test_autoreload.WatchmanReloaderTests.test_setting_timeout_from_environment_variable) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_update_watches_raises_exceptions (utils_tests.test_autoreload.WatchmanReloaderTests.test_update_watches_raises_exceptions) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_watch_glob_ignores_non_existing_directories_two_levels (utils_tests.test_autoreload.WatchmanReloaderTests.test_watch_glob_ignores_non_existing_directories_two_levels) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_watch_glob_multiple_patterns (utils_tests.test_autoreload.WatchmanReloaderTests.test_watch_glob_multiple_patterns) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_watch_glob_uses_existing_parent_directories (utils_tests.test_autoreload.WatchmanReloaderTests.test_watch_glob_uses_existing_parent_directories) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_watched_roots_contains_directory_globs (utils_tests.test_autoreload.WatchmanReloaderTests.test_watched_roots_contains_directory_globs) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_watched_roots_contains_files (utils_tests.test_autoreload.WatchmanReloaderTests.test_watched_roots_contains_files) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_watched_roots_contains_sys_path (utils_tests.test_autoreload.WatchmanReloaderTests.test_watched_roots_contains_sys_path) ... skipped 'Watchman unavailable: pywatchman not installed.' 356s test_all_initialized_only (utils_tests.test_connection.BaseConnectionHandlerTests.test_all_initialized_only) ... ok 356s test_create_connection (utils_tests.test_connection.BaseConnectionHandlerTests.test_create_connection) ... ok 356s test_constant_time_compare (utils_tests.test_crypto.TestUtilsCryptoMisc.test_constant_time_compare) ... ok 356s test_invalid_algorithm (utils_tests.test_crypto.TestUtilsCryptoMisc.test_invalid_algorithm) ... ok 356s test_salted_hmac (utils_tests.test_crypto.TestUtilsCryptoMisc.test_salted_hmac) ... ok 356s test_copy (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_copy) ... ok 356s test_create_with_invalid_key (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_create_with_invalid_key) ... ok 356s test_create_with_invalid_values (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_create_with_invalid_values) ... ok 356s test_del (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_del) ... ok 356s test_dict (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_dict) ... ok 356s test_equal (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_equal) ... ok 356s test_getitem (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_getitem) ... ok 356s test_in (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_in) ... ok 356s test_items (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_items) ... ok 356s test_list (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_list) ... ok 356s test_repr (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_repr) ... ok 356s test_set (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_set) ... ok 356s test_str (utils_tests.test_datastructures.CaseInsensitiveMappingTests.test_str) ... ok 356s test_dictwrapper (utils_tests.test_datastructures.DictWrapperTests.test_dictwrapper) ... ok 356s test_custom_warning (utils_tests.test_datastructures.ImmutableListTests.test_custom_warning) ... ok 356s test_sort (utils_tests.test_datastructures.ImmutableListTests.test_sort) ... ok 356s test_appendlist (utils_tests.test_datastructures.MultiValueDictTests.test_appendlist) ... ok 356s test_copy (utils_tests.test_datastructures.MultiValueDictTests.test_copy) ... ok 356s test_deepcopy (utils_tests.test_datastructures.MultiValueDictTests.test_deepcopy) ... ok 356s test_dict_translation (utils_tests.test_datastructures.MultiValueDictTests.test_dict_translation) ... ok 356s test_getlist_default (utils_tests.test_datastructures.MultiValueDictTests.test_getlist_default) ... ok 356s test_getlist_doesnt_mutate (utils_tests.test_datastructures.MultiValueDictTests.test_getlist_doesnt_mutate) ... ok 356s test_getlist_none_empty_values (utils_tests.test_datastructures.MultiValueDictTests.test_getlist_none_empty_values) ... ok 356s test_internal_getlist_does_mutate (utils_tests.test_datastructures.MultiValueDictTests.test_internal_getlist_does_mutate) ... ok 356s test_multivaluedict (utils_tests.test_datastructures.MultiValueDictTests.test_multivaluedict) ... ok 356s test_pickle (utils_tests.test_datastructures.MultiValueDictTests.test_pickle) ... ok 356s test_repr (utils_tests.test_datastructures.MultiValueDictTests.test_repr) ... ok 356s test_setdefault (utils_tests.test_datastructures.MultiValueDictTests.test_setdefault) ... ok 356s test_setitem (utils_tests.test_datastructures.MultiValueDictTests.test_setitem) ... ok 356s test_update_dict_arg (utils_tests.test_datastructures.MultiValueDictTests.test_update_dict_arg) ... ok 356s test_update_kwargs (utils_tests.test_datastructures.MultiValueDictTests.test_update_kwargs) ... ok 356s test_update_multivaluedict_arg (utils_tests.test_datastructures.MultiValueDictTests.test_update_multivaluedict_arg) ... ok 356s test_update_no_args (utils_tests.test_datastructures.MultiValueDictTests.test_update_no_args) ... ok 356s test_update_raises_correct_exceptions (utils_tests.test_datastructures.MultiValueDictTests.test_update_raises_correct_exceptions) ... ok 356s test_update_too_many_args (utils_tests.test_datastructures.MultiValueDictTests.test_update_too_many_args) ... ok 356s test_update_with_empty_iterable (utils_tests.test_datastructures.MultiValueDictTests.test_update_with_empty_iterable) ... ok 356s test_update_with_iterable_of_pairs (utils_tests.test_datastructures.MultiValueDictTests.test_update_with_iterable_of_pairs) ... ok 356s test_bool (utils_tests.test_datastructures.OrderedSetTests.test_bool) ... ok 356s test_contains (utils_tests.test_datastructures.OrderedSetTests.test_contains) ... ok 356s test_discard (utils_tests.test_datastructures.OrderedSetTests.test_discard) ... ok 356s test_init_with_iterable (utils_tests.test_datastructures.OrderedSetTests.test_init_with_iterable) ... ok 356s test_len (utils_tests.test_datastructures.OrderedSetTests.test_len) ... ok 356s test_remove (utils_tests.test_datastructures.OrderedSetTests.test_remove) ... ok 356s test_repr (utils_tests.test_datastructures.OrderedSetTests.test_repr) ... ok 356s test_reversed (utils_tests.test_datastructures.OrderedSetTests.test_reversed) ... ok 356s test_P_format (utils_tests.test_dateformat.DateFormatTests.test_P_format) ... ok 356s test_S_format (utils_tests.test_dateformat.DateFormatTests.test_S_format) ... ok 356s test_Y_format_year_before_1000 (utils_tests.test_dateformat.DateFormatTests.test_Y_format_year_before_1000) ... ok 356s test_am_pm (utils_tests.test_dateformat.DateFormatTests.test_am_pm) ... ok 356s test_date (utils_tests.test_dateformat.DateFormatTests.test_date) ... ok 356s test_date_formats (utils_tests.test_dateformat.DateFormatTests.test_date_formats) ... ok 356s test_date_formats_c_format (utils_tests.test_dateformat.DateFormatTests.test_date_formats_c_format) ... ok 356s test_dateformat (utils_tests.test_dateformat.DateFormatTests.test_dateformat) ... ok 356s test_datetime_with_local_tzinfo (utils_tests.test_dateformat.DateFormatTests.test_datetime_with_local_tzinfo) ... ok 356s test_datetime_with_tzinfo (utils_tests.test_dateformat.DateFormatTests.test_datetime_with_tzinfo) ... ok 356s test_day_of_year_leap (utils_tests.test_dateformat.DateFormatTests.test_day_of_year_leap) ... ok 356s test_e_format_with_named_time_zone (utils_tests.test_dateformat.DateFormatTests.test_e_format_with_named_time_zone) ... ok 356s test_e_format_with_time_zone_with_unimplemented_tzname (utils_tests.test_dateformat.DateFormatTests.test_e_format_with_time_zone_with_unimplemented_tzname) ... ok 356s test_empty_format (utils_tests.test_dateformat.DateFormatTests.test_empty_format) ... ok 356s test_epoch (utils_tests.test_dateformat.DateFormatTests.test_epoch) ... ok 356s test_futuredates (utils_tests.test_dateformat.DateFormatTests.test_futuredates) ... ok 356s test_invalid_time_format_specifiers (utils_tests.test_dateformat.DateFormatTests.test_invalid_time_format_specifiers) ... ok 356s test_microsecond (utils_tests.test_dateformat.DateFormatTests.test_microsecond) ... ok 356s test_naive_ambiguous_datetime (utils_tests.test_dateformat.DateFormatTests.test_naive_ambiguous_datetime) ... ok 356s test_naive_datetime (utils_tests.test_dateformat.DateFormatTests.test_naive_datetime) ... ok 356s test_r_format_with_date (utils_tests.test_dateformat.DateFormatTests.test_r_format_with_date) ... ok 356s test_r_format_with_non_en_locale (utils_tests.test_dateformat.DateFormatTests.test_r_format_with_non_en_locale) ... ok 356s test_time_formats (utils_tests.test_dateformat.DateFormatTests.test_time_formats) ... ok 356s test_timezones (utils_tests.test_dateformat.DateFormatTests.test_timezones) ... ok 356s test_twelve_hour_format (utils_tests.test_dateformat.DateFormatTests.test_twelve_hour_format) ... ok 356s test_y_format_year_before_1000 (utils_tests.test_dateformat.DateFormatTests.test_y_format_year_before_1000) ... ok 356s test_compare_datetimes (utils_tests.test_datetime_safe.DatetimeTests.test_compare_datetimes) ... ok 356s test_safe_strftime (utils_tests.test_datetime_safe.DatetimeTests.test_safe_strftime) ... ok 356s test_zero_padding (utils_tests.test_datetime_safe.DatetimeTests.test_zero_padding) 356s Regression for #12524 ... ok 356s test_deconstruct (utils_tests.test_deconstruct.DeconstructibleTests.test_deconstruct) ... ok 356s test_deconstruct_child (utils_tests.test_deconstruct.DeconstructibleTests.test_deconstruct_child) ... ok 356s test_deconstruct_child_with_path (utils_tests.test_deconstruct.DeconstructibleTests.test_deconstruct_child_with_path) ... ok 356s test_deconstruct_with_path (utils_tests.test_deconstruct.DeconstructibleTests.test_deconstruct_with_path) ... ok 356s test_invalid_path (utils_tests.test_deconstruct.DeconstructibleTests.test_invalid_path) ... ok 356s test_parent_invalid_path (utils_tests.test_deconstruct.DeconstructibleTests.test_parent_invalid_path) ... ok 356s test_callable_process_view_middleware (utils_tests.test_decorators.DecoratorFromMiddlewareTests.test_callable_process_view_middleware) 356s Test a middleware that implements process_view, operating on a callable class. ... ok 356s test_full_dec_normal (utils_tests.test_decorators.DecoratorFromMiddlewareTests.test_full_dec_normal) 356s All methods of middleware are called for normal HttpResponses ... ok 356s test_full_dec_templateresponse (utils_tests.test_decorators.DecoratorFromMiddlewareTests.test_full_dec_templateresponse) 356s All methods of middleware are called for TemplateResponses in ... ok 356s test_process_view_middleware (utils_tests.test_decorators.DecoratorFromMiddlewareTests.test_process_view_middleware) 356s Test a middleware that implements process_view. ... ok 356s test_force_bytes_encoding (utils_tests.test_encoding.TestEncodingUtils.test_force_bytes_encoding) ... ok 356s test_force_bytes_exception (utils_tests.test_encoding.TestEncodingUtils.test_force_bytes_exception) 356s force_bytes knows how to convert to bytes an exception ... ok 356s test_force_bytes_memory_view (utils_tests.test_encoding.TestEncodingUtils.test_force_bytes_memory_view) ... ok 356s test_force_bytes_strings_only (utils_tests.test_encoding.TestEncodingUtils.test_force_bytes_strings_only) ... ok 356s test_force_str_DjangoUnicodeDecodeError (utils_tests.test_encoding.TestEncodingUtils.test_force_str_DjangoUnicodeDecodeError) ... ok 356s test_force_str_exception (utils_tests.test_encoding.TestEncodingUtils.test_force_str_exception) 356s Broken __str__ actually raises an error. ... ok 356s test_force_str_lazy (utils_tests.test_encoding.TestEncodingUtils.test_force_str_lazy) ... ok 356s test_get_default_encoding (utils_tests.test_encoding.TestEncodingUtils.test_get_default_encoding) ... ok 356s test_repercent_broken_unicode_recursion_error (utils_tests.test_encoding.TestEncodingUtils.test_repercent_broken_unicode_recursion_error) ... ok 356s test_repercent_broken_unicode_small_fragments (utils_tests.test_encoding.TestEncodingUtils.test_repercent_broken_unicode_small_fragments) ... ok 356s test_smart_bytes (utils_tests.test_encoding.TestEncodingUtils.test_smart_bytes) ... ok 356s test_smart_str (utils_tests.test_encoding.TestEncodingUtils.test_smart_str) ... ok 356s test_atom1_mime_type (utils_tests.test_feedgenerator.FeedgeneratorTests.test_atom1_mime_type) 356s Atom MIME type has UTF8 Charset parameter set ... ok 356s test_atom_add_item (utils_tests.test_feedgenerator.FeedgeneratorTests.test_atom_add_item) ... ok 356s test_deterministic_attribute_order (utils_tests.test_feedgenerator.FeedgeneratorTests.test_deterministic_attribute_order) ... ok 356s test_feed_with_feed_url_gets_rendered_with_atom_link (utils_tests.test_feedgenerator.FeedgeneratorTests.test_feed_with_feed_url_gets_rendered_with_atom_link) ... ok 356s test_feed_without_feed_url_gets_rendered_without_atom_link (utils_tests.test_feedgenerator.FeedgeneratorTests.test_feed_without_feed_url_gets_rendered_without_atom_link) ... ok 356s test_get_tag_uri (utils_tests.test_feedgenerator.FeedgeneratorTests.test_get_tag_uri) 356s get_tag_uri() correctly generates TagURIs. ... ok 356s test_get_tag_uri_with_port (utils_tests.test_feedgenerator.FeedgeneratorTests.test_get_tag_uri_with_port) 356s get_tag_uri() correctly generates TagURIs from URLs with port numbers. ... ok 356s test_latest_post_date_returns_utc_time (utils_tests.test_feedgenerator.FeedgeneratorTests.test_latest_post_date_returns_utc_time) ... ok 356s test_rfc2822_date (utils_tests.test_feedgenerator.FeedgeneratorTests.test_rfc2822_date) 356s rfc2822_date() correctly formats datetime objects. ... ok 356s test_rfc2822_date_with_timezone (utils_tests.test_feedgenerator.FeedgeneratorTests.test_rfc2822_date_with_timezone) 356s rfc2822_date() correctly formats datetime objects with tzinfo. ... ok 356s test_rfc2822_date_without_time (utils_tests.test_feedgenerator.FeedgeneratorTests.test_rfc2822_date_without_time) 356s rfc2822_date() correctly formats date objects. ... ok 356s test_rfc3339_date (utils_tests.test_feedgenerator.FeedgeneratorTests.test_rfc3339_date) 356s rfc3339_date() correctly formats datetime objects. ... ok 356s test_rfc3339_date_with_timezone (utils_tests.test_feedgenerator.FeedgeneratorTests.test_rfc3339_date_with_timezone) 356s rfc3339_date() correctly formats datetime objects with tzinfo. ... ok 356s test_rfc3339_date_without_time (utils_tests.test_feedgenerator.FeedgeneratorTests.test_rfc3339_date_without_time) 356s rfc3339_date() correctly formats date objects. ... ok 356s test_rss_mime_type (utils_tests.test_feedgenerator.FeedgeneratorTests.test_rss_mime_type) 356s RSS MIME type has UTF8 Charset parameter set ... ok 357s test_cached_property (utils_tests.test_functional.FunctionalTests.test_cached_property) 357s cached_property caches its value and behaves like a property. ... ok 357s test_cached_property_auto_name (utils_tests.test_functional.FunctionalTests.test_cached_property_auto_name) 357s cached_property caches its value and behaves like a property ... ok 357s test_cached_property_name (utils_tests.test_functional.FunctionalTests.test_cached_property_name) ... ok 357s test_cached_property_name_deprecation_warning (utils_tests.test_functional.FunctionalTests.test_cached_property_name_deprecation_warning) ... ok 357s test_cached_property_reuse_different_names (utils_tests.test_functional.FunctionalTests.test_cached_property_reuse_different_names) 357s Disallow this case because the decorated function wouldn't be cached. ... ok 357s test_cached_property_reuse_same_name (utils_tests.test_functional.FunctionalTests.test_cached_property_reuse_same_name) 357s Reusing a cached_property on different classes under the same name is ... ok 357s test_cached_property_set_name_not_called (utils_tests.test_functional.FunctionalTests.test_cached_property_set_name_not_called) ... ok 357s test_classproperty_getter (utils_tests.test_functional.FunctionalTests.test_classproperty_getter) ... ok 357s test_classproperty_override_getter (utils_tests.test_functional.FunctionalTests.test_classproperty_override_getter) ... ok 357s test_lazy (utils_tests.test_functional.FunctionalTests.test_lazy) ... ok 357s test_lazy_add (utils_tests.test_functional.FunctionalTests.test_lazy_add) ... ok 357s test_lazy_base_class (utils_tests.test_functional.FunctionalTests.test_lazy_base_class) 357s lazy also finds base class methods in the proxy object ... ok 357s test_lazy_base_class_override (utils_tests.test_functional.FunctionalTests.test_lazy_base_class_override) 357s lazy finds the correct (overridden) method implementation ... ok 357s test_lazy_bytes_and_str_result_classes (utils_tests.test_functional.FunctionalTests.test_lazy_bytes_and_str_result_classes) ... ok 357s test_lazy_class_preparation_caching (utils_tests.test_functional.FunctionalTests.test_lazy_class_preparation_caching) ... ok 357s test_lazy_equality (utils_tests.test_functional.FunctionalTests.test_lazy_equality) 357s == and != work correctly for Promises. ... ok 357s test_lazy_object_to_string (utils_tests.test_functional.FunctionalTests.test_lazy_object_to_string) ... ok 357s test_lazy_repr_bytes (utils_tests.test_functional.FunctionalTests.test_lazy_repr_bytes) ... ok 357s test_lazy_repr_int (utils_tests.test_functional.FunctionalTests.test_lazy_repr_int) ... ok 357s test_lazy_repr_text (utils_tests.test_functional.FunctionalTests.test_lazy_repr_text) ... ok 357s test_count_equal (utils_tests.test_hashable.TestHashable.test_count_equal) ... ok 357s test_equal (utils_tests.test_hashable.TestHashable.test_equal) ... ok 357s test_unhashable (utils_tests.test_hashable.TestHashable.test_unhashable) ... ok 357s test_conditional_escape (utils_tests.test_html.TestUtilsHtml.test_conditional_escape) ... ok 357s test_escape (utils_tests.test_html.TestUtilsHtml.test_escape) ... ok 357s test_escapejs (utils_tests.test_html.TestUtilsHtml.test_escapejs) ... ok 357s test_format_html (utils_tests.test_html.TestUtilsHtml.test_format_html) ... ok 357s test_html_safe (utils_tests.test_html.TestUtilsHtml.test_html_safe) ... ok 357s test_html_safe_defines_html_error (utils_tests.test_html.TestUtilsHtml.test_html_safe_defines_html_error) ... ok 357s test_html_safe_doesnt_define_str (utils_tests.test_html.TestUtilsHtml.test_html_safe_doesnt_define_str) ... ok 357s test_html_safe_subclass (utils_tests.test_html.TestUtilsHtml.test_html_safe_subclass) ... ok 357s test_json_script (utils_tests.test_html.TestUtilsHtml.test_json_script) ... ok 357s test_json_script_custom_encoder (utils_tests.test_html.TestUtilsHtml.test_json_script_custom_encoder) ... ok 357s test_json_script_without_id (utils_tests.test_html.TestUtilsHtml.test_json_script_without_id) ... ok 357s test_linebreaks (utils_tests.test_html.TestUtilsHtml.test_linebreaks) ... ok 357s test_smart_urlquote (utils_tests.test_html.TestUtilsHtml.test_smart_urlquote) ... ok 357s test_strip_spaces_between_tags (utils_tests.test_html.TestUtilsHtml.test_strip_spaces_between_tags) ... ok 357s test_strip_tags (utils_tests.test_html.TestUtilsHtml.test_strip_tags) ... ok 357s test_strip_tags_files (utils_tests.test_html.TestUtilsHtml.test_strip_tags_files) ... ok 357s test_strip_tags_suspicious_operation (utils_tests.test_html.TestUtilsHtml.test_strip_tags_suspicious_operation) ... ok 357s test_urlize (utils_tests.test_html.TestUtilsHtml.test_urlize) ... ok 357s test_urlize_unchanged_inputs (utils_tests.test_html.TestUtilsHtml.test_urlize_unchanged_inputs) ... ok 357s test_input_too_large (utils_tests.test_http.Base36IntTests.test_input_too_large) ... ok 357s test_invalid_literal (utils_tests.test_http.Base36IntTests.test_invalid_literal) ... ok 357s test_negative_input (utils_tests.test_http.Base36IntTests.test_negative_input) ... ok 357s test_roundtrip (utils_tests.test_http.Base36IntTests.test_roundtrip) ... ok 357s test_to_base36_errors (utils_tests.test_http.Base36IntTests.test_to_base36_errors) ... ok 357s test_to_int_errors (utils_tests.test_http.Base36IntTests.test_to_int_errors) ... ok 357s test_values (utils_tests.test_http.Base36IntTests.test_values) ... ok 357s test_custom_iterable_not_doseq (utils_tests.test_http.URLEncodeTests.test_custom_iterable_not_doseq) ... ok 357s test_dict (utils_tests.test_http.URLEncodeTests.test_dict) ... ok 357s test_dict_containing_empty_sequence_doseq (utils_tests.test_http.URLEncodeTests.test_dict_containing_empty_sequence_doseq) ... ok 357s test_dict_containing_sequence_doseq (utils_tests.test_http.URLEncodeTests.test_dict_containing_sequence_doseq) ... ok 357s test_dict_containing_sequence_not_doseq (utils_tests.test_http.URLEncodeTests.test_dict_containing_sequence_not_doseq) ... ok 357s test_dict_containing_tuple_not_doseq (utils_tests.test_http.URLEncodeTests.test_dict_containing_tuple_not_doseq) ... ok 357s test_dict_with_bytearray (utils_tests.test_http.URLEncodeTests.test_dict_with_bytearray) ... ok 357s test_dict_with_bytes_values (utils_tests.test_http.URLEncodeTests.test_dict_with_bytes_values) ... ok 357s test_dict_with_sequence_of_bytes (utils_tests.test_http.URLEncodeTests.test_dict_with_sequence_of_bytes) ... ok 357s test_generator (utils_tests.test_http.URLEncodeTests.test_generator) ... ok 357s test_multivaluedict (utils_tests.test_http.URLEncodeTests.test_multivaluedict) ... ok 357s test_none (utils_tests.test_http.URLEncodeTests.test_none) ... ok 357s test_none_in_generator (utils_tests.test_http.URLEncodeTests.test_none_in_generator) ... ok 357s test_none_in_sequence (utils_tests.test_http.URLEncodeTests.test_none_in_sequence) ... ok 357s test_tuples (utils_tests.test_http.URLEncodeTests.test_tuples) ... ok 357s test_address_too_long (utils_tests.test_ipv6.TestUtilsIPv6.test_address_too_long) ... ok 357s test_cleans_plain_address (utils_tests.test_ipv6.TestUtilsIPv6.test_cleans_plain_address) ... ok 357s test_cleans_with_v4_mapping (utils_tests.test_ipv6.TestUtilsIPv6.test_cleans_with_v4_mapping) ... ok 357s test_unpacks_ipv4 (utils_tests.test_ipv6.TestUtilsIPv6.test_unpacks_ipv4) ... ok 357s test_validates_correct_plain_address (utils_tests.test_ipv6.TestUtilsIPv6.test_validates_correct_plain_address) ... ok 357s test_validates_correct_with_v4mapping (utils_tests.test_ipv6.TestUtilsIPv6.test_validates_correct_with_v4mapping) ... ok 357s test_validates_incorrect_plain_address (utils_tests.test_ipv6.TestUtilsIPv6.test_validates_incorrect_plain_address) ... ok 357s test_validates_incorrect_with_v4mapping (utils_tests.test_ipv6.TestUtilsIPv6.test_validates_incorrect_with_v4mapping) ... ok 357s test_case_0 (utils_tests.test_jslex.JsToCForGettextTest.test_case_0) ... ok 357s test_case_1 (utils_tests.test_jslex.JsToCForGettextTest.test_case_1) ... ok 357s test_case_2 (utils_tests.test_jslex.JsToCForGettextTest.test_case_2) ... ok 357s test_case_3 (utils_tests.test_jslex.JsToCForGettextTest.test_case_3) ... ok 357s test_case_4 (utils_tests.test_jslex.JsToCForGettextTest.test_case_4) ... ok 357s test_case_5 (utils_tests.test_jslex.JsToCForGettextTest.test_case_5) ... ok 357s test_case_6 (utils_tests.test_jslex.JsToCForGettextTest.test_case_6) ... ok 357s test_case_7 (utils_tests.test_jslex.JsToCForGettextTest.test_case_7) ... ok 357s test_case_0 (utils_tests.test_jslex.JsTokensTest.test_case_0) ... ok 357s test_case_1 (utils_tests.test_jslex.JsTokensTest.test_case_1) ... ok 357s test_case_10 (utils_tests.test_jslex.JsTokensTest.test_case_10) ... ok 357s test_case_11 (utils_tests.test_jslex.JsTokensTest.test_case_11) ... ok 357s test_case_12 (utils_tests.test_jslex.JsTokensTest.test_case_12) ... ok 357s test_case_13 (utils_tests.test_jslex.JsTokensTest.test_case_13) ... ok 357s test_case_14 (utils_tests.test_jslex.JsTokensTest.test_case_14) ... ok 357s test_case_15 (utils_tests.test_jslex.JsTokensTest.test_case_15) ... ok 357s test_case_16 (utils_tests.test_jslex.JsTokensTest.test_case_16) ... ok 357s test_case_17 (utils_tests.test_jslex.JsTokensTest.test_case_17) ... ok 357s test_case_18 (utils_tests.test_jslex.JsTokensTest.test_case_18) ... ok 357s test_case_19 (utils_tests.test_jslex.JsTokensTest.test_case_19) ... ok 357s test_case_2 (utils_tests.test_jslex.JsTokensTest.test_case_2) ... ok 357s test_case_20 (utils_tests.test_jslex.JsTokensTest.test_case_20) ... ok 357s test_case_21 (utils_tests.test_jslex.JsTokensTest.test_case_21) ... ok 357s test_case_22 (utils_tests.test_jslex.JsTokensTest.test_case_22) ... ok 357s test_case_23 (utils_tests.test_jslex.JsTokensTest.test_case_23) ... ok 357s test_case_24 (utils_tests.test_jslex.JsTokensTest.test_case_24) ... ok 357s test_case_25 (utils_tests.test_jslex.JsTokensTest.test_case_25) ... ok 357s test_case_26 (utils_tests.test_jslex.JsTokensTest.test_case_26) ... ok 357s test_case_27 (utils_tests.test_jslex.JsTokensTest.test_case_27) ... ok 357s test_case_28 (utils_tests.test_jslex.JsTokensTest.test_case_28) ... ok 357s test_case_29 (utils_tests.test_jslex.JsTokensTest.test_case_29) ... ok 357s test_case_3 (utils_tests.test_jslex.JsTokensTest.test_case_3) ... ok 357s test_case_30 (utils_tests.test_jslex.JsTokensTest.test_case_30) ... ok 357s test_case_31 (utils_tests.test_jslex.JsTokensTest.test_case_31) ... ok 357s test_case_32 (utils_tests.test_jslex.JsTokensTest.test_case_32) ... ok 357s test_case_4 (utils_tests.test_jslex.JsTokensTest.test_case_4) ... ok 357s test_case_5 (utils_tests.test_jslex.JsTokensTest.test_case_5) ... ok 357s test_case_6 (utils_tests.test_jslex.JsTokensTest.test_case_6) ... ok 357s test_case_7 (utils_tests.test_jslex.JsTokensTest.test_case_7) ... ok 357s test_case_8 (utils_tests.test_jslex.JsTokensTest.test_case_8) ... ok 357s test_case_9 (utils_tests.test_jslex.JsTokensTest.test_case_9) ... ok 358s test_autodiscover_modules_found (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_autodiscover_modules_found) ... ok 358s test_autodiscover_modules_found_but_bad_module (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_autodiscover_modules_found_but_bad_module) ... ok 358s test_autodiscover_modules_not_found (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_autodiscover_modules_not_found) ... ok 358s test_autodiscover_modules_several_found (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_autodiscover_modules_several_found) ... ok 358s test_autodiscover_modules_several_found_with_registry (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_autodiscover_modules_several_found_with_registry) ... ok 358s test_autodiscover_modules_several_one_bad_module (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_autodiscover_modules_several_one_bad_module) ... ok 358s test_validate_registry_keeps_intact (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_validate_registry_keeps_intact) ... ok 358s test_validate_registry_resets_after_erroneous_module (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_validate_registry_resets_after_erroneous_module) ... ok 358s test_validate_registry_resets_after_missing_module (utils_tests.test_module_loading.AutodiscoverModulesTestCase.test_validate_registry_resets_after_missing_module) ... ok 358s test_import_string (utils_tests.test_module_loading.ModuleImportTests.test_import_string) ... ok 358s test_decimal_numbers (utils_tests.test_numberformat.TestNumberFormat.test_decimal_numbers) ... ok 358s test_decimal_subclass (utils_tests.test_numberformat.TestNumberFormat.test_decimal_subclass) ... ok 358s test_empty (utils_tests.test_numberformat.TestNumberFormat.test_empty) ... ok 358s test_float_numbers (utils_tests.test_numberformat.TestNumberFormat.test_float_numbers) ... ok 358s test_format_number (utils_tests.test_numberformat.TestNumberFormat.test_format_number) ... ok 358s test_format_string (utils_tests.test_numberformat.TestNumberFormat.test_format_string) ... ok 358s test_large_number (utils_tests.test_numberformat.TestNumberFormat.test_large_number) ... ok 358s test_flags_with_pre_compiled_regex (utils_tests.test_regex_helper.LazyReCompileTests.test_flags_with_pre_compiled_regex) ... ok 358s test_add_lazy_safe_text_and_safe_text (utils_tests.test_safestring.SafeStringTest.test_add_lazy_safe_text_and_safe_text) ... ok 358s test_default_additional_attrs (utils_tests.test_safestring.SafeStringTest.test_default_additional_attrs) ... ok 358s test_default_safe_data_additional_attrs (utils_tests.test_safestring.SafeStringTest.test_default_safe_data_additional_attrs) ... ok 358s test_mark_safe (utils_tests.test_safestring.SafeStringTest.test_mark_safe) ... ok 358s test_mark_safe_as_decorator (utils_tests.test_safestring.SafeStringTest.test_mark_safe_as_decorator) 358s mark_safe used as a decorator leaves the result of a function ... ok 358s test_mark_safe_decorator_does_not_affect_dunder_html (utils_tests.test_safestring.SafeStringTest.test_mark_safe_decorator_does_not_affect_dunder_html) 358s mark_safe doesn't affect a callable that has an __html__() method. ... ok 358s test_mark_safe_decorator_does_not_affect_promises (utils_tests.test_safestring.SafeStringTest.test_mark_safe_decorator_does_not_affect_promises) 358s mark_safe doesn't affect lazy strings (Promise objects). ... ok 358s test_mark_safe_lazy (utils_tests.test_safestring.SafeStringTest.test_mark_safe_lazy) ... ok 358s test_mark_safe_lazy_i18n (utils_tests.test_safestring.SafeStringTest.test_mark_safe_lazy_i18n) ... ok 358s test_mark_safe_lazy_result_implements_dunder_html (utils_tests.test_safestring.SafeStringTest.test_mark_safe_lazy_result_implements_dunder_html) ... ok 358s test_mark_safe_object_implementing_dunder_html (utils_tests.test_safestring.SafeStringTest.test_mark_safe_object_implementing_dunder_html) ... ok 358s test_mark_safe_object_implementing_dunder_str (utils_tests.test_safestring.SafeStringTest.test_mark_safe_object_implementing_dunder_str) ... ok 358s test_mark_safe_result_implements_dunder_html (utils_tests.test_safestring.SafeStringTest.test_mark_safe_result_implements_dunder_html) ... ok 358s test_mark_safe_str (utils_tests.test_safestring.SafeStringTest.test_mark_safe_str) 358s Calling str() on a SafeString instance doesn't lose the safe status. ... ok 358s test_compress_sequence (utils_tests.test_text.TestUtilsText.test_compress_sequence) ... ok 358s test_format_lazy (utils_tests.test_text.TestUtilsText.test_format_lazy) ... ok 358s test_get_text_list (utils_tests.test_text.TestUtilsText.test_get_text_list) ... ok 358s test_get_valid_filename (utils_tests.test_text.TestUtilsText.test_get_valid_filename) ... ok 358s test_normalize_newlines (utils_tests.test_text.TestUtilsText.test_normalize_newlines) ... ok 358s test_phone2numeric (utils_tests.test_text.TestUtilsText.test_phone2numeric) ... ok 358s test_slugify (utils_tests.test_text.TestUtilsText.test_slugify) ... ok 358s test_smart_split (utils_tests.test_text.TestUtilsText.test_smart_split) ... ok 358s test_truncate_chars (utils_tests.test_text.TestUtilsText.test_truncate_chars) ... ok 358s test_truncate_chars_html_size_limit (utils_tests.test_text.TestUtilsText.test_truncate_chars_html_size_limit) ... ok 358s test_truncate_html_words (utils_tests.test_text.TestUtilsText.test_truncate_html_words) ... ok 358s test_truncate_words (utils_tests.test_text.TestUtilsText.test_truncate_words) ... ok 358s test_truncate_words_html_size_limit (utils_tests.test_text.TestUtilsText.test_truncate_words_html_size_limit) ... ok 358s test_unescape_string_literal (utils_tests.test_text.TestUtilsText.test_unescape_string_literal) ... ok 358s test_unescape_string_literal_invalid_value (utils_tests.test_text.TestUtilsText.test_unescape_string_literal_invalid_value) ... ok 358s test_wrap (utils_tests.test_text.TestUtilsText.test_wrap) ... ok 358s test_activate_invalid_timezone (utils_tests.test_timezone.TimezoneTests.test_activate_invalid_timezone) ... ok 358s test_default_timezone_is_zoneinfo (utils_tests.test_timezone.TimezoneTests.test_default_timezone_is_zoneinfo) ... ok 358s test_fixedoffset_negative_timedelta (utils_tests.test_timezone.TimezoneTests.test_fixedoffset_negative_timedelta) ... ok 358s test_fixedoffset_timedelta (utils_tests.test_timezone.TimezoneTests.test_fixedoffset_timedelta) ... ok 358s test_get_default_timezone (utils_tests.test_timezone.TimezoneTests.test_get_default_timezone) ... ok 358s test_get_timezone_name (utils_tests.test_timezone.TimezoneTests.test_get_timezone_name) 358s The _get_timezone_name() helper must return the offset for fixed offset ... ok 358s test_is_aware (utils_tests.test_timezone.TimezoneTests.test_is_aware) ... ok 358s test_is_naive (utils_tests.test_timezone.TimezoneTests.test_is_naive) ... ok 358s test_localdate (utils_tests.test_timezone.TimezoneTests.test_localdate) ... ok 358s test_make_aware (utils_tests.test_timezone.TimezoneTests.test_make_aware) ... ok 358s test_make_aware2 (utils_tests.test_timezone.TimezoneTests.test_make_aware2) ... ok 358s test_make_aware_is_dst_deprecation_warning (utils_tests.test_timezone.TimezoneTests.test_make_aware_is_dst_deprecation_warning) ... ok 358s test_make_aware_no_tz (utils_tests.test_timezone.TimezoneTests.test_make_aware_no_tz) ... ok 358s test_make_aware_pytz_ambiguous (utils_tests.test_timezone.TimezoneTests.test_make_aware_pytz_ambiguous) ... ok 358s test_make_aware_pytz_non_existent (utils_tests.test_timezone.TimezoneTests.test_make_aware_pytz_non_existent) ... ok 358s test_make_aware_zoneinfo_ambiguous (utils_tests.test_timezone.TimezoneTests.test_make_aware_zoneinfo_ambiguous) ... ok 358s test_make_aware_zoneinfo_non_existent (utils_tests.test_timezone.TimezoneTests.test_make_aware_zoneinfo_non_existent) ... ok 358s test_make_naive (utils_tests.test_timezone.TimezoneTests.test_make_naive) ... ok 358s test_make_naive_no_tz (utils_tests.test_timezone.TimezoneTests.test_make_naive_no_tz) ... ok 358s test_make_naive_pytz (utils_tests.test_timezone.TimezoneTests.test_make_naive_pytz) ... ok 358s test_make_naive_zoneinfo (utils_tests.test_timezone.TimezoneTests.test_make_naive_zoneinfo) ... ok 358s test_now (utils_tests.test_timezone.TimezoneTests.test_now) ... ok 358s test_override (utils_tests.test_timezone.TimezoneTests.test_override) ... ok 358s test_override_decorator (utils_tests.test_timezone.TimezoneTests.test_override_decorator) ... ok 358s test_override_fixed_offset (utils_tests.test_timezone.TimezoneTests.test_override_fixed_offset) ... ok 358s test_override_string_tz (utils_tests.test_timezone.TimezoneTests.test_override_string_tz) ... ok 358s test_setting_allows_fallback_to_pytz (utils_tests.test_timezone.TimezoneTests.test_setting_allows_fallback_to_pytz) ... ok 358s test_basic (utils_tests.test_topological_sort.TopologicalSortTests.test_basic) ... ok 358s test_cyclic_dependency (utils_tests.test_topological_sort.TopologicalSortTests.test_cyclic_dependency) ... ok 358s test_auto (migrations.test_autodetector.MigrationSuggestNameTests.test_auto) ... ok 358s test_many_operations_suffix (migrations.test_autodetector.MigrationSuggestNameTests.test_many_operations_suffix) ... ok 358s test_no_operations (migrations.test_autodetector.MigrationSuggestNameTests.test_no_operations) ... ok 358s test_no_operations_initial (migrations.test_autodetector.MigrationSuggestNameTests.test_no_operations_initial) ... ok 358s test_none_name (migrations.test_autodetector.MigrationSuggestNameTests.test_none_name) ... ok 358s test_none_name_with_initial_true (migrations.test_autodetector.MigrationSuggestNameTests.test_none_name_with_initial_true) ... ok 358s test_operation_with_invalid_chars_in_suggested_name (migrations.test_autodetector.MigrationSuggestNameTests.test_operation_with_invalid_chars_in_suggested_name) ... ok 358s test_operation_with_no_suggested_name (migrations.test_autodetector.MigrationSuggestNameTests.test_operation_with_no_suggested_name) ... ok 358s test_single_operation (migrations.test_autodetector.MigrationSuggestNameTests.test_single_operation) ... ok 358s test_single_operation_long_name (migrations.test_autodetector.MigrationSuggestNameTests.test_single_operation_long_name) ... ok 358s test_two_create_models (migrations.test_autodetector.MigrationSuggestNameTests.test_two_create_models) ... ok 358s test_two_create_models_with_initial_true (migrations.test_autodetector.MigrationSuggestNameTests.test_two_create_models_with_initial_true) ... ok 358s test_two_operations (migrations.test_autodetector.MigrationSuggestNameTests.test_two_operations) ... ok 359s test_form_url_present_in_context (admin_views.tests.UserAdminTest.test_form_url_present_in_context) ... ok 359s test_password_mismatch (admin_views.tests.UserAdminTest.test_password_mismatch) ... ok 359s test_save_add_another_button (admin_views.tests.UserAdminTest.test_save_add_another_button) ... ok 359s test_save_button (admin_views.tests.UserAdminTest.test_save_button) ... ok 359s test_save_continue_editing_button (admin_views.tests.UserAdminTest.test_save_continue_editing_button) ... ok 359s test_user_fk_add_popup (admin_views.tests.UserAdminTest.test_user_fk_add_popup) 359s User addition through a FK popup should return the appropriate ... ok 359s test_user_fk_change_popup (admin_views.tests.UserAdminTest.test_user_fk_change_popup) 359s User change through a FK popup should return the appropriate JavaScript ... ok 359s test_user_fk_delete_popup (admin_views.tests.UserAdminTest.test_user_fk_delete_popup) 359s User deletion through a FK popup should return the appropriate ... ok 359s test_user_permission_performance (admin_views.tests.UserAdminTest.test_user_permission_performance) ... ok 359s test_failing_migration (migrations.test_commands.MakeMigrationsTests.test_failing_migration) ... ok 359s test_files_content (migrations.test_commands.MakeMigrationsTests.test_files_content) ... ok 359s test_makemigration_merge_dry_run (migrations.test_commands.MakeMigrationsTests.test_makemigration_merge_dry_run) 359s makemigrations respects --dry-run option when fixing migration ... ok 359s test_makemigration_merge_dry_run_verbosity_3 (migrations.test_commands.MakeMigrationsTests.test_makemigration_merge_dry_run_verbosity_3) 359s `makemigrations --merge --dry-run` writes the merge migration file to ... ok 359s test_makemigrations_auto_merge_name (migrations.test_commands.MakeMigrationsTests.test_makemigrations_auto_merge_name) ... ok 359s test_makemigrations_auto_now_add_interactive (migrations.test_commands.MakeMigrationsTests.test_makemigrations_auto_now_add_interactive) 359s makemigrations prompts the user when adding auto_now_add to an existing ... ok 359s test_makemigrations_auto_now_add_interactive_quit (migrations.test_commands.MakeMigrationsTests.test_makemigrations_auto_now_add_interactive_quit) ... ok 359s test_makemigrations_check_no_changes (migrations.test_commands.MakeMigrationsTests.test_makemigrations_check_no_changes) 359s makemigrations --check should exit with a zero status when there are no ... ok 359s test_makemigrations_check_with_changes (migrations.test_commands.MakeMigrationsTests.test_makemigrations_check_with_changes) 359s makemigrations --check should exit with a non-zero status when ... ok 359s test_makemigrations_conflict_exit (migrations.test_commands.MakeMigrationsTests.test_makemigrations_conflict_exit) 359s makemigrations exits if it detects a conflict. ... ok 359s test_makemigrations_consistency_checks_respect_routers (migrations.test_commands.MakeMigrationsTests.test_makemigrations_consistency_checks_respect_routers) 359s The history consistency checks in makemigrations respect ... ok 359s test_makemigrations_continues_number_sequence_after_squash (migrations.test_commands.MakeMigrationsTests.test_makemigrations_continues_number_sequence_after_squash) ... ok 359s test_makemigrations_default_merge_name (migrations.test_commands.MakeMigrationsTests.test_makemigrations_default_merge_name) ... ok 359s test_makemigrations_disabled_migrations_for_app (migrations.test_commands.MakeMigrationsTests.test_makemigrations_disabled_migrations_for_app) 359s makemigrations raises a nice error when migrations are disabled for an ... ok 359s test_makemigrations_dry_run (migrations.test_commands.MakeMigrationsTests.test_makemigrations_dry_run) 359s `makemigrations --dry-run` should not ask for defaults. ... ok 359s test_makemigrations_dry_run_verbosity_3 (migrations.test_commands.MakeMigrationsTests.test_makemigrations_dry_run_verbosity_3) 359s Allow `makemigrations --dry-run` to output the migrations file to ... ok 359s test_makemigrations_empty_connections (migrations.test_commands.MakeMigrationsTests.test_makemigrations_empty_connections) ... ok 359s test_makemigrations_empty_migration (migrations.test_commands.MakeMigrationsTests.test_makemigrations_empty_migration) 359s makemigrations properly constructs an empty migration. ... ok 359s test_makemigrations_empty_no_app_specified (migrations.test_commands.MakeMigrationsTests.test_makemigrations_empty_no_app_specified) 359s makemigrations exits if no app is specified with 'empty' mode. ... ok 359s test_makemigrations_field_rename_interactive (migrations.test_commands.MakeMigrationsTests.test_makemigrations_field_rename_interactive) ... ok 359s test_makemigrations_handle_merge (migrations.test_commands.MakeMigrationsTests.test_makemigrations_handle_merge) 359s makemigrations properly merges the conflicting migrations with --noinput. ... ok 359s test_makemigrations_inconsistent_history (migrations.test_commands.MakeMigrationsTests.test_makemigrations_inconsistent_history) 359s makemigrations should raise InconsistentMigrationHistory exception if ... ok 359s test_makemigrations_inconsistent_history_db_failure (migrations.test_commands.MakeMigrationsTests.test_makemigrations_inconsistent_history_db_failure) ... ok 359s test_makemigrations_interactive_accept (migrations.test_commands.MakeMigrationsTests.test_makemigrations_interactive_accept) 359s makemigrations enters interactive mode and merges properly. ... ok 359s test_makemigrations_interactive_by_default (migrations.test_commands.MakeMigrationsTests.test_makemigrations_interactive_by_default) 359s The user is prompted to merge by default if there are conflicts and ... ok 359s test_makemigrations_interactive_not_null_addition (migrations.test_commands.MakeMigrationsTests.test_makemigrations_interactive_not_null_addition) 359s makemigrations messages when adding a NOT NULL field in interactive ... ok 359s test_makemigrations_interactive_not_null_alteration (migrations.test_commands.MakeMigrationsTests.test_makemigrations_interactive_not_null_alteration) 359s makemigrations messages when changing a NULL field to NOT NULL in ... ok 359s test_makemigrations_interactive_reject (migrations.test_commands.MakeMigrationsTests.test_makemigrations_interactive_reject) 359s makemigrations enters and exits interactive mode properly. ... ok 359s test_makemigrations_interactive_unique_callable_default_addition (migrations.test_commands.MakeMigrationsTests.test_makemigrations_interactive_unique_callable_default_addition) 359s makemigrations prompts the user when adding a unique field with ... ok 359s test_makemigrations_merge_dont_output_dependency_operations (migrations.test_commands.MakeMigrationsTests.test_makemigrations_merge_dont_output_dependency_operations) 359s makemigrations --merge does not output any operations from apps that ... ok 359s test_makemigrations_merge_no_conflict (migrations.test_commands.MakeMigrationsTests.test_makemigrations_merge_no_conflict) 359s makemigrations exits if in merge mode with no conflicts. ... ok 359s test_makemigrations_migration_path_output (migrations.test_commands.MakeMigrationsTests.test_makemigrations_migration_path_output) 359s makemigrations should print the relative paths to the migrations unless ... ok 359s test_makemigrations_migration_path_output_valueerror (migrations.test_commands.MakeMigrationsTests.test_makemigrations_migration_path_output_valueerror) 359s makemigrations prints the absolute path if os.path.relpath() raises a ... ok 359s test_makemigrations_migrations_announce (migrations.test_commands.MakeMigrationsTests.test_makemigrations_migrations_announce) 359s makemigrations announces the migration at the default verbosity level. ... ok 359s test_makemigrations_migrations_modules_nonexistent_toplevel_package (migrations.test_commands.MakeMigrationsTests.test_makemigrations_migrations_modules_nonexistent_toplevel_package) ... ok 359s test_makemigrations_migrations_modules_path_not_exist (migrations.test_commands.MakeMigrationsTests.test_makemigrations_migrations_modules_path_not_exist) 359s makemigrations creates migrations when specifying a custom location ... ok 359s test_makemigrations_model_rename_interactive (migrations.test_commands.MakeMigrationsTests.test_makemigrations_model_rename_interactive) ... ok 359s test_makemigrations_no_apps_initial (migrations.test_commands.MakeMigrationsTests.test_makemigrations_no_apps_initial) 359s makemigrations should detect initial is needed on empty migration ... ok 359s test_makemigrations_no_changes (migrations.test_commands.MakeMigrationsTests.test_makemigrations_no_changes) 359s makemigrations exits when there are no changes to an app. ... ok 359s test_makemigrations_no_changes_no_apps (migrations.test_commands.MakeMigrationsTests.test_makemigrations_no_changes_no_apps) 359s makemigrations exits when there are no changes and no apps are specified. ... ok 359s test_makemigrations_no_common_ancestor (migrations.test_commands.MakeMigrationsTests.test_makemigrations_no_common_ancestor) 359s makemigrations fails to merge migrations with no common ancestor. ... ok 359s test_makemigrations_no_init (migrations.test_commands.MakeMigrationsTests.test_makemigrations_no_init) 359s Migration directories without an __init__.py file are allowed. ... ok 359s test_makemigrations_non_interactive_auto_now_add_addition (migrations.test_commands.MakeMigrationsTests.test_makemigrations_non_interactive_auto_now_add_addition) 359s Non-interactive makemigrations fails when a default is missing on a ... ok 359s test_makemigrations_non_interactive_no_field_rename (migrations.test_commands.MakeMigrationsTests.test_makemigrations_non_interactive_no_field_rename) 359s makemigrations adds and removes a possible field rename in ... ok 359s test_makemigrations_non_interactive_no_model_rename (migrations.test_commands.MakeMigrationsTests.test_makemigrations_non_interactive_no_model_rename) 359s makemigrations adds and removes a possible model rename in ... ok 359s test_makemigrations_non_interactive_not_null_addition (migrations.test_commands.MakeMigrationsTests.test_makemigrations_non_interactive_not_null_addition) 359s Non-interactive makemigrations fails when a default is missing on a ... ok 359s test_makemigrations_non_interactive_not_null_alteration (migrations.test_commands.MakeMigrationsTests.test_makemigrations_non_interactive_not_null_alteration) 359s Non-interactive makemigrations fails when a default is missing on a ... ok 359s test_makemigrations_non_interactive_unique_callable_default_addition (migrations.test_commands.MakeMigrationsTests.test_makemigrations_non_interactive_unique_callable_default_addition) ... ok 359s test_makemigrations_order (migrations.test_commands.MakeMigrationsTests.test_makemigrations_order) 359s makemigrations should recognize number-only migrations (0001.py). ... ok 359s test_makemigrations_scriptable (migrations.test_commands.MakeMigrationsTests.test_makemigrations_scriptable) 359s With scriptable=True, log output is diverted to stderr, and only the ... ok 359s test_makemigrations_scriptable_merge (migrations.test_commands.MakeMigrationsTests.test_makemigrations_scriptable_merge) ... ok 359s test_makemigrations_unspecified_app_with_conflict_merge (migrations.test_commands.MakeMigrationsTests.test_makemigrations_unspecified_app_with_conflict_merge) 359s makemigrations does not create a merge for an unspecified app even if ... ok 359s test_makemigrations_unspecified_app_with_conflict_no_merge (migrations.test_commands.MakeMigrationsTests.test_makemigrations_unspecified_app_with_conflict_no_merge) 359s makemigrations does not raise a CommandError when an unspecified app ... ok 359s test_makemigrations_update (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update) ... ok 359s test_makemigrations_update_applied_migration (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update_applied_migration) ... ok 359s test_makemigrations_update_custom_name (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update_custom_name) ... ok 359s test_makemigrations_update_dependency_migration (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update_dependency_migration) ... ok 359s test_makemigrations_update_existing_name (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update_existing_name) ... ok 359s test_makemigrations_update_manual_porting (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update_manual_porting) ... ok 359s test_makemigrations_update_no_migration (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update_no_migration) ... ok 359s test_makemigrations_update_squash_migration (migrations.test_commands.MakeMigrationsTests.test_makemigrations_update_squash_migration) ... ok 359s test_makemigrations_with_custom_name (migrations.test_commands.MakeMigrationsTests.test_makemigrations_with_custom_name) 359s makemigrations --name generate a custom migration name. ... ok 359s test_makemigrations_with_invalid_custom_name (migrations.test_commands.MakeMigrationsTests.test_makemigrations_with_invalid_custom_name) ... ok 360s test_ambigious_prefix (migrations.test_commands.OptimizeMigrationTests.test_ambigious_prefix) ... ok 360s test_app_without_migrations (migrations.test_commands.OptimizeMigrationTests.test_app_without_migrations) ... ok 360s test_creates_replace_migration_manual_porting (migrations.test_commands.OptimizeMigrationTests.test_creates_replace_migration_manual_porting) ... ok 360s test_fails_squash_migration_manual_porting (migrations.test_commands.OptimizeMigrationTests.test_fails_squash_migration_manual_porting) ... ok 360s test_no_optimization_possible (migrations.test_commands.OptimizeMigrationTests.test_no_optimization_possible) ... ok 360s test_optimization (migrations.test_commands.OptimizeMigrationTests.test_optimization) ... ok 360s test_optimization_no_verbosity (migrations.test_commands.OptimizeMigrationTests.test_optimization_no_verbosity) ... ok 360s test_optimizemigration_check (migrations.test_commands.OptimizeMigrationTests.test_optimizemigration_check) ... ok 360s test_unknown_prefix (migrations.test_commands.OptimizeMigrationTests.test_unknown_prefix) ... ok 360s test_squashed_name_exists (migrations.test_commands.SquashMigrationsTests.test_squashed_name_exists) ... ok 360s test_squashed_name_with_start_migration_name (migrations.test_commands.SquashMigrationsTests.test_squashed_name_with_start_migration_name) 360s --squashed-name specifies the new migration's name. ... ok 360s test_squashed_name_without_start_migration_name (migrations.test_commands.SquashMigrationsTests.test_squashed_name_without_start_migration_name) 360s --squashed-name also works if a start migration is omitted. ... ok 360s test_squashmigrations_initial_attribute (migrations.test_commands.SquashMigrationsTests.test_squashmigrations_initial_attribute) ... ok 360s test_squashmigrations_invalid_start (migrations.test_commands.SquashMigrationsTests.test_squashmigrations_invalid_start) 360s squashmigrations doesn't accept a starting migration after the ending migration. ... ok 360s test_squashmigrations_manual_porting (migrations.test_commands.SquashMigrationsTests.test_squashmigrations_manual_porting) ... ok 360s test_squashmigrations_optimizes (migrations.test_commands.SquashMigrationsTests.test_squashmigrations_optimizes) 360s squashmigrations optimizes operations. ... ok 360s test_squashmigrations_squashes (migrations.test_commands.SquashMigrationsTests.test_squashmigrations_squashes) 360s squashmigrations squashes migrations. ... ok 360s test_squashmigrations_valid_start (migrations.test_commands.SquashMigrationsTests.test_squashmigrations_valid_start) 360s squashmigrations accepts a starting migration. ... ok 360s test_ticket_23799_squashmigrations_no_optimize (migrations.test_commands.SquashMigrationsTests.test_ticket_23799_squashmigrations_no_optimize) 360s squashmigrations --no-optimize doesn't optimize operations. ... ok 360s test_migrate (migrations.test_deprecated_fields.Tests.test_migrate) ... ok 360s test_node_not_found_error_repr (migrations.test_exceptions.ExceptionTests.test_node_not_found_error_repr) ... ok 364s test_ambiguous_prefix (migrations.test_commands.MigrateTests.test_ambiguous_prefix) ... ok 364s test_app_without_migrations (migrations.test_commands.MigrateTests.test_app_without_migrations) ... ok 364s test_migrate (migrations.test_commands.MigrateTests.test_migrate) 364s Tests basic usage of the migrate command. ... ok 364s test_migrate_backward_to_squashed_migration (migrations.test_commands.MigrateTests.test_migrate_backward_to_squashed_migration) ... ok 364s test_migrate_check (migrations.test_commands.MigrateTests.test_migrate_check) ... ok 364s test_migrate_check_migrated_app (migrations.test_commands.MigrateTests.test_migrate_check_migrated_app) ... ok 364s test_migrate_check_plan (migrations.test_commands.MigrateTests.test_migrate_check_plan) ... ok 364s test_migrate_conflict_exit (migrations.test_commands.MigrateTests.test_migrate_conflict_exit) 364s migrate exits if it detects a conflict. ... ok 364s test_migrate_fake_initial (migrations.test_commands.MigrateTests.test_migrate_fake_initial) 364s --fake-initial only works if all tables created in the initial ... ok 364s test_migrate_fake_initial_case_insensitive (migrations.test_commands.MigrateTests.test_migrate_fake_initial_case_insensitive) ... ok 364s test_migrate_fake_split_initial (migrations.test_commands.MigrateTests.test_migrate_fake_split_initial) 364s Split initial migrations can be faked with --fake-initial. ... ok 364s test_migrate_inconsistent_history (migrations.test_commands.MigrateTests.test_migrate_inconsistent_history) 364s Running migrate with some migrations applied before their dependencies ... ok 364s test_migrate_initial_false (migrations.test_commands.MigrateTests.test_migrate_initial_false) 364s `Migration.initial = False` skips fake-initial detection. ... ok 364s test_migrate_not_reflected_changes (migrations.test_commands.MigrateTests.test_migrate_not_reflected_changes) ... ok 364s test_migrate_partially_applied_squashed_migration (migrations.test_commands.MigrateTests.test_migrate_partially_applied_squashed_migration) 364s Migrating to a squashed migration specified by name should succeed ... ok 364s test_migrate_plan (migrations.test_commands.MigrateTests.test_migrate_plan) 364s Tests migrate --plan output. ... ok 364s test_migrate_prune (migrations.test_commands.MigrateTests.test_migrate_prune) 364s With prune=True, references to migration files deleted from the ... ok 364s test_migrate_record_replaced (migrations.test_commands.MigrateTests.test_migrate_record_replaced) 364s Running a single squashed migration should record all of the original ... ok 364s test_migrate_record_squashed (migrations.test_commands.MigrateTests.test_migrate_record_squashed) 364s Running migrate for a squashed migration should record as run ... ok 364s test_migrate_syncdb_app_label (migrations.test_commands.MigrateTests.test_migrate_syncdb_app_label) 364s Running migrate --run-syncdb with an app_label only creates tables for ... ok 364s test_migrate_syncdb_app_with_migrations (migrations.test_commands.MigrateTests.test_migrate_syncdb_app_with_migrations) ... ok 364s test_migrate_syncdb_deferred_sql_executed_with_schemaeditor (migrations.test_commands.MigrateTests.test_migrate_syncdb_deferred_sql_executed_with_schemaeditor) 364s For an app without migrations, editor.execute() is used for executing ... ok 364s test_migrate_with_system_checks (migrations.test_commands.MigrateTests.test_migrate_with_system_checks) ... ok 364s test_prune_deleted_squashed_migrations_in_replaces (migrations.test_commands.MigrateTests.test_prune_deleted_squashed_migrations_in_replaces) ... ok 364s test_prune_no_app_label (migrations.test_commands.MigrateTests.test_prune_no_app_label) ... ok 364s test_prune_no_migrations_to_prune (migrations.test_commands.MigrateTests.test_prune_no_migrations_to_prune) ... ok 364s test_regression_22823_unmigrated_fk_to_migrated_model (migrations.test_commands.MigrateTests.test_regression_22823_unmigrated_fk_to_migrated_model) 364s Assuming you have 3 apps, `A`, `B`, and `C`, such that: ... ok 364s test_showmigrations_list (migrations.test_commands.MigrateTests.test_showmigrations_list) 364s showmigrations --list displays migrations and whether or not they're ... ok 364s test_showmigrations_list_squashed (migrations.test_commands.MigrateTests.test_showmigrations_list_squashed) ... ok 364s test_showmigrations_no_migrations (migrations.test_commands.MigrateTests.test_showmigrations_no_migrations) ... ok 364s test_showmigrations_plan (migrations.test_commands.MigrateTests.test_showmigrations_plan) 364s Tests --plan output of showmigrations command ... ok 364s test_showmigrations_plan_app_label_no_migrations (migrations.test_commands.MigrateTests.test_showmigrations_plan_app_label_no_migrations) ... ok 364s test_showmigrations_plan_multiple_app_labels (migrations.test_commands.MigrateTests.test_showmigrations_plan_multiple_app_labels) 364s `showmigrations --plan app_label` output with multiple app_labels. ... ok 364s test_showmigrations_plan_no_migrations (migrations.test_commands.MigrateTests.test_showmigrations_plan_no_migrations) 364s Tests --plan output of showmigrations command without migrations ... ok 364s test_showmigrations_plan_single_app_label (migrations.test_commands.MigrateTests.test_showmigrations_plan_single_app_label) 364s `showmigrations --plan app_label` output with a single app_label. ... ok 364s test_showmigrations_plan_squashed (migrations.test_commands.MigrateTests.test_showmigrations_plan_squashed) 364s Tests --plan output of showmigrations command with squashed migrations. ... ok 364s test_showmigrations_unmigrated_app (migrations.test_commands.MigrateTests.test_showmigrations_unmigrated_app) ... ok 364s test_sqlmigrate_ambiguous_prefix_squashed_migrations (migrations.test_commands.MigrateTests.test_sqlmigrate_ambiguous_prefix_squashed_migrations) ... ok 364s test_sqlmigrate_backwards (migrations.test_commands.MigrateTests.test_sqlmigrate_backwards) 364s sqlmigrate outputs reverse looking SQL. ... ok 364s test_sqlmigrate_for_non_atomic_migration (migrations.test_commands.MigrateTests.test_sqlmigrate_for_non_atomic_migration) 364s Transaction wrappers aren't shown for non-atomic migrations. ... ok 364s test_sqlmigrate_for_non_transactional_databases (migrations.test_commands.MigrateTests.test_sqlmigrate_for_non_transactional_databases) 364s Transaction wrappers aren't shown for databases that don't support ... ok 364s test_sqlmigrate_forwards (migrations.test_commands.MigrateTests.test_sqlmigrate_forwards) 364s sqlmigrate outputs forward looking SQL. ... ok 364s test_sqlmigrate_no_operations (migrations.test_commands.MigrateTests.test_sqlmigrate_no_operations) ... ok 364s test_sqlmigrate_noop (migrations.test_commands.MigrateTests.test_sqlmigrate_noop) ... ok 364s test_sqlmigrate_replaced_migration (migrations.test_commands.MigrateTests.test_sqlmigrate_replaced_migration) ... ok 364s test_sqlmigrate_squashed_migration (migrations.test_commands.MigrateTests.test_sqlmigrate_squashed_migration) ... ok 364s test_sqlmigrate_unrepresentable (migrations.test_commands.MigrateTests.test_sqlmigrate_unrepresentable) ... ok 364s test_unknown_prefix (migrations.test_commands.MigrateTests.test_unknown_prefix) ... ok 364s test_backwards_nothing_to_do (migrations.test_executor.ExecutorUnitTests.test_backwards_nothing_to_do) 364s If the current state satisfies the given target, do nothing. ... ok 364s test_minimize_rollbacks (migrations.test_executor.ExecutorUnitTests.test_minimize_rollbacks) 364s Minimize unnecessary rollbacks in connected apps. ... ok 364s test_minimize_rollbacks_branchy (migrations.test_executor.ExecutorUnitTests.test_minimize_rollbacks_branchy) 364s Minimize rollbacks when target has multiple in-app children. ... ok 364s test_circular_graph (migrations.test_graph.GraphTests.test_circular_graph) 364s Tests a circular dependency graph. ... ok 364s test_circular_graph_2 (migrations.test_graph.GraphTests.test_circular_graph_2) ... ok 364s test_complex_graph (migrations.test_graph.GraphTests.test_complex_graph) 364s Tests a complex dependency graph: ... ok 364s test_infinite_loop (migrations.test_graph.GraphTests.test_infinite_loop) 364s Tests a complex dependency graph: ... ok 364s test_iterative_dfs (migrations.test_graph.GraphTests.test_iterative_dfs) ... ok 364s test_iterative_dfs_complexity (migrations.test_graph.GraphTests.test_iterative_dfs_complexity) 364s In a graph with merge migrations, iterative_dfs() traverses each node ... ok 364s test_missing_child_nodes (migrations.test_graph.GraphTests.test_missing_child_nodes) 364s Tests for missing child nodes. ... ok 364s test_missing_parent_nodes (migrations.test_graph.GraphTests.test_missing_parent_nodes) 364s Tests for missing parent nodes. ... ok 364s test_plan_invalid_node (migrations.test_graph.GraphTests.test_plan_invalid_node) 364s Tests for forwards/backwards_plan of nonexistent node. ... ok 364s test_remove_replaced_nodes (migrations.test_graph.GraphTests.test_remove_replaced_nodes) 364s Replaced nodes are properly removed and dependencies remapped. ... ok 364s test_remove_replacement_node (migrations.test_graph.GraphTests.test_remove_replacement_node) 364s A replacement node is properly removed and child dependencies remapped. ... ok 364s test_simple_graph (migrations.test_graph.GraphTests.test_simple_graph) 364s Tests a basic dependency graph: ... ok 364s test_stringify (migrations.test_graph.GraphTests.test_stringify) ... ok 364s test_validate_consistency_dummy (migrations.test_graph.GraphTests.test_validate_consistency_dummy) 364s validate_consistency() raises an error if there's an isolated dummy ... ok 364s test_validate_consistency_missing_child (migrations.test_graph.GraphTests.test_validate_consistency_missing_child) ... ok 364s test_validate_consistency_missing_parent (migrations.test_graph.GraphTests.test_validate_consistency_missing_parent) ... ok 364s test_validate_consistency_no_error (migrations.test_graph.GraphTests.test_validate_consistency_no_error) ... ok 364s test_dummynode_repr (migrations.test_graph.NodeTests.test_dummynode_repr) ... ok 364s test_node_repr (migrations.test_graph.NodeTests.test_node_repr) ... ok 364s test_invalid (migrations.test_loader.PycLoaderTests.test_invalid) 364s MigrationLoader reraises ImportErrors caused by "bad magic number" pyc ... ok 364s test_valid (migrations.test_loader.PycLoaderTests.test_valid) 364s To support frozen environments, MigrationLoader loads .pyc migrations. ... ok 365s test_create_model (migrations.test_multidb.MultiDBOperationTests.test_create_model) 365s Test when router doesn't have an opinion (i.e. CreateModel should run). ... ok 365s test_create_model2 (migrations.test_multidb.MultiDBOperationTests.test_create_model2) 365s Test when router returns False (i.e. CreateModel shouldn't run). ... ok 365s test_create_model3 (migrations.test_multidb.MultiDBOperationTests.test_create_model3) 365s Test when router returns True (i.e. CreateModel should run). ... ok 365s test_create_model4 (migrations.test_multidb.MultiDBOperationTests.test_create_model4) 365s Test multiple routers. ... ok 365s test_run_python_migrate_foo_router_with_hints (migrations.test_multidb.MultiDBOperationTests.test_run_python_migrate_foo_router_with_hints) ... ok 365s test_run_python_migrate_foo_router_without_hints (migrations.test_multidb.MultiDBOperationTests.test_run_python_migrate_foo_router_without_hints) ... ok 365s test_run_python_migrate_nothing_router (migrations.test_multidb.MultiDBOperationTests.test_run_python_migrate_nothing_router) ... ok 365s test_run_sql_migrate_foo_router_with_hints (migrations.test_multidb.MultiDBOperationTests.test_run_sql_migrate_foo_router_with_hints) ... ok 365s test_run_sql_migrate_foo_router_without_hints (migrations.test_multidb.MultiDBOperationTests.test_run_sql_migrate_foo_router_without_hints) ... ok 365s test_run_sql_migrate_nothing_router (migrations.test_multidb.MultiDBOperationTests.test_run_sql_migrate_nothing_router) ... ok 365s test_reference_field_by_through_fields (migrations.test_operations.FieldOperationTests.test_reference_field_by_through_fields) ... ok 365s test_references_field_by_from_fields (migrations.test_operations.FieldOperationTests.test_references_field_by_from_fields) ... ok 365s test_references_field_by_name (migrations.test_operations.FieldOperationTests.test_references_field_by_name) ... ok 365s test_references_field_by_remote_field_model (migrations.test_operations.FieldOperationTests.test_references_field_by_remote_field_model) ... ok 365s test_references_field_by_through (migrations.test_operations.FieldOperationTests.test_references_field_by_through) ... ok 365s test_references_field_by_to_fields (migrations.test_operations.FieldOperationTests.test_references_field_by_to_fields) ... ok 365s test_references_model (migrations.test_operations.FieldOperationTests.test_references_model) ... ok 368s test_alter_id_type_with_fk (migrations.test_executor.ExecutorTests.test_alter_id_type_with_fk) ... ok 368s test_apply_all_replaced_marks_replacement_as_applied (migrations.test_executor.ExecutorTests.test_apply_all_replaced_marks_replacement_as_applied) 368s Applying all replaced migrations marks replacement as applied (#24628). ... ok 368s test_atomic_operation_in_non_atomic_migration (migrations.test_executor.ExecutorTests.test_atomic_operation_in_non_atomic_migration) 368s An atomic operation is properly rolled back inside a non-atomic ... ok 368s test_custom_user (migrations.test_executor.ExecutorTests.test_custom_user) 368s Regression test for #22325 - references to a custom user model defined in the ... ok 368s test_detect_soft_applied_add_field_manytomanyfield (migrations.test_executor.ExecutorTests.test_detect_soft_applied_add_field_manytomanyfield) 368s executor.detect_soft_applied() detects ManyToManyField tables from an ... ok 368s test_empty_plan (migrations.test_executor.ExecutorTests.test_empty_plan) 368s Re-planning a full migration of a fully-migrated set doesn't ... ok 368s test_migrate_backward_to_squashed_migration (migrations.test_executor.ExecutorTests.test_migrate_backward_to_squashed_migration) ... ok 368s test_migrate_marks_replacement_applied_even_if_it_did_nothing (migrations.test_executor.ExecutorTests.test_migrate_marks_replacement_applied_even_if_it_did_nothing) 368s A new squash migration will be marked as applied even if all its ... ok 368s test_migrate_marks_replacement_unapplied (migrations.test_executor.ExecutorTests.test_migrate_marks_replacement_unapplied) ... ok 368s test_migrate_skips_schema_creation (migrations.test_executor.ExecutorTests.test_migrate_skips_schema_creation) 368s The django_migrations table is not created if there are no migrations ... ok 368s test_migrations_applied_and_recorded_atomically (migrations.test_executor.ExecutorTests.test_migrations_applied_and_recorded_atomically) 368s Migrations are applied and recorded atomically. ... ok 368s test_migrations_not_applied_on_deferred_sql_failure (migrations.test_executor.ExecutorTests.test_migrations_not_applied_on_deferred_sql_failure) 368s Migrations are not recorded if deferred SQL application fails. ... ok 368s test_mixed_plan_not_supported (migrations.test_executor.ExecutorTests.test_mixed_plan_not_supported) 368s Although the MigrationExecutor interfaces allows for mixed migration ... ok 368s test_non_atomic_migration (migrations.test_executor.ExecutorTests.test_non_atomic_migration) 368s Applying a non-atomic migration works as expected. ... ok 368s test_process_callback (migrations.test_executor.ExecutorTests.test_process_callback) 368s #24129 - Tests callback process ... ok 368s test_run (migrations.test_executor.ExecutorTests.test_run) 368s Tests running a simple set of migrations. ... ok 368s test_run_with_squashed (migrations.test_executor.ExecutorTests.test_run_with_squashed) 368s Tests running a squashed migration from zero (should ignore what it replaces) ... ok 368s test_soft_apply (migrations.test_executor.ExecutorTests.test_soft_apply) 368s Tests detection of initial migrations already having been applied. ... ok 368s test_unrelated_applied_migrations_mutate_state (migrations.test_executor.ExecutorTests.test_unrelated_applied_migrations_mutate_state) 368s #26647 - Unrelated applied migrations should be part of the final ... ok 368s test_unrelated_model_lookups_backwards (migrations.test_executor.ExecutorTests.test_unrelated_model_lookups_backwards) 368s #24123 - All models of apps being unapplied which are ... ok 368s test_unrelated_model_lookups_forwards (migrations.test_executor.ExecutorTests.test_unrelated_model_lookups_forwards) 368s #24123 - All models of apps already applied which are ... ok 368s test_add_field_ignore_swapped (migrations.test_operations.SwappableOperationTests.test_add_field_ignore_swapped) 368s Tests the AddField operation. ... ok 368s test_create_ignore_swapped (migrations.test_operations.SwappableOperationTests.test_create_ignore_swapped) 368s The CreateTable operation ignores swapped models. ... ok 368s test_delete_ignore_swapped (migrations.test_operations.SwappableOperationTests.test_delete_ignore_swapped) 368s Tests the DeleteModel operation ignores swapped models. ... ok 368s test_indexes_ignore_swapped (migrations.test_operations.SwappableOperationTests.test_indexes_ignore_swapped) 368s Add/RemoveIndex operations ignore swapped models. ... ok 368s test_references_model_mixin (migrations.test_operations.TestCreateModel.test_references_model_mixin) ... ok 368s test_add_field_alter_field (migrations.test_optimizer.OptimizerTests.test_add_field_alter_field) 368s AlterField should optimize into AddField. ... ok 368s test_add_field_delete_field (migrations.test_optimizer.OptimizerTests.test_add_field_delete_field) 368s RemoveField should cancel AddField ... ok 368s test_add_field_rename_field (migrations.test_optimizer.OptimizerTests.test_add_field_rename_field) 368s RenameField should optimize into AddField ... ok 368s test_alter_alter_index_model (migrations.test_optimizer.OptimizerTests.test_alter_alter_index_model) ... ok 368s test_alter_alter_owrt_model (migrations.test_optimizer.OptimizerTests.test_alter_alter_owrt_model) ... ok 368s test_alter_alter_table_model (migrations.test_optimizer.OptimizerTests.test_alter_alter_table_model) ... ok 368s test_alter_alter_unique_model (migrations.test_optimizer.OptimizerTests.test_alter_alter_unique_model) ... ok 368s test_alter_field_delete_field (migrations.test_optimizer.OptimizerTests.test_alter_field_delete_field) 368s RemoveField should absorb AlterField ... ok 368s test_alter_field_rename_field (migrations.test_optimizer.OptimizerTests.test_alter_field_rename_field) 368s RenameField should optimize to the other side of AlterField, ... ok 368s test_create_alter_index_delete_model (migrations.test_optimizer.OptimizerTests.test_create_alter_index_delete_model) ... ok 368s test_create_alter_index_field (migrations.test_optimizer.OptimizerTests.test_create_alter_index_field) ... ok 368s test_create_alter_model_managers (migrations.test_optimizer.OptimizerTests.test_create_alter_model_managers) ... ok 368s test_create_alter_model_options (migrations.test_optimizer.OptimizerTests.test_create_alter_model_options) ... ok 368s test_create_alter_owrt_delete_model (migrations.test_optimizer.OptimizerTests.test_create_alter_owrt_delete_model) ... ok 368s test_create_alter_owrt_field (migrations.test_optimizer.OptimizerTests.test_create_alter_owrt_field) ... ok 368s test_create_alter_unique_delete_model (migrations.test_optimizer.OptimizerTests.test_create_alter_unique_delete_model) ... ok 368s test_create_alter_unique_field (migrations.test_optimizer.OptimizerTests.test_create_alter_unique_field) ... ok 368s test_create_delete_model (migrations.test_optimizer.OptimizerTests.test_create_delete_model) 368s CreateModel and DeleteModel should collapse into nothing. ... ok 368s test_create_model_add_field (migrations.test_optimizer.OptimizerTests.test_create_model_add_field) 368s AddField should optimize into CreateModel. ... ok 368s test_create_model_add_field_not_through_m2m_through (migrations.test_optimizer.OptimizerTests.test_create_model_add_field_not_through_m2m_through) 368s AddField should NOT optimize into CreateModel if it's an M2M using a ... ok 368s test_create_model_add_index (migrations.test_optimizer.OptimizerTests.test_create_model_add_index) ... ok 368s test_create_model_alter_field (migrations.test_optimizer.OptimizerTests.test_create_model_alter_field) 368s AlterField should optimize into CreateModel. ... ok 368s test_create_model_and_remove_model_options (migrations.test_optimizer.OptimizerTests.test_create_model_and_remove_model_options) ... ok 368s test_create_model_index_together_rename_index (migrations.test_optimizer.OptimizerTests.test_create_model_index_together_rename_index) ... ok 368s test_create_model_no_reordering_for_unrelated_fk (migrations.test_optimizer.OptimizerTests.test_create_model_no_reordering_for_unrelated_fk) 368s CreateModel order remains unchanged if the later AddField operation ... ok 368s test_create_model_no_reordering_of_inherited_model (migrations.test_optimizer.OptimizerTests.test_create_model_no_reordering_of_inherited_model) 368s A CreateModel that inherits from another isn't reordered to avoid ... ok 368s test_create_model_remove_field (migrations.test_optimizer.OptimizerTests.test_create_model_remove_field) 368s RemoveField should optimize into CreateModel. ... ok 368s test_create_model_remove_index (migrations.test_optimizer.OptimizerTests.test_create_model_remove_index) ... ok 368s test_create_model_remove_index_together_rename_index (migrations.test_optimizer.OptimizerTests.test_create_model_remove_index_together_rename_index) ... ok 368s test_create_model_rename_field (migrations.test_optimizer.OptimizerTests.test_create_model_rename_field) 368s RenameField should optimize into CreateModel. ... ok 368s test_create_model_rename_index_no_old_fields (migrations.test_optimizer.OptimizerTests.test_create_model_rename_index_no_old_fields) ... ok 368s test_create_model_reordering (migrations.test_optimizer.OptimizerTests.test_create_model_reordering) 368s AddField optimizes into CreateModel if it's a FK to a model that's ... ok 368s test_create_model_reordering_circular_fk (migrations.test_optimizer.OptimizerTests.test_create_model_reordering_circular_fk) 368s CreateModel reordering behavior doesn't result in an infinite loop if ... ok 368s test_create_rename_model (migrations.test_optimizer.OptimizerTests.test_create_rename_model) 368s CreateModel should absorb RenameModels. ... ok 368s test_none_app_label (migrations.test_optimizer.OptimizerTests.test_none_app_label) ... ok 368s test_optimize_elidable_operation (migrations.test_optimizer.OptimizerTests.test_optimize_elidable_operation) ... ok 368s test_optimize_through_create (migrations.test_optimizer.OptimizerTests.test_optimize_through_create) 368s We should be able to optimize away create/delete through a create or ... ok 368s test_optimize_through_fields (migrations.test_optimizer.OptimizerTests.test_optimize_through_fields) 368s field-level through checking is working. This should manage to collapse ... ok 368s test_rename_index (migrations.test_optimizer.OptimizerTests.test_rename_index) ... ok 368s test_rename_model_self (migrations.test_optimizer.OptimizerTests.test_rename_model_self) 368s RenameModels should absorb themselves. ... ok 368s test_single (migrations.test_optimizer.OptimizerTests.test_single) 368s The optimizer does nothing on a single operation, ... ok 368s test_swapping_fields_names (migrations.test_optimizer.OptimizerTests.test_swapping_fields_names) ... ok 368s test_questioner_bad_user_choice (migrations.test_questioner.QuestionerHelperMethodsTests.test_questioner_bad_user_choice) ... ok 368s test_questioner_default_no_user_entry (migrations.test_questioner.QuestionerHelperMethodsTests.test_questioner_default_no_user_entry) ... ok 368s test_questioner_default_no_user_entry_boolean (migrations.test_questioner.QuestionerHelperMethodsTests.test_questioner_default_no_user_entry_boolean) ... ok 368s test_questioner_default_timedelta (migrations.test_questioner.QuestionerHelperMethodsTests.test_questioner_default_timedelta) ... ok 368s test_questioner_no_default_bad_user_entry_code (migrations.test_questioner.QuestionerHelperMethodsTests.test_questioner_no_default_bad_user_entry_code) ... ok 368s test_questioner_no_default_no_user_entry (migrations.test_questioner.QuestionerHelperMethodsTests.test_questioner_no_default_no_user_entry) ... ok 368s test_questioner_no_default_no_user_entry_boolean (migrations.test_questioner.QuestionerHelperMethodsTests.test_questioner_no_default_no_user_entry_boolean) ... ok 368s test_ask_initial_with_disabled_migrations (migrations.test_questioner.QuestionerTests.test_ask_initial_with_disabled_migrations) ... ok 368s test_ask_not_null_alteration (migrations.test_questioner.QuestionerTests.test_ask_not_null_alteration) ... ok 368s test_ask_not_null_alteration_not_provided (migrations.test_questioner.QuestionerTests.test_ask_not_null_alteration_not_provided) ... ok 368s test_abstract_model_children_inherit_indexes (migrations.test_state.ModelStateTests.test_abstract_model_children_inherit_indexes) ... ok 368s test_bound_field_sanity_check (migrations.test_state.ModelStateTests.test_bound_field_sanity_check) ... ok 368s test_create_swappable (migrations.test_state.ModelStateTests.test_create_swappable) 368s Tests making a ProjectState from an Apps with a swappable model ... ok 368s test_create_swappable_from_abstract (migrations.test_state.ModelStateTests.test_create_swappable_from_abstract) 368s A swappable model inheriting from a hierarchy: ... ok 368s test_custom_manager_swappable (migrations.test_state.ModelStateTests.test_custom_manager_swappable) 368s Tests making a ProjectState from unused models with custom managers ... ok 368s test_custom_model_base (migrations.test_state.ModelStateTests.test_custom_model_base) ... ok 368s test_explicit_index_name (migrations.test_state.ModelStateTests.test_explicit_index_name) ... ok 368s test_fields_immutability (migrations.test_state.ModelStateTests.test_fields_immutability) 368s Rendering a model state doesn't alter its internal fields. ... ok 368s test_fields_ordering_equality (migrations.test_state.ModelStateTests.test_fields_ordering_equality) ... ok 368s test_from_model_constraints (migrations.test_state.ModelStateTests.test_from_model_constraints) ... ok 368s test_order_with_respect_to_private_field (migrations.test_state.ModelStateTests.test_order_with_respect_to_private_field) ... ok 368s test_repr (migrations.test_state.ModelStateTests.test_repr) ... ok 368s test_sanity_check_through (migrations.test_state.ModelStateTests.test_sanity_check_through) ... ok 368s test_sanity_check_to (migrations.test_state.ModelStateTests.test_sanity_check_to) ... ok 368s test_sanity_index_name (migrations.test_state.ModelStateTests.test_sanity_index_name) ... ok 368s test_abstract_base (migrations.test_state.RelatedModelsTests.test_abstract_base) ... ok 368s test_base (migrations.test_state.RelatedModelsTests.test_base) ... ok 368s test_base_to_base_fk (migrations.test_state.RelatedModelsTests.test_base_to_base_fk) ... ok 368s test_base_to_subclass_fk (migrations.test_state.RelatedModelsTests.test_base_to_subclass_fk) ... ok 368s test_circle (migrations.test_state.RelatedModelsTests.test_circle) ... ok 368s test_direct_fk (migrations.test_state.RelatedModelsTests.test_direct_fk) ... ok 368s test_direct_hidden_fk (migrations.test_state.RelatedModelsTests.test_direct_hidden_fk) ... ok 368s test_direct_m2m (migrations.test_state.RelatedModelsTests.test_direct_m2m) ... ok 368s test_direct_m2m_self (migrations.test_state.RelatedModelsTests.test_direct_m2m_self) ... ok 369s test_fk_through_proxy (migrations.test_state.RelatedModelsTests.test_fk_through_proxy) ... ok 369s test_generic_fk (migrations.test_state.RelatedModelsTests.test_generic_fk) ... ok 369s test_intermediate_m2m (migrations.test_state.RelatedModelsTests.test_intermediate_m2m) ... ok 369s test_intermediate_m2m_base (migrations.test_state.RelatedModelsTests.test_intermediate_m2m_base) ... ok 369s test_intermediate_m2m_extern_fk (migrations.test_state.RelatedModelsTests.test_intermediate_m2m_extern_fk) ... ok 369s test_intermediate_m2m_self (migrations.test_state.RelatedModelsTests.test_intermediate_m2m_self) ... ok 369s test_multiple_bases (migrations.test_state.RelatedModelsTests.test_multiple_bases) ... ok 369s test_multiple_mixed_bases (migrations.test_state.RelatedModelsTests.test_multiple_mixed_bases) ... ok 369s test_multiple_nested_bases (migrations.test_state.RelatedModelsTests.test_multiple_nested_bases) ... ok 369s test_nested_abstract_base (migrations.test_state.RelatedModelsTests.test_nested_abstract_base) ... ok 369s test_nested_base (migrations.test_state.RelatedModelsTests.test_nested_base) ... ok 369s test_nested_fk (migrations.test_state.RelatedModelsTests.test_nested_fk) ... ok 369s test_nested_proxy_base (migrations.test_state.RelatedModelsTests.test_nested_proxy_base) ... ok 369s test_proxy_base (migrations.test_state.RelatedModelsTests.test_proxy_base) ... ok 369s test_two_sided (migrations.test_state.RelatedModelsTests.test_two_sided) ... ok 369s test_unrelated (migrations.test_state.RelatedModelsTests.test_unrelated) ... ok 369s test_add_field (migrations.test_state.StateRelationsTests.test_add_field) ... ok 369s test_add_field_m2m_with_through (migrations.test_state.StateRelationsTests.test_add_field_m2m_with_through) ... ok 369s test_add_model (migrations.test_state.StateRelationsTests.test_add_model) ... ok 369s test_add_model_no_relations (migrations.test_state.StateRelationsTests.test_add_model_no_relations) ... ok 369s test_add_model_other_app (migrations.test_state.StateRelationsTests.test_add_model_other_app) ... ok 369s test_alter_field (migrations.test_state.StateRelationsTests.test_alter_field) ... ok 369s test_alter_field_m2m_to_fk (migrations.test_state.StateRelationsTests.test_alter_field_m2m_to_fk) ... ok 369s test_many_relations_to_same_model (migrations.test_state.StateRelationsTests.test_many_relations_to_same_model) ... ok 369s test_relations_population (migrations.test_state.StateRelationsTests.test_relations_population) ... ok 369s test_remove_field (migrations.test_state.StateRelationsTests.test_remove_field) ... ok 369s test_remove_field_no_relations (migrations.test_state.StateRelationsTests.test_remove_field_no_relations) ... ok 369s test_remove_model (migrations.test_state.StateRelationsTests.test_remove_model) ... ok 369s test_rename_field (migrations.test_state.StateRelationsTests.test_rename_field) ... ok 369s test_rename_field_no_relations (migrations.test_state.StateRelationsTests.test_rename_field_no_relations) ... ok 369s test_rename_model (migrations.test_state.StateRelationsTests.test_rename_model) ... ok 369s test_rename_model_no_relations (migrations.test_state.StateRelationsTests.test_rename_model_no_relations) ... ok 369s test_add_relations (migrations.test_state.StateTests.test_add_relations) 369s #24573 - Adding relations to existing models should reload the ... ok 369s test_apps_bulk_update (migrations.test_state.StateTests.test_apps_bulk_update) 369s StateApps.bulk_update() should update apps.ready to False and reset ... ok 369s test_choices_iterator (migrations.test_state.StateTests.test_choices_iterator) 369s #24483 - ProjectState.from_apps should not destructively consume ... ok 369s test_create (migrations.test_state.StateTests.test_create) 369s Tests making a ProjectState from an Apps ... ok 369s test_custom_base_manager (migrations.test_state.StateTests.test_custom_base_manager) ... ok 369s test_custom_default_manager (migrations.test_state.StateTests.test_custom_default_manager) ... ok 369s test_custom_default_manager_added_to_the_model_state (migrations.test_state.StateTests.test_custom_default_manager_added_to_the_model_state) 369s When the default manager of the model is a custom manager, ... ok 369s test_custom_default_manager_named_objects_with_false_migration_flag (migrations.test_state.StateTests.test_custom_default_manager_named_objects_with_false_migration_flag) 369s When a manager is added with a name of 'objects' but it does not ... ok 369s test_dangling_references_throw_error (migrations.test_state.StateTests.test_dangling_references_throw_error) ... ok 369s test_equality (migrations.test_state.StateTests.test_equality) 369s == and != are implemented correctly. ... ok 369s test_ignore_order_wrt (migrations.test_state.StateTests.test_ignore_order_wrt) 369s Makes sure ProjectState doesn't include OrderWrt fields when ... ok 369s test_manager_refer_correct_model_version (migrations.test_state.StateTests.test_manager_refer_correct_model_version) 369s #24147 - Managers refer to the correct version of a ... ok 369s test_modelstate_get_field_no_order_wrt_order_field (migrations.test_state.StateTests.test_modelstate_get_field_no_order_wrt_order_field) ... ok 369s test_modelstate_get_field_order_wrt (migrations.test_state.StateTests.test_modelstate_get_field_order_wrt) ... ok 369s test_no_duplicate_managers (migrations.test_state.StateTests.test_no_duplicate_managers) 369s When a manager is added with `use_in_migrations = True` and a parent ... ok 369s test_real_apps (migrations.test_state.StateTests.test_real_apps) 369s Including real apps can resolve dangling FK errors. ... ok 369s test_real_apps_non_set (migrations.test_state.StateTests.test_real_apps_non_set) ... ok 369s test_reference_mixed_case_app_label (migrations.test_state.StateTests.test_reference_mixed_case_app_label) ... ok 369s test_reload_model_relationship_consistency (migrations.test_state.StateTests.test_reload_model_relationship_consistency) ... ok 369s test_reload_related_model_on_non_relational_fields (migrations.test_state.StateTests.test_reload_related_model_on_non_relational_fields) 369s The model is reloaded even on changes that are not involved in ... ok 369s test_remove_relations (migrations.test_state.StateTests.test_remove_relations) 369s #24225 - Relations between models are updated while ... ok 369s test_render (migrations.test_state.StateTests.test_render) 369s Tests rendering a ProjectState into an Apps. ... ok 369s test_render_model_inheritance (migrations.test_state.StateTests.test_render_model_inheritance) ... ok 369s test_render_model_with_multiple_inheritance (migrations.test_state.StateTests.test_render_model_with_multiple_inheritance) ... ok 369s test_render_project_dependencies (migrations.test_state.StateTests.test_render_project_dependencies) 369s The ProjectState render method correctly renders models ... ok 369s test_render_unique_app_labels (migrations.test_state.StateTests.test_render_unique_app_labels) 369s The ProjectState render method doesn't raise an ... ok 369s test_self_relation (migrations.test_state.StateTests.test_self_relation) 369s #24513 - Modifying an object pointing to itself would cause it to be ... ok 369s test_args_kwargs_signature (migrations.test_writer.OperationWriterTests.test_args_kwargs_signature) ... ok 369s test_args_signature (migrations.test_writer.OperationWriterTests.test_args_signature) ... ok 369s test_empty_signature (migrations.test_writer.OperationWriterTests.test_empty_signature) ... ok 369s test_expand_args_signature (migrations.test_writer.OperationWriterTests.test_expand_args_signature) ... ok 369s test_kwargs_signature (migrations.test_writer.OperationWriterTests.test_kwargs_signature) ... ok 369s test_multiline_args_signature (migrations.test_writer.OperationWriterTests.test_multiline_args_signature) ... ok 369s test_nested_args_signature (migrations.test_writer.OperationWriterTests.test_nested_args_signature) ... ok 369s test_nested_operation_expand_args_signature (migrations.test_writer.OperationWriterTests.test_nested_operation_expand_args_signature) ... ok 369s test_custom_operation (migrations.test_writer.WriterTests.test_custom_operation) ... ok 369s test_deconstruct_class_arguments (migrations.test_writer.WriterTests.test_deconstruct_class_arguments) ... ok 369s test_migration_file_header_comments (migrations.test_writer.WriterTests.test_migration_file_header_comments) 369s Test comments at top of file. ... ok 369s test_migration_path (migrations.test_writer.WriterTests.test_migration_path) ... ok 369s test_models_import_omitted (migrations.test_writer.WriterTests.test_models_import_omitted) 369s django.db.models shouldn't be imported if unused. ... ok 369s test_register_non_serializer (migrations.test_writer.WriterTests.test_register_non_serializer) ... ok 369s test_register_serializer (migrations.test_writer.WriterTests.test_register_serializer) ... ok 369s test_serialize_builtin_types (migrations.test_writer.WriterTests.test_serialize_builtin_types) ... ok 369s test_serialize_builtins (migrations.test_writer.WriterTests.test_serialize_builtins) ... ok 369s test_serialize_choices (migrations.test_writer.WriterTests.test_serialize_choices) ... ok 369s test_serialize_class_based_validators (migrations.test_writer.WriterTests.test_serialize_class_based_validators) 369s Ticket #22943: Test serialization of class-based validators, including ... ok 369s test_serialize_collections (migrations.test_writer.WriterTests.test_serialize_collections) ... ok 369s test_serialize_compiled_regex (migrations.test_writer.WriterTests.test_serialize_compiled_regex) 369s Make sure compiled regex can be serialized. ... ok 369s test_serialize_complex_func_index (migrations.test_writer.WriterTests.test_serialize_complex_func_index) ... ok 369s test_serialize_constants (migrations.test_writer.WriterTests.test_serialize_constants) ... ok 369s test_serialize_datetime (migrations.test_writer.WriterTests.test_serialize_datetime) ... ok 369s test_serialize_empty_nonempty_tuple (migrations.test_writer.WriterTests.test_serialize_empty_nonempty_tuple) 369s Ticket #22679: makemigrations generates invalid code for (an empty ... ok 369s test_serialize_enum_flags (migrations.test_writer.WriterTests.test_serialize_enum_flags) ... ok 369s test_serialize_enums (migrations.test_writer.WriterTests.test_serialize_enums) ... ok 369s test_serialize_fields (migrations.test_writer.WriterTests.test_serialize_fields) ... ok 369s test_serialize_frozensets (migrations.test_writer.WriterTests.test_serialize_frozensets) ... ok 369s test_serialize_functions (migrations.test_writer.WriterTests.test_serialize_functions) ... ok 369s test_serialize_functools_partial (migrations.test_writer.WriterTests.test_serialize_functools_partial) ... ok 369s test_serialize_functools_partialmethod (migrations.test_writer.WriterTests.test_serialize_functools_partialmethod) ... ok 369s test_serialize_iterators (migrations.test_writer.WriterTests.test_serialize_iterators) ... ok 369s test_serialize_lazy_objects (migrations.test_writer.WriterTests.test_serialize_lazy_objects) ... ok 369s test_serialize_local_function_reference (migrations.test_writer.WriterTests.test_serialize_local_function_reference) 369s A reference in a local scope can't be serialized. ... ok 369s test_serialize_managers (migrations.test_writer.WriterTests.test_serialize_managers) ... ok 369s test_serialize_multiline_strings (migrations.test_writer.WriterTests.test_serialize_multiline_strings) ... ok 369s test_serialize_nested_class (migrations.test_writer.WriterTests.test_serialize_nested_class) ... ok 369s test_serialize_numbers (migrations.test_writer.WriterTests.test_serialize_numbers) ... ok 369s test_serialize_path_like (migrations.test_writer.WriterTests.test_serialize_path_like) ... ok 369s test_serialize_pathlib (migrations.test_writer.WriterTests.test_serialize_pathlib) ... ok 369s test_serialize_range (migrations.test_writer.WriterTests.test_serialize_range) ... ok 369s test_serialize_set (migrations.test_writer.WriterTests.test_serialize_set) ... ok 369s test_serialize_settings (migrations.test_writer.WriterTests.test_serialize_settings) ... ok 369s test_serialize_strings (migrations.test_writer.WriterTests.test_serialize_strings) ... ok 369s test_serialize_timedelta (migrations.test_writer.WriterTests.test_serialize_timedelta) ... ok 369s test_serialize_type_model (migrations.test_writer.WriterTests.test_serialize_type_model) ... ok 369s test_serialize_type_none (migrations.test_writer.WriterTests.test_serialize_type_none) ... ok 369s test_serialize_unbound_method_reference (migrations.test_writer.WriterTests.test_serialize_unbound_method_reference) 369s An unbound method used within a class body can be serialized. ... ok 369s test_serialize_uuid (migrations.test_writer.WriterTests.test_serialize_uuid) ... ok 369s test_simple_migration (migrations.test_writer.WriterTests.test_simple_migration) 369s Tests serializing a simple migration. ... ok 369s test_sorted_imports (migrations.test_writer.WriterTests.test_sorted_imports) 369s #24155 - Tests ordering of imports. ... ok 369s test_connection_handler_no_databases (db_utils.tests.ConnectionHandlerTests.test_connection_handler_no_databases) 369s Empty DATABASES and empty 'default' settings default to the dummy ... ok 369s test_databases_property (db_utils.tests.ConnectionHandlerTests.test_databases_property) ... ok 369s test_no_default_database (db_utils.tests.ConnectionHandlerTests.test_no_default_database) ... ok 369s test_nonexistent_alias (db_utils.tests.ConnectionHandlerTests.test_nonexistent_alias) ... ok 369s test_load_backend_invalid_name (db_utils.tests.LoadBackendTests.test_load_backend_invalid_name) ... ok 369s test_command_option (shell.tests.ShellCommandTestCase.test_command_option) ... ok 369s test_command_option_globals (shell.tests.ShellCommandTestCase.test_command_option_globals) ... ok 369s test_command_option_inline_function_call (shell.tests.ShellCommandTestCase.test_command_option_inline_function_call) ... ok 369s test_shell_with_bpython_not_installed (shell.tests.ShellCommandTestCase.test_shell_with_bpython_not_installed) ... ok 369s test_shell_with_ipython_not_installed (shell.tests.ShellCommandTestCase.test_shell_with_ipython_not_installed) ... ok 369s test_stdin_read (shell.tests.ShellCommandTestCase.test_stdin_read) ... ok 369s test_stdin_read_globals (shell.tests.ShellCommandTestCase.test_stdin_read_globals) ... ok 369s test_stdin_read_inline_function_call (shell.tests.ShellCommandTestCase.test_stdin_read_inline_function_call) ... ok 369s test_abstract_children (model_indexes.tests.SimpleIndexesTests.test_abstract_children) ... ok 369s test_clone (model_indexes.tests.SimpleIndexesTests.test_clone) ... ok 369s test_clone_with_expressions (model_indexes.tests.SimpleIndexesTests.test_clone_with_expressions) ... ok 369s test_condition_must_be_q (model_indexes.tests.SimpleIndexesTests.test_condition_must_be_q) ... ok 369s test_condition_requires_index_name (model_indexes.tests.SimpleIndexesTests.test_condition_requires_index_name) ... ok 369s test_deconstruct_with_condition (model_indexes.tests.SimpleIndexesTests.test_deconstruct_with_condition) ... ok 369s test_deconstruct_with_expressions (model_indexes.tests.SimpleIndexesTests.test_deconstruct_with_expressions) ... ok 369s test_deconstruct_with_include (model_indexes.tests.SimpleIndexesTests.test_deconstruct_with_include) ... ok 369s test_deconstruction (model_indexes.tests.SimpleIndexesTests.test_deconstruction) ... ok 369s test_eq (model_indexes.tests.SimpleIndexesTests.test_eq) ... ok 369s test_eq_func (model_indexes.tests.SimpleIndexesTests.test_eq_func) ... ok 369s test_expressions_and_fields_mutually_exclusive (model_indexes.tests.SimpleIndexesTests.test_expressions_and_fields_mutually_exclusive) ... ok 369s test_expressions_requires_index_name (model_indexes.tests.SimpleIndexesTests.test_expressions_requires_index_name) ... ok 369s test_expressions_with_opclasses (model_indexes.tests.SimpleIndexesTests.test_expressions_with_opclasses) ... ok 369s test_fields_tuple (model_indexes.tests.SimpleIndexesTests.test_fields_tuple) ... ok 369s test_include_requires_index_name (model_indexes.tests.SimpleIndexesTests.test_include_requires_index_name) ... ok 369s test_include_requires_list_or_tuple (model_indexes.tests.SimpleIndexesTests.test_include_requires_list_or_tuple) ... ok 369s test_index_fields_strings (model_indexes.tests.SimpleIndexesTests.test_index_fields_strings) ... ok 369s test_index_fields_type (model_indexes.tests.SimpleIndexesTests.test_index_fields_type) ... ok 369s test_name_auto_generation (model_indexes.tests.SimpleIndexesTests.test_name_auto_generation) ... ok 369s test_name_auto_generation_with_quoted_db_table (model_indexes.tests.SimpleIndexesTests.test_name_auto_generation_with_quoted_db_table) ... ok 369s test_name_set (model_indexes.tests.SimpleIndexesTests.test_name_set) ... ok 369s test_opclasses_and_fields_same_length (model_indexes.tests.SimpleIndexesTests.test_opclasses_and_fields_same_length) ... ok 369s test_opclasses_requires_index_name (model_indexes.tests.SimpleIndexesTests.test_opclasses_requires_index_name) ... ok 369s test_opclasses_requires_list_or_tuple (model_indexes.tests.SimpleIndexesTests.test_opclasses_requires_list_or_tuple) ... ok 369s test_repr (model_indexes.tests.SimpleIndexesTests.test_repr) ... ok 369s test_requires_field_or_expression (model_indexes.tests.SimpleIndexesTests.test_requires_field_or_expression) ... ok 369s test_suffix (model_indexes.tests.SimpleIndexesTests.test_suffix) ... ok 369s test_cache_control_decorator_http_request (decorators.tests.CacheControlDecoratorTest.test_cache_control_decorator_http_request) ... ok 369s test_cache_control_decorator_http_request_proxy (decorators.tests.CacheControlDecoratorTest.test_cache_control_decorator_http_request_proxy) ... ok 369s test_argumented (decorators.tests.MethodDecoratorTests.test_argumented) ... ok 369s test_bad_iterable (decorators.tests.MethodDecoratorTests.test_bad_iterable) ... ok 369s test_class_decoration (decorators.tests.MethodDecoratorTests.test_class_decoration) 369s @method_decorator can be used to decorate a class and its methods. ... ok 369s test_descriptors (decorators.tests.MethodDecoratorTests.test_descriptors) ... ok 369s test_invalid_method_name_to_decorate (decorators.tests.MethodDecoratorTests.test_invalid_method_name_to_decorate) 369s @method_decorator on a nonexistent method raises an error. ... ok 369s test_invalid_non_callable_attribute_decoration (decorators.tests.MethodDecoratorTests.test_invalid_non_callable_attribute_decoration) 369s @method_decorator on a non-callable attribute raises an error. ... ok 369s test_new_attribute (decorators.tests.MethodDecoratorTests.test_new_attribute) 369s A decorator that sets a new attribute on the method. ... ok 369s test_preserve_attributes (decorators.tests.MethodDecoratorTests.test_preserve_attributes) ... ok 369s test_preserve_signature (decorators.tests.MethodDecoratorTests.test_preserve_signature) ... ok 369s test_tuple_of_decorators (decorators.tests.MethodDecoratorTests.test_tuple_of_decorators) 369s @method_decorator can accept a tuple of decorators. ... ok 369s test_wrapper_assignments (decorators.tests.MethodDecoratorTests.test_wrapper_assignments) 369s @method_decorator preserves wrapper assignments. ... ok 369s test_never_cache_decorator_expires_not_overridden (decorators.tests.NeverCacheDecoratorTest.test_never_cache_decorator_expires_not_overridden) ... ok 369s test_never_cache_decorator_headers (decorators.tests.NeverCacheDecoratorTest.test_never_cache_decorator_headers) ... ok 369s test_never_cache_decorator_http_request (decorators.tests.NeverCacheDecoratorTest.test_never_cache_decorator_http_request) ... ok 369s test_never_cache_decorator_http_request_proxy (decorators.tests.NeverCacheDecoratorTest.test_never_cache_decorator_http_request_proxy) ... ok 369s test_conditional_content_removal (test_client.test_conditional_content_removal.ConditionalContentTests.test_conditional_content_removal) 369s Content is removed from regular and streaming responses with a ... ok 369s test_write_after_read (test_client.test_fakepayload.FakePayloadTests.test_write_after_read) ... ok 369s test_request_factory (test_client.tests.AsyncRequestFactoryTest.test_request_factory) ... ok 369s test_request_factory_data (test_client.tests.AsyncRequestFactoryTest.test_request_factory_data) ... ok 369s test_request_factory_query_string (test_client.tests.AsyncRequestFactoryTest.test_request_factory_query_string) ... ok 369s test_request_factory_sets_headers (test_client.tests.AsyncRequestFactoryTest.test_request_factory_sets_headers) ... ok 369s test_request_limited_read (test_client.tests.AsyncRequestFactoryTest.test_request_limited_read) ... ok 369s test_csrf_enabled_client (test_client.tests.CSRFEnabledClientTests.test_csrf_enabled_client) 369s A client can be instantiated with CSRF checks enabled ... ok 369s test_custom_test_client (test_client.tests.CustomTestClientTest.test_custom_test_client) 369s A test case can specify a custom class for self.client. ... ok 369s test_get_request_from_factory (test_client.tests.RequestFactoryTest.test_get_request_from_factory) 369s The request factory returns a templated response for a GET request. ... ok 369s test_request_factory (test_client.tests.RequestFactoryTest.test_request_factory) 369s The request factory implements all the HTTP/1.1 methods. ... ok 369s test_request_factory_default_headers (test_client.tests.RequestFactoryTest.test_request_factory_default_headers) ... ok 369s test_request_factory_sets_headers (test_client.tests.RequestFactoryTest.test_request_factory_sets_headers) ... ok 369s test_trace_request_from_factory (test_client.tests.RequestFactoryTest.test_trace_request_from_factory) 369s The request factory returns an echo response for a TRACE request. ... ok 369s test_invalid_field_type (sites_framework.tests.CurrentSiteManagerChecksTests.test_invalid_field_type) ... ok 369s test_invalid_name (sites_framework.tests.CurrentSiteManagerChecksTests.test_invalid_name) ... ok 369s test_autoescape_default (template_backends.test_django.DjangoTemplatesTests.test_autoescape_default) ... ok 369s test_autoescape_off (template_backends.test_django.DjangoTemplatesTests.test_autoescape_off) ... ok 369s test_builtins_discovery (template_backends.test_django.DjangoTemplatesTests.test_builtins_discovery) ... ok 369s test_context_has_priority_over_template_context_processors (template_backends.test_django.DjangoTemplatesTests.test_context_has_priority_over_template_context_processors) ... ok 369s test_csrf_token (template_backends.test_django.DjangoTemplatesTests.test_csrf_token) ... ok 369s test_default_template_loaders (template_backends.test_django.DjangoTemplatesTests.test_default_template_loaders) 369s The cached template loader is always enabled by default. ... ok 369s test_dirs_pathlib (template_backends.test_django.DjangoTemplatesTests.test_dirs_pathlib) ... ok 369s test_django_html_escaping (template_backends.test_django.DjangoTemplatesTests.test_django_html_escaping) ... ok 369s test_from_string (template_backends.test_django.DjangoTemplatesTests.test_from_string) ... ok 369s test_get_template (template_backends.test_django.DjangoTemplatesTests.test_get_template) ... ok 369s test_get_template_nonexistent (template_backends.test_django.DjangoTemplatesTests.test_get_template_nonexistent) ... ok 369s test_get_template_syntax_error (template_backends.test_django.DjangoTemplatesTests.test_get_template_syntax_error) ... ok 369s test_html_escaping (template_backends.test_django.DjangoTemplatesTests.test_html_escaping) ... ok 369s test_no_directory_traversal (template_backends.test_django.DjangoTemplatesTests.test_no_directory_traversal) ... ok 369s test_non_ascii_characters (template_backends.test_django.DjangoTemplatesTests.test_non_ascii_characters) ... ok 369s test_render_requires_dict (template_backends.test_django.DjangoTemplatesTests.test_render_requires_dict) 369s django.Template.render() requires a dict. ... ok 369s test_templatetag_discovery (template_backends.test_django.DjangoTemplatesTests.test_templatetag_discovery) ... ok 369s test_templatetag_discovery_import_error (template_backends.test_django.DjangoTemplatesTests.test_templatetag_discovery_import_error) 369s Import errors in tag modules should be reraised with a helpful message. ... ok 370s test_csrf_token (template_backends.test_dummy.TemplateStringsTests.test_csrf_token) ... ok 370s test_django_html_escaping (template_backends.test_dummy.TemplateStringsTests.test_django_html_escaping) ... skipped "test doesn't apply to dummy backend" 370s test_from_string (template_backends.test_dummy.TemplateStringsTests.test_from_string) ... ok 370s test_get_template (template_backends.test_dummy.TemplateStringsTests.test_get_template) ... ok 370s test_get_template_nonexistent (template_backends.test_dummy.TemplateStringsTests.test_get_template_nonexistent) ... ok 370s test_get_template_syntax_error (template_backends.test_dummy.TemplateStringsTests.test_get_template_syntax_error) ... skipped "test doesn't apply to dummy backend" 370s test_html_escaping (template_backends.test_dummy.TemplateStringsTests.test_html_escaping) ... ok 370s test_no_directory_traversal (template_backends.test_dummy.TemplateStringsTests.test_no_directory_traversal) ... ok 370s test_non_ascii_characters (template_backends.test_dummy.TemplateStringsTests.test_non_ascii_characters) ... ok 370s test_context_processors (template_backends.test_jinja2.Jinja2Tests.test_context_processors) ... ok 370s test_csrf_token (template_backends.test_jinja2.Jinja2Tests.test_csrf_token) ... ok 370s test_dirs_pathlib (template_backends.test_jinja2.Jinja2Tests.test_dirs_pathlib) ... ok 370s test_django_html_escaping (template_backends.test_jinja2.Jinja2Tests.test_django_html_escaping) ... ok 370s test_exception_debug_info_max_context (template_backends.test_jinja2.Jinja2Tests.test_exception_debug_info_max_context) ... ok 370s test_exception_debug_info_min_context (template_backends.test_jinja2.Jinja2Tests.test_exception_debug_info_min_context) ... ok 370s test_from_string (template_backends.test_jinja2.Jinja2Tests.test_from_string) ... ok 370s test_get_template (template_backends.test_jinja2.Jinja2Tests.test_get_template) ... ok 370s test_get_template_nonexistent (template_backends.test_jinja2.Jinja2Tests.test_get_template_nonexistent) ... ok 370s test_get_template_syntax_error (template_backends.test_jinja2.Jinja2Tests.test_get_template_syntax_error) ... ok 370s test_html_escaping (template_backends.test_jinja2.Jinja2Tests.test_html_escaping) ... ok 370s test_no_directory_traversal (template_backends.test_jinja2.Jinja2Tests.test_no_directory_traversal) ... ok 370s test_non_ascii_characters (template_backends.test_jinja2.Jinja2Tests.test_non_ascii_characters) ... ok 370s test_origin (template_backends.test_jinja2.Jinja2Tests.test_origin) ... ok 370s test_origin_from_string (template_backends.test_jinja2.Jinja2Tests.test_origin_from_string) ... ok 370s test_self_context (template_backends.test_jinja2.Jinja2Tests.test_self_context) 370s Using 'self' in the context should not throw errors (#24538). ... ok 370s test_template_render_error_nonexistent_source (template_backends.test_jinja2.Jinja2Tests.test_template_render_error_nonexistent_source) ... ok 370s test_template_render_nested_error (template_backends.test_jinja2.Jinja2Tests.test_template_render_nested_error) ... ok 370s test_backend_import_error (template_backends.test_utils.TemplateUtilsTests.test_backend_import_error) 370s Failing to import a backend keeps raising the original import error ... ok 370s test_backend_improperly_configured (template_backends.test_utils.TemplateUtilsTests.test_backend_improperly_configured) 370s Failing to initialize a backend keeps raising the original exception ... ok 370s test_backend_names_must_be_unique (template_backends.test_utils.TemplateUtilsTests.test_backend_names_must_be_unique) ... ok 370s test_abstract_model_not_instantiated (model_meta.tests.AbstractModelTests.test_abstract_model_not_instantiated) ... ok 370s test_fields (model_meta.tests.DataTests.test_fields) ... ok 370s test_local_concrete_fields (model_meta.tests.DataTests.test_local_concrete_fields) ... ok 370s test_local_fields (model_meta.tests.DataTests.test_local_fields) ... ok 370s test_get_data_field (model_meta.tests.GetFieldByNameTests.test_get_data_field) ... ok 370s test_get_fields_only_searches_forward_on_apps_not_ready (model_meta.tests.GetFieldByNameTests.test_get_fields_only_searches_forward_on_apps_not_ready) ... ok 370s test_get_generic_relation (model_meta.tests.GetFieldByNameTests.test_get_generic_relation) ... ok 370s test_get_m2m_field (model_meta.tests.GetFieldByNameTests.test_get_m2m_field) ... ok 370s test_get_related_m2m (model_meta.tests.GetFieldByNameTests.test_get_related_m2m) ... ok 370s test_get_related_object (model_meta.tests.GetFieldByNameTests.test_get_related_object) ... ok 370s test_get_fields_is_immutable (model_meta.tests.GetFieldsTests.test_get_fields_is_immutable) ... ok 370s test_label (model_meta.tests.LabelTests.test_label) ... ok 370s test_label_lower (model_meta.tests.LabelTests.test_label_lower) ... ok 370s test_many_to_many (model_meta.tests.M2MTests.test_many_to_many) ... ok 370s test_many_to_many_with_model (model_meta.tests.M2MTests.test_many_to_many_with_model) ... ok 370s test_get_parent_list (model_meta.tests.ParentListTests.test_get_parent_list) ... ok 370s test_private_fields (model_meta.tests.PrivateFieldsTests.test_private_fields) ... ok 370s test_person (model_meta.tests.PropertyNamesTests.test_person) ... ok 370s test_related_objects (model_meta.tests.RelatedObjectsTests.test_related_objects) ... ok 370s test_related_objects_include_hidden (model_meta.tests.RelatedObjectsTests.test_related_objects_include_hidden) ... ok 370s test_related_objects_include_hidden_local_only (model_meta.tests.RelatedObjectsTests.test_related_objects_include_hidden_local_only) ... ok 370s test_related_objects_local (model_meta.tests.RelatedObjectsTests.test_related_objects_local) ... ok 370s test_clear_cache_clears_relation_tree (model_meta.tests.RelationTreeTests.test_clear_cache_clears_relation_tree) ... ok 370s test_first_relation_tree_access_populates_all (model_meta.tests.RelationTreeTests.test_first_relation_tree_access_populates_all) ... ok 370s test_relations_related_objects (model_meta.tests.RelationTreeTests.test_relations_related_objects) ... ok 370s test_pk (model_meta.tests.ReturningFieldsTests.test_pk) ... ok 370s test_content_type_field_pointing_to_wrong_model (contenttypes_tests.test_checks.GenericForeignKeyTests.test_content_type_field_pointing_to_wrong_model) ... ok 370s test_field_name_ending_with_underscore (contenttypes_tests.test_checks.GenericForeignKeyTests.test_field_name_ending_with_underscore) ... ok 370s test_generic_foreign_key_checks_are_performed (contenttypes_tests.test_checks.GenericForeignKeyTests.test_generic_foreign_key_checks_are_performed) ... ok 370s test_invalid_content_type_field (contenttypes_tests.test_checks.GenericForeignKeyTests.test_invalid_content_type_field) ... ok 370s test_missing_content_type_field (contenttypes_tests.test_checks.GenericForeignKeyTests.test_missing_content_type_field) ... ok 370s test_missing_object_id_field (contenttypes_tests.test_checks.GenericForeignKeyTests.test_missing_object_id_field) ... ok 370s test_field_name_ending_with_underscore (contenttypes_tests.test_checks.GenericRelationTests.test_field_name_ending_with_underscore) ... ok 370s test_missing_generic_foreign_key (contenttypes_tests.test_checks.GenericRelationTests.test_missing_generic_foreign_key) ... ok 370s test_pointing_to_missing_model (contenttypes_tests.test_checks.GenericRelationTests.test_pointing_to_missing_model) ... ok 370s test_pointing_to_swapped_model (contenttypes_tests.test_checks.GenericRelationTests.test_pointing_to_swapped_model) ... ok 370s test_valid_generic_relationship (contenttypes_tests.test_checks.GenericRelationTests.test_valid_generic_relationship) ... ok 370s test_valid_generic_relationship_with_explicit_fields (contenttypes_tests.test_checks.GenericRelationTests.test_valid_generic_relationship_with_explicit_fields) ... ok 370s test_valid_self_referential_generic_relationship (contenttypes_tests.test_checks.GenericRelationTests.test_valid_self_referential_generic_relationship) ... ok 370s test_model_name_max_length (contenttypes_tests.test_checks.ModelCheckTests.test_model_name_max_length) ... ok 370s test_model_name_too_long (contenttypes_tests.test_checks.ModelCheckTests.test_model_name_too_long) ... ok 370s test_add_legacy_name_other_database (contenttypes_tests.test_migrations.MultiDBRemoveContentTypeNameTests.test_add_legacy_name_other_database) ... ok 372s test_content_type_rename_conflict (contenttypes_tests.test_operations.ContentTypeOperationsTests.test_content_type_rename_conflict) ... ok 372s test_existing_content_type_rename (contenttypes_tests.test_operations.ContentTypeOperationsTests.test_existing_content_type_rename) ... ok 372s test_existing_content_type_rename_other_database (contenttypes_tests.test_operations.ContentTypeOperationsTests.test_existing_content_type_rename_other_database) ... ok 372s test_missing_content_type_rename_ignore (contenttypes_tests.test_operations.ContentTypeOperationsTests.test_missing_content_type_rename_ignore) ... ok 372s test_accepts_args (logging_tests.tests.AdminEmailHandlerTest.test_accepts_args) 372s User-supplied arguments and the EMAIL_SUBJECT_PREFIX setting are used ... ok 372s test_accepts_args_and_request (logging_tests.tests.AdminEmailHandlerTest.test_accepts_args_and_request) 372s The subject is also handled if being passed a request object. ... ok 372s test_custom_exception_reporter_is_used (logging_tests.tests.AdminEmailHandlerTest.test_custom_exception_reporter_is_used) ... ok 372s test_customize_send_mail_method (logging_tests.tests.AdminEmailHandlerTest.test_customize_send_mail_method) ... ok 372s test_default_exception_reporter_class (logging_tests.tests.AdminEmailHandlerTest.test_default_exception_reporter_class) ... ok 372s test_disallowed_host_doesnt_crash (logging_tests.tests.AdminEmailHandlerTest.test_disallowed_host_doesnt_crash) ... ok 372s test_emit_no_form_tag (logging_tests.tests.AdminEmailHandlerTest.test_emit_no_form_tag) 372s HTML email doesn't contain forms. ... ok 372s test_emit_non_ascii (logging_tests.tests.AdminEmailHandlerTest.test_emit_non_ascii) 372s #23593 - AdminEmailHandler should allow Unicode characters in the ... ok 372s test_fail_silently (logging_tests.tests.AdminEmailHandlerTest.test_fail_silently) ... ok 372s test_subject_accepts_newlines (logging_tests.tests.AdminEmailHandlerTest.test_subject_accepts_newlines) 372s Newlines in email reports' subjects are escaped to prevent ... ok 372s test_uses_custom_email_backend (logging_tests.tests.AdminEmailHandlerTest.test_uses_custom_email_backend) 372s Refs #19325 ... ok 372s test_passes_on_record (logging_tests.tests.CallbackFilterTest.test_passes_on_record) ... ok 372s test_sense (logging_tests.tests.CallbackFilterTest.test_sense) ... ok 372s test_django_logger (logging_tests.tests.DefaultLoggingTests.test_django_logger) 372s The 'django' base logger only output anything when DEBUG=True. ... ok 372s test_django_logger_debug (logging_tests.tests.DefaultLoggingTests.test_django_logger_debug) ... ok 372s test_django_logger_info (logging_tests.tests.DefaultLoggingTests.test_django_logger_info) ... ok 372s test_django_logger_warning (logging_tests.tests.DefaultLoggingTests.test_django_logger_warning) ... ok 372s test_internal_server_error (logging_tests.tests.HandlerLoggingTests.test_internal_server_error) ... ok 372s test_internal_server_error_599 (logging_tests.tests.HandlerLoggingTests.test_internal_server_error_599) ... ok 372s test_multi_part_parser_error (logging_tests.tests.HandlerLoggingTests.test_multi_part_parser_error) ... ok 372s test_page_found_no_warning (logging_tests.tests.HandlerLoggingTests.test_page_found_no_warning) ... ok 372s test_page_not_found_raised (logging_tests.tests.HandlerLoggingTests.test_page_not_found_raised) ... ok 372s test_page_not_found_warning (logging_tests.tests.HandlerLoggingTests.test_page_not_found_warning) ... ok 372s test_permission_denied (logging_tests.tests.HandlerLoggingTests.test_permission_denied) ... ok 372s test_redirect_no_warning (logging_tests.tests.HandlerLoggingTests.test_redirect_no_warning) ... ok 372s test_uncaught_exception (logging_tests.tests.HandlerLoggingTests.test_uncaught_exception) ... ok 372s test_i18n_page_found_no_warning (logging_tests.tests.I18nLoggingTests.test_i18n_page_found_no_warning) ... ok 372s test_i18n_page_not_found_warning (logging_tests.tests.I18nLoggingTests.test_i18n_page_not_found_warning) ... ok 372s test_server_formatter_default_format (logging_tests.tests.LogFormattersTests.test_server_formatter_default_format) ... ok 372s test_server_formatter_styles (logging_tests.tests.LogFormattersTests.test_server_formatter_styles) ... ok 372s test_require_debug_false_filter (logging_tests.tests.LoggingFiltersTest.test_require_debug_false_filter) 372s Test the RequireDebugFalse filter class. ... ok 372s test_require_debug_true_filter (logging_tests.tests.LoggingFiltersTest.test_require_debug_true_filter) 372s Test the RequireDebugTrue filter class. ... ok 373s test_suspicious_email_admins (logging_tests.tests.SecurityLoggerTest.test_suspicious_email_admins) ... ok 373s test_suspicious_operation_creates_log_message (logging_tests.tests.SecurityLoggerTest.test_suspicious_operation_creates_log_message) ... ok 373s test_suspicious_operation_uses_sublogger (logging_tests.tests.SecurityLoggerTest.test_suspicious_operation_uses_sublogger) ... ok 373s test_circular_dependency (logging_tests.tests.SettingsConfigTest.test_circular_dependency) ... ok 373s test_custom_logging (logging_tests.tests.SettingsCustomLoggingTest.test_custom_logging) ... ok 373s test_configure_initializes_logging (logging_tests.tests.SetupConfigureLogging.test_configure_initializes_logging) ... ok 377s test_table_exists (proxy_model_inheritance.tests.ProxyModelInheritanceTests.test_table_exists) ... ok 377s test_attrs (admin_widgets.tests.AdminDateWidgetTest.test_attrs) ... ok 377s test_CharField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_CharField) ... ok 377s test_DateField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_DateField) ... ok 377s test_DateTimeField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_DateTimeField) ... ok 377s test_EmailField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_EmailField) ... ok 377s test_FileField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_FileField) ... ok 377s test_ForeignKey (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_ForeignKey) ... ok 377s test_IntegerField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_IntegerField) ... ok 377s test_TextField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_TextField) ... ok 377s test_TimeField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_TimeField) ... ok 377s test_URLField (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_URLField) ... ok 377s test_choices_with_radio_fields (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_choices_with_radio_fields) ... ok 377s test_field_with_choices (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_field_with_choices) ... ok 377s test_filtered_many_to_many (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_filtered_many_to_many) ... ok 377s test_formfield_overrides (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_formfield_overrides) ... ok 377s test_formfield_overrides_for_custom_field (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_formfield_overrides_for_custom_field) 377s formfield_overrides works for a custom field class. ... ok 377s test_formfield_overrides_for_datetime_field (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_formfield_overrides_for_datetime_field) 377s Overriding the widget for DateTimeField doesn't overrides the default ... ok 377s test_formfield_overrides_m2m_filter_widget (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_formfield_overrides_m2m_filter_widget) 377s The autocomplete_fields, raw_id_fields, filter_vertical, and ... ok 377s test_formfield_overrides_widget_instances (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_formfield_overrides_widget_instances) 377s Widget instances in formfield_overrides are not shared between ... ok 377s test_inheritance (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_inheritance) ... ok 377s test_m2m_widgets (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_m2m_widgets) 377s m2m fields help text as it applies to admin app (#9321). ... ok 377s test_m2m_widgets_no_allow_multiple_selected (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_m2m_widgets_no_allow_multiple_selected) ... ok 377s test_many_to_many (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_many_to_many) ... ok 377s test_radio_fields_ForeignKey (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_radio_fields_ForeignKey) ... ok 377s test_radio_fields_foreignkey_formfield_overrides_empty_label (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_radio_fields_foreignkey_formfield_overrides_empty_label) ... ok 377s test_raw_id_ForeignKey (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_raw_id_ForeignKey) ... ok 377s test_raw_id_many_to_many (admin_widgets.tests.AdminFormfieldForDBFieldTests.test_raw_id_many_to_many) ... ok 377s test_ForeignKey (admin_widgets.tests.AdminRawIdWidgetSeleniumTests.test_ForeignKey) ... skipped 'No browsers specified.' 377s test_many_to_many (admin_widgets.tests.AdminRawIdWidgetSeleniumTests.test_many_to_many) ... skipped 'No browsers specified.' 377s test_localization (admin_widgets.tests.AdminSplitDateTimeWidgetTest.test_localization) ... ok 377s test_render (admin_widgets.tests.AdminSplitDateTimeWidgetTest.test_render) ... ok 377s test_attrs (admin_widgets.tests.AdminTimeWidgetTest.test_attrs) ... ok 377s test_get_context_validates_url (admin_widgets.tests.AdminURLWidgetTest.test_get_context_validates_url) ... ok 377s test_render (admin_widgets.tests.AdminURLWidgetTest.test_render) ... ok 377s test_render_idn (admin_widgets.tests.AdminURLWidgetTest.test_render_idn) ... ok 377s test_render_quoting (admin_widgets.tests.AdminURLWidgetTest.test_render_quoting) 377s WARNING: This test doesn't use assertHTMLEqual since it will get rid ... ok 378s test_attrs (admin_widgets.tests.AdminUUIDWidgetTests.test_attrs) ... ok 378s test_date_time_picker_shortcuts (admin_widgets.tests.DateTimePickerAltTimezoneSeleniumTests.test_date_time_picker_shortcuts) 378s date/time/datetime picker shortcuts work in the current time zone. ... skipped 'No browsers specified.' 378s test_calendar_no_selected_class (admin_widgets.tests.DateTimePickerSeleniumTests.test_calendar_no_selected_class) 378s Ensure no cells are given the selected class when the field is empty. ... skipped 'No browsers specified.' 378s test_calendar_nonday_class (admin_widgets.tests.DateTimePickerSeleniumTests.test_calendar_nonday_class) 378s Ensure cells that are not days of the month have the `nonday` CSS class. ... skipped 'No browsers specified.' 378s test_calendar_selected_class (admin_widgets.tests.DateTimePickerSeleniumTests.test_calendar_selected_class) 378s Ensure cell for the day in the input has the `selected` CSS class. ... skipped 'No browsers specified.' 378s test_calendar_show_date_from_input (admin_widgets.tests.DateTimePickerSeleniumTests.test_calendar_show_date_from_input) 378s The calendar shows the date from the input field for every locale ... skipped 'No browsers specified.' 378s test_show_hide_date_time_picker_widgets (admin_widgets.tests.DateTimePickerSeleniumTests.test_show_hide_date_time_picker_widgets) 378s Pressing the ESC key or clicking on a widget value closes the date and ... skipped 'No browsers specified.' 378s test_date_time_picker_shortcuts (admin_widgets.tests.DateTimePickerShortcutsSeleniumTests.test_date_time_picker_shortcuts) 378s date/time/datetime picker shortcuts work in the current time zone. ... skipped 'No browsers specified.' 378s test_render (admin_widgets.tests.FilteredSelectMultipleWidgetTest.test_render) ... ok 378s test_stacked_render (admin_widgets.tests.FilteredSelectMultipleWidgetTest.test_stacked_render) ... ok 378s test_back_button_bug (admin_widgets.tests.HorizontalVerticalFilterSeleniumTests.test_back_button_bug) 378s Some browsers had a bug where navigating away from the change page ... skipped 'No browsers specified.' 378s test_basic (admin_widgets.tests.HorizontalVerticalFilterSeleniumTests.test_basic) ... skipped 'No browsers specified.' 378s test_filter (admin_widgets.tests.HorizontalVerticalFilterSeleniumTests.test_filter) 378s Typing in the search box filters out options displayed in the 'from' ... skipped 'No browsers specified.' 378s test_refresh_page (admin_widgets.tests.HorizontalVerticalFilterSeleniumTests.test_refresh_page) 378s Horizontal and vertical filter widgets keep selected options on page ... skipped 'No browsers specified.' 378s test_clearablefileinput_widget (admin_widgets.tests.ImageFieldWidgetsSeleniumTests.test_clearablefileinput_widget) ... skipped 'No browsers specified.' 378s test_ForeignKey_using_to_field (admin_widgets.tests.RelatedFieldWidgetSeleniumTests.test_ForeignKey_using_to_field) ... skipped 'No browsers specified.' 378s test_custom_widget_render (admin_widgets.tests.RelatedFieldWidgetWrapperTests.test_custom_widget_render) ... ok 378s test_no_can_add_related (admin_widgets.tests.RelatedFieldWidgetWrapperTests.test_no_can_add_related) ... ok 378s test_on_delete_cascade_rel_cant_delete_related (admin_widgets.tests.RelatedFieldWidgetWrapperTests.test_on_delete_cascade_rel_cant_delete_related) ... ok 378s test_select_multiple_widget_cant_change_delete_related (admin_widgets.tests.RelatedFieldWidgetWrapperTests.test_select_multiple_widget_cant_change_delete_related) ... ok 378s test_widget_delegates_value_omitted_from_data (admin_widgets.tests.RelatedFieldWidgetWrapperTests.test_widget_delegates_value_omitted_from_data) ... ok 378s test_widget_is_hidden (admin_widgets.tests.RelatedFieldWidgetWrapperTests.test_widget_is_hidden) ... ok 378s test_widget_is_not_hidden (admin_widgets.tests.RelatedFieldWidgetWrapperTests.test_widget_is_not_hidden) ... ok 378s test_bad_module (wsgi.tests.GetInternalWSGIApplicationTest.test_bad_module) ... ok 378s test_bad_name (wsgi.tests.GetInternalWSGIApplicationTest.test_bad_name) ... ok 378s test_default (wsgi.tests.GetInternalWSGIApplicationTest.test_default) 378s If ``WSGI_APPLICATION`` is ``None``, the return value of ... ok 378s test_success (wsgi.tests.GetInternalWSGIApplicationTest.test_success) 378s If ``WSGI_APPLICATION`` is a dotted path, the referenced object is ... ok 378s test_file_wrapper (wsgi.tests.WSGITest.test_file_wrapper) 378s FileResponse uses wsgi.file_wrapper. ... ok 378s test_get_wsgi_application (wsgi.tests.WSGITest.test_get_wsgi_application) 378s get_wsgi_application() returns a functioning WSGI callable. ... ok 378s test_basic_params_specified_in_settings (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_basic_params_specified_in_settings) ... ok 378s test_can_connect_using_sockets (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_can_connect_using_sockets) ... ok 378s test_crash_password_does_not_leak (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_crash_password_does_not_leak) ... ok 378s test_fails_with_keyerror_on_incomplete_config (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_fails_with_keyerror_on_incomplete_config) ... ok 378s test_options_charset (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_options_charset) ... ok 378s test_options_non_deprecated_keys_preferred (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_options_non_deprecated_keys_preferred) ... ok 378s test_options_override_settings_proper_values (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_options_override_settings_proper_values) ... ok 378s test_parameters (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_parameters) ... ok 378s test_sigint_handler (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_sigint_handler) 378s SIGINT is ignored in Python and passed to mysql to abort queries. ... skipped 'Requires a MySQL connection' 378s test_ssl_certificate_is_added (dbshell.test_mysql.MySqlDbshellCommandTestCase.test_ssl_certificate_is_added) ... ok 378s test_parameters (dbshell.test_oracle.OracleDbshellTests.test_parameters) ... skipped 'Requires cx_Oracle to be installed' 378s test_with_rlwrap (dbshell.test_oracle.OracleDbshellTests.test_with_rlwrap) ... skipped 'Requires cx_Oracle to be installed' 378s test_without_rlwrap (dbshell.test_oracle.OracleDbshellTests.test_without_rlwrap) ... skipped 'Requires cx_Oracle to be installed' 378s test_accent (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_accent) ... ok 378s test_basic (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_basic) ... ok 378s test_column (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_column) ... ok 378s test_crash_password_does_not_leak (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_crash_password_does_not_leak) ... ok 378s test_nopass (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_nopass) ... ok 378s test_parameters (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_parameters) ... ok 378s test_passfile (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_passfile) ... ok 378s test_service (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_service) ... ok 378s test_sigint_handler (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_sigint_handler) 378s SIGINT is ignored in Python and passed to psql to abort queries. ... skipped 'Requires a PostgreSQL connection' 378s test_ssl_certificate (dbshell.test_postgresql.PostgreSqlDbshellCommandTestCase.test_ssl_certificate) ... ok 378s test_parameters (dbshell.test_sqlite.SqliteDbshellCommandTestCase.test_parameters) ... ok 378s test_path_name (dbshell.test_sqlite.SqliteDbshellCommandTestCase.test_path_name) ... ok 378s test_command_missing (dbshell.tests.DbshellCommandTestCase.test_command_missing) ... ok 378s test_base_manager_inheritance (managers_regress.tests.TestManagerInheritance.test_base_manager_inheritance) ... ok 378s test_default_manager_inheritance (managers_regress.tests.TestManagerInheritance.test_default_manager_inheritance) ... ok 378s test_implicit_inheritance (managers_regress.tests.TestManagerInheritance.test_implicit_inheritance) ... ok 378s test_manager_class_getitem (managers_regress.tests.TestManagerInheritance.test_manager_class_getitem) ... ok 378s test_manager_no_duplicates (managers_regress.tests.TestManagerInheritance.test_manager_no_duplicates) ... ok 378s test_apnumber (humanize_tests.tests.HumanizeTests.test_apnumber) ... ok 378s test_i18n_html_ordinal (humanize_tests.tests.HumanizeTests.test_i18n_html_ordinal) 378s Allow html in output on i18n strings ... ok 378s test_i18n_intcomma (humanize_tests.tests.HumanizeTests.test_i18n_intcomma) ... ok 378s test_i18n_intword (humanize_tests.tests.HumanizeTests.test_i18n_intword) ... ok 378s test_inflection_for_timedelta (humanize_tests.tests.HumanizeTests.test_inflection_for_timedelta) 378s Translation of '%d day'/'%d month'/… may differ depending on the context ... ok 378s test_intcomma (humanize_tests.tests.HumanizeTests.test_intcomma) ... ok 378s test_intcomma_without_number_grouping (humanize_tests.tests.HumanizeTests.test_intcomma_without_number_grouping) ... ok 378s test_intword (humanize_tests.tests.HumanizeTests.test_intword) ... ok 378s test_l10n_intcomma (humanize_tests.tests.HumanizeTests.test_l10n_intcomma) ... ok 378s test_naturalday (humanize_tests.tests.HumanizeTests.test_naturalday) ... ok 378s test_naturalday_tz (humanize_tests.tests.HumanizeTests.test_naturalday_tz) ... ok 378s test_naturalday_uses_localtime (humanize_tests.tests.HumanizeTests.test_naturalday_uses_localtime) ... ok 378s test_naturaltime (humanize_tests.tests.HumanizeTests.test_naturaltime) ... ok 378s test_naturaltime_as_documented (humanize_tests.tests.HumanizeTests.test_naturaltime_as_documented) 378s #23340 -- Verify the documented behavior of humanize.naturaltime. ... ok 378s test_ordinal (humanize_tests.tests.HumanizeTests.test_ordinal) ... ok 378s test_actual_expiry (sessions_tests.tests.CacheSessionTests.test_actual_expiry) ... ok 378s test_clear (sessions_tests.tests.CacheSessionTests.test_clear) ... ok 378s test_create_and_save (sessions_tests.tests.CacheSessionTests.test_create_and_save) ... ok 378s test_custom_expiry_datetime (sessions_tests.tests.CacheSessionTests.test_custom_expiry_datetime) ... ok 378s test_custom_expiry_reset (sessions_tests.tests.CacheSessionTests.test_custom_expiry_reset) ... ok 378s test_custom_expiry_seconds (sessions_tests.tests.CacheSessionTests.test_custom_expiry_seconds) ... ok 378s test_custom_expiry_timedelta (sessions_tests.tests.CacheSessionTests.test_custom_expiry_timedelta) ... ok 378s test_cycle (sessions_tests.tests.CacheSessionTests.test_cycle) ... ok 378s test_cycle_with_no_session_cache (sessions_tests.tests.CacheSessionTests.test_cycle_with_no_session_cache) ... ok 378s test_decode (sessions_tests.tests.CacheSessionTests.test_decode) ... ok 378s test_decode_failure_logged_to_security (sessions_tests.tests.CacheSessionTests.test_decode_failure_logged_to_security) ... ok 378s test_decode_serializer_exception (sessions_tests.tests.CacheSessionTests.test_decode_serializer_exception) ... ok 378s test_default_cache (sessions_tests.tests.CacheSessionTests.test_default_cache) ... ok 378s test_default_expiry (sessions_tests.tests.CacheSessionTests.test_default_expiry) ... ok 378s test_delete (sessions_tests.tests.CacheSessionTests.test_delete) ... ok 378s test_flush (sessions_tests.tests.CacheSessionTests.test_flush) ... ok 378s test_get_empty (sessions_tests.tests.CacheSessionTests.test_get_empty) ... ok 378s test_get_expire_at_browser_close (sessions_tests.tests.CacheSessionTests.test_get_expire_at_browser_close) ... ok 378s test_has_key (sessions_tests.tests.CacheSessionTests.test_has_key) ... ok 378s test_invalid_key (sessions_tests.tests.CacheSessionTests.test_invalid_key) ... ok 378s test_items (sessions_tests.tests.CacheSessionTests.test_items) ... ok 378s test_keys (sessions_tests.tests.CacheSessionTests.test_keys) ... ok 378s test_load_overlong_key (sessions_tests.tests.CacheSessionTests.test_load_overlong_key) ... ok 378s test_new_session (sessions_tests.tests.CacheSessionTests.test_new_session) ... ok 378s test_non_default_cache (sessions_tests.tests.CacheSessionTests.test_non_default_cache) ... ok 378s test_pop (sessions_tests.tests.CacheSessionTests.test_pop) ... ok 378s test_pop_default (sessions_tests.tests.CacheSessionTests.test_pop_default) ... ok 378s test_pop_default_named_argument (sessions_tests.tests.CacheSessionTests.test_pop_default_named_argument) ... ok 378s test_pop_no_default_keyerror_raised (sessions_tests.tests.CacheSessionTests.test_pop_no_default_keyerror_raised) ... ok 378s test_save (sessions_tests.tests.CacheSessionTests.test_save) ... ok 378s test_save_doesnt_clear_data (sessions_tests.tests.CacheSessionTests.test_save_doesnt_clear_data) ... ok 378s test_session_key_empty_string_invalid (sessions_tests.tests.CacheSessionTests.test_session_key_empty_string_invalid) 378s Falsey values (Such as an empty string) are rejected. ... ok 378s test_session_key_is_read_only (sessions_tests.tests.CacheSessionTests.test_session_key_is_read_only) ... ok 378s test_session_key_too_short_invalid (sessions_tests.tests.CacheSessionTests.test_session_key_too_short_invalid) 378s Strings shorter than 8 characters are rejected. ... ok 378s test_session_key_valid_string_saved (sessions_tests.tests.CacheSessionTests.test_session_key_valid_string_saved) 378s Strings of length 8 and up are accepted and stored. ... ok 378s test_session_load_does_not_create_record (sessions_tests.tests.CacheSessionTests.test_session_load_does_not_create_record) 378s Loading an unknown session key does not create a session record. ... ok 378s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.CacheSessionTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 378s Sessions shouldn't be resurrected by a concurrent request. ... ok 378s test_setdefault (sessions_tests.tests.CacheSessionTests.test_setdefault) ... ok 378s test_store (sessions_tests.tests.CacheSessionTests.test_store) ... ok 378s test_update (sessions_tests.tests.CacheSessionTests.test_update) ... ok 378s test_values (sessions_tests.tests.CacheSessionTests.test_values) ... ok 378s test_clearsessions_unsupported (sessions_tests.tests.ClearSessionsCommandTests.test_clearsessions_unsupported) ... ok 378s test_actual_expiry (sessions_tests.tests.CookieSessionTests.test_actual_expiry) ... expected failure 378s test_clear (sessions_tests.tests.CookieSessionTests.test_clear) ... ok 378s test_custom_expiry_datetime (sessions_tests.tests.CookieSessionTests.test_custom_expiry_datetime) ... ok 378s test_custom_expiry_reset (sessions_tests.tests.CookieSessionTests.test_custom_expiry_reset) ... ok 378s test_custom_expiry_seconds (sessions_tests.tests.CookieSessionTests.test_custom_expiry_seconds) ... ok 378s test_custom_expiry_timedelta (sessions_tests.tests.CookieSessionTests.test_custom_expiry_timedelta) ... ok 378s test_cycle (sessions_tests.tests.CookieSessionTests.test_cycle) 378s This test tested cycle_key() which would create a new session ... ok 378s test_cycle_with_no_session_cache (sessions_tests.tests.CookieSessionTests.test_cycle_with_no_session_cache) ... ok 378s test_decode (sessions_tests.tests.CookieSessionTests.test_decode) ... ok 378s test_decode_failure_logged_to_security (sessions_tests.tests.CookieSessionTests.test_decode_failure_logged_to_security) ... ok 378s test_decode_serializer_exception (sessions_tests.tests.CookieSessionTests.test_decode_serializer_exception) ... ok 378s test_default_expiry (sessions_tests.tests.CookieSessionTests.test_default_expiry) ... ok 378s test_delete (sessions_tests.tests.CookieSessionTests.test_delete) ... ok 378s test_flush (sessions_tests.tests.CookieSessionTests.test_flush) ... ok 378s test_get_empty (sessions_tests.tests.CookieSessionTests.test_get_empty) ... ok 378s test_get_expire_at_browser_close (sessions_tests.tests.CookieSessionTests.test_get_expire_at_browser_close) ... ok 378s test_has_key (sessions_tests.tests.CookieSessionTests.test_has_key) ... ok 378s test_invalid_key (sessions_tests.tests.CookieSessionTests.test_invalid_key) ... ok 378s test_items (sessions_tests.tests.CookieSessionTests.test_items) ... ok 378s test_keys (sessions_tests.tests.CookieSessionTests.test_keys) ... ok 378s test_new_session (sessions_tests.tests.CookieSessionTests.test_new_session) ... ok 378s test_pop (sessions_tests.tests.CookieSessionTests.test_pop) ... ok 378s test_pop_default (sessions_tests.tests.CookieSessionTests.test_pop_default) ... ok 378s test_pop_default_named_argument (sessions_tests.tests.CookieSessionTests.test_pop_default_named_argument) ... ok 378s test_pop_no_default_keyerror_raised (sessions_tests.tests.CookieSessionTests.test_pop_no_default_keyerror_raised) ... ok 378s test_save (sessions_tests.tests.CookieSessionTests.test_save) 378s This test tested exists() in the other session backends, but that ... ok 378s test_save_doesnt_clear_data (sessions_tests.tests.CookieSessionTests.test_save_doesnt_clear_data) ... ok 378s test_session_key_empty_string_invalid (sessions_tests.tests.CookieSessionTests.test_session_key_empty_string_invalid) 378s Falsey values (Such as an empty string) are rejected. ... ok 378s test_session_key_is_read_only (sessions_tests.tests.CookieSessionTests.test_session_key_is_read_only) ... ok 378s test_session_key_too_short_invalid (sessions_tests.tests.CookieSessionTests.test_session_key_too_short_invalid) 378s Strings shorter than 8 characters are rejected. ... ok 378s test_session_key_valid_string_saved (sessions_tests.tests.CookieSessionTests.test_session_key_valid_string_saved) 378s Strings of length 8 and up are accepted and stored. ... ok 378s test_session_load_does_not_create_record (sessions_tests.tests.CookieSessionTests.test_session_load_does_not_create_record) ... skipped "Cookie backend doesn't have an external store to create records in." 378s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.CookieSessionTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) ... skipped 'CookieSession is stored in the client and there is no way to query it.' 378s test_setdefault (sessions_tests.tests.CookieSessionTests.test_setdefault) ... ok 378s test_store (sessions_tests.tests.CookieSessionTests.test_store) ... ok 378s test_unpickling_exception (sessions_tests.tests.CookieSessionTests.test_unpickling_exception) ... ok 378s test_update (sessions_tests.tests.CookieSessionTests.test_update) ... ok 378s test_values (sessions_tests.tests.CookieSessionTests.test_values) ... ok 378s test_actual_expiry (sessions_tests.tests.FileSessionPathLibTests.test_actual_expiry) ... ok 378s test_clear (sessions_tests.tests.FileSessionPathLibTests.test_clear) ... ok 378s test_clearsessions_command (sessions_tests.tests.FileSessionPathLibTests.test_clearsessions_command) 378s Test clearsessions command for clearing expired sessions. ... ok 378s test_configuration_check (sessions_tests.tests.FileSessionPathLibTests.test_configuration_check) ... ok 378s test_custom_expiry_datetime (sessions_tests.tests.FileSessionPathLibTests.test_custom_expiry_datetime) ... ok 378s test_custom_expiry_reset (sessions_tests.tests.FileSessionPathLibTests.test_custom_expiry_reset) ... ok 378s test_custom_expiry_seconds (sessions_tests.tests.FileSessionPathLibTests.test_custom_expiry_seconds) ... ok 378s test_custom_expiry_timedelta (sessions_tests.tests.FileSessionPathLibTests.test_custom_expiry_timedelta) ... ok 378s test_cycle (sessions_tests.tests.FileSessionPathLibTests.test_cycle) ... ok 378s test_cycle_with_no_session_cache (sessions_tests.tests.FileSessionPathLibTests.test_cycle_with_no_session_cache) ... ok 378s test_decode (sessions_tests.tests.FileSessionPathLibTests.test_decode) ... ok 378s test_decode_failure_logged_to_security (sessions_tests.tests.FileSessionPathLibTests.test_decode_failure_logged_to_security) ... ok 378s test_decode_serializer_exception (sessions_tests.tests.FileSessionPathLibTests.test_decode_serializer_exception) ... ok 378s test_default_expiry (sessions_tests.tests.FileSessionPathLibTests.test_default_expiry) ... ok 378s test_delete (sessions_tests.tests.FileSessionPathLibTests.test_delete) ... ok 378s test_flush (sessions_tests.tests.FileSessionPathLibTests.test_flush) ... ok 378s test_get_empty (sessions_tests.tests.FileSessionPathLibTests.test_get_empty) ... ok 378s test_get_expire_at_browser_close (sessions_tests.tests.FileSessionPathLibTests.test_get_expire_at_browser_close) ... ok 378s test_has_key (sessions_tests.tests.FileSessionPathLibTests.test_has_key) ... ok 378s test_invalid_key (sessions_tests.tests.FileSessionPathLibTests.test_invalid_key) ... ok 378s test_invalid_key_backslash (sessions_tests.tests.FileSessionPathLibTests.test_invalid_key_backslash) ... ok 378s test_invalid_key_forwardslash (sessions_tests.tests.FileSessionPathLibTests.test_invalid_key_forwardslash) ... ok 378s test_items (sessions_tests.tests.FileSessionPathLibTests.test_items) ... ok 378s test_keys (sessions_tests.tests.FileSessionPathLibTests.test_keys) ... ok 378s test_new_session (sessions_tests.tests.FileSessionPathLibTests.test_new_session) ... ok 378s test_pop (sessions_tests.tests.FileSessionPathLibTests.test_pop) ... ok 378s test_pop_default (sessions_tests.tests.FileSessionPathLibTests.test_pop_default) ... ok 378s test_pop_default_named_argument (sessions_tests.tests.FileSessionPathLibTests.test_pop_default_named_argument) ... ok 378s test_pop_no_default_keyerror_raised (sessions_tests.tests.FileSessionPathLibTests.test_pop_no_default_keyerror_raised) ... ok 378s test_save (sessions_tests.tests.FileSessionPathLibTests.test_save) ... ok 378s test_save_doesnt_clear_data (sessions_tests.tests.FileSessionPathLibTests.test_save_doesnt_clear_data) ... ok 378s test_session_key_empty_string_invalid (sessions_tests.tests.FileSessionPathLibTests.test_session_key_empty_string_invalid) 378s Falsey values (Such as an empty string) are rejected. ... ok 378s test_session_key_is_read_only (sessions_tests.tests.FileSessionPathLibTests.test_session_key_is_read_only) ... ok 378s test_session_key_too_short_invalid (sessions_tests.tests.FileSessionPathLibTests.test_session_key_too_short_invalid) 378s Strings shorter than 8 characters are rejected. ... ok 378s test_session_key_valid_string_saved (sessions_tests.tests.FileSessionPathLibTests.test_session_key_valid_string_saved) 378s Strings of length 8 and up are accepted and stored. ... ok 378s test_session_load_does_not_create_record (sessions_tests.tests.FileSessionPathLibTests.test_session_load_does_not_create_record) 378s Loading an unknown session key does not create a session record. ... ok 378s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.FileSessionPathLibTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 378s Sessions shouldn't be resurrected by a concurrent request. ... ok 378s test_setdefault (sessions_tests.tests.FileSessionPathLibTests.test_setdefault) ... ok 378s test_store (sessions_tests.tests.FileSessionPathLibTests.test_store) ... ok 378s test_update (sessions_tests.tests.FileSessionPathLibTests.test_update) ... ok 378s test_values (sessions_tests.tests.FileSessionPathLibTests.test_values) ... ok 378s test_actual_expiry (sessions_tests.tests.FileSessionTests.test_actual_expiry) ... ok 378s test_clear (sessions_tests.tests.FileSessionTests.test_clear) ... ok 378s test_clearsessions_command (sessions_tests.tests.FileSessionTests.test_clearsessions_command) 378s Test clearsessions command for clearing expired sessions. ... ok 378s test_configuration_check (sessions_tests.tests.FileSessionTests.test_configuration_check) ... ok 378s test_custom_expiry_datetime (sessions_tests.tests.FileSessionTests.test_custom_expiry_datetime) ... ok 378s test_custom_expiry_reset (sessions_tests.tests.FileSessionTests.test_custom_expiry_reset) ... ok 378s test_custom_expiry_seconds (sessions_tests.tests.FileSessionTests.test_custom_expiry_seconds) ... ok 378s test_custom_expiry_timedelta (sessions_tests.tests.FileSessionTests.test_custom_expiry_timedelta) ... ok 378s test_cycle (sessions_tests.tests.FileSessionTests.test_cycle) ... ok 378s test_cycle_with_no_session_cache (sessions_tests.tests.FileSessionTests.test_cycle_with_no_session_cache) ... ok 378s test_decode (sessions_tests.tests.FileSessionTests.test_decode) ... ok 378s test_decode_failure_logged_to_security (sessions_tests.tests.FileSessionTests.test_decode_failure_logged_to_security) ... ok 378s test_decode_serializer_exception (sessions_tests.tests.FileSessionTests.test_decode_serializer_exception) ... ok 378s test_default_expiry (sessions_tests.tests.FileSessionTests.test_default_expiry) ... ok 378s test_delete (sessions_tests.tests.FileSessionTests.test_delete) ... ok 378s test_flush (sessions_tests.tests.FileSessionTests.test_flush) ... ok 378s test_get_empty (sessions_tests.tests.FileSessionTests.test_get_empty) ... ok 378s test_get_expire_at_browser_close (sessions_tests.tests.FileSessionTests.test_get_expire_at_browser_close) ... ok 378s test_has_key (sessions_tests.tests.FileSessionTests.test_has_key) ... ok 378s test_invalid_key (sessions_tests.tests.FileSessionTests.test_invalid_key) ... ok 378s test_invalid_key_backslash (sessions_tests.tests.FileSessionTests.test_invalid_key_backslash) ... ok 378s test_invalid_key_forwardslash (sessions_tests.tests.FileSessionTests.test_invalid_key_forwardslash) ... ok 378s test_items (sessions_tests.tests.FileSessionTests.test_items) ... ok 378s test_keys (sessions_tests.tests.FileSessionTests.test_keys) ... ok 378s test_new_session (sessions_tests.tests.FileSessionTests.test_new_session) ... ok 378s test_pop (sessions_tests.tests.FileSessionTests.test_pop) ... ok 378s test_pop_default (sessions_tests.tests.FileSessionTests.test_pop_default) ... ok 378s test_pop_default_named_argument (sessions_tests.tests.FileSessionTests.test_pop_default_named_argument) ... ok 378s test_pop_no_default_keyerror_raised (sessions_tests.tests.FileSessionTests.test_pop_no_default_keyerror_raised) ... ok 378s test_save (sessions_tests.tests.FileSessionTests.test_save) ... ok 378s test_save_doesnt_clear_data (sessions_tests.tests.FileSessionTests.test_save_doesnt_clear_data) ... ok 378s test_session_key_empty_string_invalid (sessions_tests.tests.FileSessionTests.test_session_key_empty_string_invalid) 378s Falsey values (Such as an empty string) are rejected. ... ok 378s test_session_key_is_read_only (sessions_tests.tests.FileSessionTests.test_session_key_is_read_only) ... ok 378s test_session_key_too_short_invalid (sessions_tests.tests.FileSessionTests.test_session_key_too_short_invalid) 378s Strings shorter than 8 characters are rejected. ... ok 378s test_session_key_valid_string_saved (sessions_tests.tests.FileSessionTests.test_session_key_valid_string_saved) 378s Strings of length 8 and up are accepted and stored. ... ok 378s test_session_load_does_not_create_record (sessions_tests.tests.FileSessionTests.test_session_load_does_not_create_record) 378s Loading an unknown session key does not create a session record. ... ok 378s test_session_save_does_not_resurrect_session_logged_out_in_other_context (sessions_tests.tests.FileSessionTests.test_session_save_does_not_resurrect_session_logged_out_in_other_context) 378s Sessions shouldn't be resurrected by a concurrent request. ... ok 378s test_setdefault (sessions_tests.tests.FileSessionTests.test_setdefault) ... ok 378s test_store (sessions_tests.tests.FileSessionTests.test_store) ... ok 378s test_update (sessions_tests.tests.FileSessionTests.test_update) ... ok 378s test_values (sessions_tests.tests.FileSessionTests.test_values) ... ok 378s test_get_field_display (postgres_tests.test_array.BasicTests.test_get_field_display) ... skipped 'PostgreSQL specific tests' 378s test_get_field_display_nested_array (postgres_tests.test_array.BasicTests.test_get_field_display_nested_array) ... skipped 'PostgreSQL specific tests' 378s test_choices_tuple_list (postgres_tests.test_array.TestChecks.test_choices_tuple_list) ... skipped 'PostgreSQL specific tests' 378s test_field_checks (postgres_tests.test_array.TestChecks.test_field_checks) ... skipped 'PostgreSQL specific tests' 378s test_invalid_base_fields (postgres_tests.test_array.TestChecks.test_invalid_base_fields) ... skipped 'PostgreSQL specific tests' 378s test_invalid_default (postgres_tests.test_array.TestChecks.test_invalid_default) ... skipped 'PostgreSQL specific tests' 378s test_nested_field_checks (postgres_tests.test_array.TestChecks.test_nested_field_checks) 378s Nested ArrayFields are permitted. ... skipped 'PostgreSQL specific tests' 378s test_valid_default (postgres_tests.test_array.TestChecks.test_valid_default) ... skipped 'PostgreSQL specific tests' 378s test_valid_default_none (postgres_tests.test_array.TestChecks.test_valid_default_none) ... skipped 'PostgreSQL specific tests' 378s test_adding_arrayfield_with_index (postgres_tests.test_array.TestMigrations.test_adding_arrayfield_with_index) 378s ArrayField shouldn't have varchar_patterns_ops or text_patterns_ops indexes. ... skipped 'PostgreSQL specific tests' 378s test_adding_field_with_default (postgres_tests.test_array.TestMigrations.test_adding_field_with_default) ... skipped 'PostgreSQL specific tests' 378s test_deconstruct (postgres_tests.test_array.TestMigrations.test_deconstruct) ... skipped 'PostgreSQL specific tests' 378s test_deconstruct_args (postgres_tests.test_array.TestMigrations.test_deconstruct_args) ... skipped 'PostgreSQL specific tests' 378s test_deconstruct_with_size (postgres_tests.test_array.TestMigrations.test_deconstruct_with_size) ... skipped 'PostgreSQL specific tests' 378s test_subclass_deconstruct (postgres_tests.test_array.TestMigrations.test_subclass_deconstruct) ... skipped 'PostgreSQL specific tests' 378s test_dumping (postgres_tests.test_array.TestSerialization.test_dumping) ... skipped 'PostgreSQL specific tests' 378s test_loading (postgres_tests.test_array.TestSerialization.test_loading) ... skipped 'PostgreSQL specific tests' 378s test_already_converted_value (postgres_tests.test_array.TestSimpleFormField.test_already_converted_value) ... skipped 'PostgreSQL specific tests' 378s test_delimiter (postgres_tests.test_array.TestSimpleFormField.test_delimiter) ... skipped 'PostgreSQL specific tests' 378s test_delimiter_with_nesting (postgres_tests.test_array.TestSimpleFormField.test_delimiter_with_nesting) ... skipped 'PostgreSQL specific tests' 378s test_has_changed (postgres_tests.test_array.TestSimpleFormField.test_has_changed) ... skipped 'PostgreSQL specific tests' 378s test_has_changed_empty (postgres_tests.test_array.TestSimpleFormField.test_has_changed_empty) ... skipped 'PostgreSQL specific tests' 378s test_max_length (postgres_tests.test_array.TestSimpleFormField.test_max_length) ... skipped 'PostgreSQL specific tests' 378s test_min_length (postgres_tests.test_array.TestSimpleFormField.test_min_length) ... skipped 'PostgreSQL specific tests' 378s test_model_field_choices (postgres_tests.test_array.TestSimpleFormField.test_model_field_choices) ... skipped 'PostgreSQL specific tests' 378s test_model_field_formfield (postgres_tests.test_array.TestSimpleFormField.test_model_field_formfield) ... skipped 'PostgreSQL specific tests' 378s test_model_field_formfield_size (postgres_tests.test_array.TestSimpleFormField.test_model_field_formfield_size) ... skipped 'PostgreSQL specific tests' 378s test_prepare_value (postgres_tests.test_array.TestSimpleFormField.test_prepare_value) ... skipped 'PostgreSQL specific tests' 378s test_required (postgres_tests.test_array.TestSimpleFormField.test_required) ... skipped 'PostgreSQL specific tests' 378s test_to_python_fail (postgres_tests.test_array.TestSimpleFormField.test_to_python_fail) ... skipped 'PostgreSQL specific tests' 378s test_valid (postgres_tests.test_array.TestSimpleFormField.test_valid) ... skipped 'PostgreSQL specific tests' 378s test_validate_fail (postgres_tests.test_array.TestSimpleFormField.test_validate_fail) ... skipped 'PostgreSQL specific tests' 378s test_validate_fail_base_field_error_params (postgres_tests.test_array.TestSimpleFormField.test_validate_fail_base_field_error_params) ... skipped 'PostgreSQL specific tests' 378s test_validators_fail (postgres_tests.test_array.TestSimpleFormField.test_validators_fail) ... skipped 'PostgreSQL specific tests' 378s test_invalid_char_length (postgres_tests.test_array.TestSplitFormField.test_invalid_char_length) ... skipped 'PostgreSQL specific tests' 378s test_invalid_integer (postgres_tests.test_array.TestSplitFormField.test_invalid_integer) ... skipped 'PostgreSQL specific tests' 378s test_remove_trailing_nulls (postgres_tests.test_array.TestSplitFormField.test_remove_trailing_nulls) ... skipped 'PostgreSQL specific tests' 378s test_remove_trailing_nulls_not_required (postgres_tests.test_array.TestSplitFormField.test_remove_trailing_nulls_not_required) ... skipped 'PostgreSQL specific tests' 378s test_rendering (postgres_tests.test_array.TestSplitFormField.test_rendering) ... skipped 'PostgreSQL specific tests' 378s test_required (postgres_tests.test_array.TestSplitFormField.test_required) ... skipped 'PostgreSQL specific tests' 378s test_required_field (postgres_tests.test_array.TestSplitFormField.test_required_field) ... skipped 'PostgreSQL specific tests' 378s test_splitarrayfield_has_changed (postgres_tests.test_array.TestSplitFormField.test_splitarrayfield_has_changed) ... skipped 'PostgreSQL specific tests' 378s test_splitarrayfield_remove_trailing_nulls_has_changed (postgres_tests.test_array.TestSplitFormField.test_splitarrayfield_remove_trailing_nulls_has_changed) ... skipped 'PostgreSQL specific tests' 378s test_splitarraywidget_value_omitted_from_data (postgres_tests.test_array.TestSplitFormField.test_splitarraywidget_value_omitted_from_data) ... skipped 'PostgreSQL specific tests' 378s test_valid (postgres_tests.test_array.TestSplitFormField.test_valid) ... skipped 'PostgreSQL specific tests' 378s test_checkbox_get_context_attrs (postgres_tests.test_array.TestSplitFormWidget.test_checkbox_get_context_attrs) ... skipped 'PostgreSQL specific tests' 378s test_get_context (postgres_tests.test_array.TestSplitFormWidget.test_get_context) ... skipped 'PostgreSQL specific tests' 378s test_render (postgres_tests.test_array.TestSplitFormWidget.test_render) ... skipped 'PostgreSQL specific tests' 378s test_render_attrs (postgres_tests.test_array.TestSplitFormWidget.test_render_attrs) ... skipped 'PostgreSQL specific tests' 378s test_value_omitted_from_data (postgres_tests.test_array.TestSplitFormWidget.test_value_omitted_from_data) ... skipped 'PostgreSQL specific tests' 378s test_blank_true (postgres_tests.test_array.TestValidation.test_blank_true) ... skipped 'PostgreSQL specific tests' 378s test_nested_array_mismatch (postgres_tests.test_array.TestValidation.test_nested_array_mismatch) ... skipped 'PostgreSQL specific tests' 378s test_unbounded (postgres_tests.test_array.TestValidation.test_unbounded) ... skipped 'PostgreSQL specific tests' 378s test_with_base_field_error_params (postgres_tests.test_array.TestValidation.test_with_base_field_error_params) ... skipped 'PostgreSQL specific tests' 378s test_with_size (postgres_tests.test_array.TestValidation.test_with_size) ... skipped 'PostgreSQL specific tests' 378s test_with_validators (postgres_tests.test_array.TestValidation.test_with_validators) ... skipped 'PostgreSQL specific tests' 378s test_invalid_default (postgres_tests.test_hstore.TestChecks.test_invalid_default) ... skipped 'PostgreSQL specific tests' 378s test_valid_default (postgres_tests.test_hstore.TestChecks.test_valid_default) ... skipped 'PostgreSQL specific tests' 378s test_empty (postgres_tests.test_hstore.TestFormField.test_empty) ... skipped 'PostgreSQL specific tests' 378s test_field_has_changed (postgres_tests.test_hstore.TestFormField.test_field_has_changed) ... skipped 'PostgreSQL specific tests' 378s test_invalid_json (postgres_tests.test_hstore.TestFormField.test_invalid_json) ... skipped 'PostgreSQL specific tests' 378s test_model_field_formfield (postgres_tests.test_hstore.TestFormField.test_model_field_formfield) ... skipped 'PostgreSQL specific tests' 378s test_non_dict_json (postgres_tests.test_hstore.TestFormField.test_non_dict_json) ... skipped 'PostgreSQL specific tests' 378s test_none_value (postgres_tests.test_hstore.TestFormField.test_none_value) ... skipped 'PostgreSQL specific tests' 378s test_not_string_values (postgres_tests.test_hstore.TestFormField.test_not_string_values) ... skipped 'PostgreSQL specific tests' 378s test_valid (postgres_tests.test_hstore.TestFormField.test_valid) ... skipped 'PostgreSQL specific tests' 378s test_dumping (postgres_tests.test_hstore.TestSerialization.test_dumping) ... skipped 'PostgreSQL specific tests' 378s test_loading (postgres_tests.test_hstore.TestSerialization.test_loading) ... skipped 'PostgreSQL specific tests' 378s test_roundtrip_with_null (postgres_tests.test_hstore.TestSerialization.test_roundtrip_with_null) ... skipped 'PostgreSQL specific tests' 378s test_none_allowed_as_value (postgres_tests.test_hstore.TestValidation.test_none_allowed_as_value) ... skipped 'PostgreSQL specific tests' 378s test_not_a_string (postgres_tests.test_hstore.TestValidation.test_not_a_string) ... skipped 'PostgreSQL specific tests' 378s test_custom_messages (postgres_tests.test_hstore.TestValidator.test_custom_messages) ... skipped 'PostgreSQL specific tests' 378s test_deconstruct (postgres_tests.test_hstore.TestValidator.test_deconstruct) ... skipped 'PostgreSQL specific tests' 378s test_extra_keys (postgres_tests.test_hstore.TestValidator.test_extra_keys) ... skipped 'PostgreSQL specific tests' 378s test_missing_keys (postgres_tests.test_hstore.TestValidator.test_missing_keys) ... skipped 'PostgreSQL specific tests' 378s test_simple_valid (postgres_tests.test_hstore.TestValidator.test_simple_valid) ... skipped 'PostgreSQL specific tests' 378s test_strict_valid (postgres_tests.test_hstore.TestValidator.test_strict_valid) ... skipped 'PostgreSQL specific tests' 378s test_deconstruction (postgres_tests.test_indexes.BTreeIndexTests.test_deconstruction) ... skipped 'PostgreSQL specific tests' 378s test_deconstruction_no_customization (postgres_tests.test_indexes.BTreeIndexTests.test_deconstruction_no_customization) ... skipped 'PostgreSQL specific tests' 378s test_deconstruction_with_expressions_no_customization (postgres_tests.test_indexes.BTreeIndexTests.test_deconstruction_with_expressions_no_customization) ... skipped 'PostgreSQL specific tests' 378s test_name_auto_generation (postgres_tests.test_indexes.BTreeIndexTests.test_name_auto_generation) ... skipped 'PostgreSQL specific tests' 378s test_suffix (postgres_tests.test_indexes.BTreeIndexTests.test_suffix) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction (postgres_tests.test_indexes.BloomIndexTests.test_deconstruction) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_no_customization (postgres_tests.test_indexes.BloomIndexTests.test_deconstruction_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_with_expressions_no_customization (postgres_tests.test_indexes.BloomIndexTests.test_deconstruction_with_expressions_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_invalid_columns (postgres_tests.test_indexes.BloomIndexTests.test_invalid_columns) ... skipped 'PostgreSQL specific tests' 379s test_invalid_columns_value (postgres_tests.test_indexes.BloomIndexTests.test_invalid_columns_value) ... skipped 'PostgreSQL specific tests' 379s test_invalid_fields (postgres_tests.test_indexes.BloomIndexTests.test_invalid_fields) ... skipped 'PostgreSQL specific tests' 379s test_invalid_length (postgres_tests.test_indexes.BloomIndexTests.test_invalid_length) ... skipped 'PostgreSQL specific tests' 379s test_name_auto_generation (postgres_tests.test_indexes.BloomIndexTests.test_name_auto_generation) ... skipped 'PostgreSQL specific tests' 379s test_suffix (postgres_tests.test_indexes.BloomIndexTests.test_suffix) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction (postgres_tests.test_indexes.BrinIndexTests.test_deconstruction) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_no_customization (postgres_tests.test_indexes.BrinIndexTests.test_deconstruction_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_with_expressions_no_customization (postgres_tests.test_indexes.BrinIndexTests.test_deconstruction_with_expressions_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_invalid_pages_per_range (postgres_tests.test_indexes.BrinIndexTests.test_invalid_pages_per_range) ... skipped 'PostgreSQL specific tests' 379s test_name_auto_generation (postgres_tests.test_indexes.BrinIndexTests.test_name_auto_generation) ... skipped 'PostgreSQL specific tests' 379s test_suffix (postgres_tests.test_indexes.BrinIndexTests.test_suffix) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction (postgres_tests.test_indexes.GinIndexTests.test_deconstruction) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_no_customization (postgres_tests.test_indexes.GinIndexTests.test_deconstruction_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_with_expressions_no_customization (postgres_tests.test_indexes.GinIndexTests.test_deconstruction_with_expressions_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_name_auto_generation (postgres_tests.test_indexes.GinIndexTests.test_name_auto_generation) ... skipped 'PostgreSQL specific tests' 379s test_suffix (postgres_tests.test_indexes.GinIndexTests.test_suffix) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction (postgres_tests.test_indexes.GistIndexTests.test_deconstruction) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_no_customization (postgres_tests.test_indexes.GistIndexTests.test_deconstruction_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_with_expressions_no_customization (postgres_tests.test_indexes.GistIndexTests.test_deconstruction_with_expressions_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_name_auto_generation (postgres_tests.test_indexes.GistIndexTests.test_name_auto_generation) ... skipped 'PostgreSQL specific tests' 379s test_suffix (postgres_tests.test_indexes.GistIndexTests.test_suffix) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction (postgres_tests.test_indexes.HashIndexTests.test_deconstruction) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_no_customization (postgres_tests.test_indexes.HashIndexTests.test_deconstruction_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_with_expressions_no_customization (postgres_tests.test_indexes.HashIndexTests.test_deconstruction_with_expressions_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_name_auto_generation (postgres_tests.test_indexes.HashIndexTests.test_name_auto_generation) ... skipped 'PostgreSQL specific tests' 379s test_suffix (postgres_tests.test_indexes.HashIndexTests.test_suffix) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction (postgres_tests.test_indexes.SpGistIndexTests.test_deconstruction) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_no_customization (postgres_tests.test_indexes.SpGistIndexTests.test_deconstruction_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_deconstruction_with_expressions_no_customization (postgres_tests.test_indexes.SpGistIndexTests.test_deconstruction_with_expressions_no_customization) ... skipped 'PostgreSQL specific tests' 379s test_name_auto_generation (postgres_tests.test_indexes.SpGistIndexTests.test_name_auto_generation) ... skipped 'PostgreSQL specific tests' 379s test_suffix (postgres_tests.test_indexes.SpGistIndexTests.test_suffix) ... skipped 'PostgreSQL specific tests' 379s test_check (postgres_tests.test_integration.PostgresIntegrationTests.test_check) ... skipped 'PostgreSQL specific tests' 379s test_add (postgres_tests.test_operations.AddConstraintNotValidTests.test_add) ... skipped 'PostgreSQL specific tests.' 379s test_non_check_constraint_not_supported (postgres_tests.test_operations.AddConstraintNotValidTests.test_non_check_constraint_not_supported) ... skipped 'PostgreSQL specific tests.' 379s test_add (postgres_tests.test_operations.AddIndexConcurrentlyTests.test_add) ... skipped 'PostgreSQL specific tests.' 379s test_add_other_index_type (postgres_tests.test_operations.AddIndexConcurrentlyTests.test_add_other_index_type) ... skipped 'PostgreSQL specific tests.' 379s test_add_with_options (postgres_tests.test_operations.AddIndexConcurrentlyTests.test_add_with_options) ... skipped 'PostgreSQL specific tests.' 379s test_requires_atomic_false (postgres_tests.test_operations.AddIndexConcurrentlyTests.test_requires_atomic_false) ... skipped 'PostgreSQL specific tests.' 379s test_remove (postgres_tests.test_operations.RemoveIndexConcurrentlyTests.test_remove) ... skipped 'PostgreSQL specific tests.' 379s test_requires_atomic_false (postgres_tests.test_operations.RemoveIndexConcurrentlyTests.test_requires_atomic_false) ... skipped 'PostgreSQL specific tests.' 379s test_validate (postgres_tests.test_operations.ValidateConstraintTests.test_validate) ... skipped 'PostgreSQL specific tests.' 379s test_continuous_range_fields_default_bounds (postgres_tests.test_ranges.BasicTests.test_continuous_range_fields_default_bounds) ... skipped 'PostgreSQL specific tests' 379s test_deconstruct (postgres_tests.test_ranges.BasicTests.test_deconstruct) ... skipped 'PostgreSQL specific tests' 379s test_discrete_range_fields_unsupported_default_bounds (postgres_tests.test_ranges.BasicTests.test_discrete_range_fields_unsupported_default_bounds) ... skipped 'PostgreSQL specific tests' 379s test_get_field_display (postgres_tests.test_ranges.BasicTests.test_get_field_display) ... skipped 'PostgreSQL specific tests' 379s test_invalid_default_bounds (postgres_tests.test_ranges.BasicTests.test_invalid_default_bounds) ... skipped 'PostgreSQL specific tests' 379s test_choices_tuple_list (postgres_tests.test_ranges.TestChecks.test_choices_tuple_list) ... skipped 'PostgreSQL specific tests' 379s test_date_has_changed_first (postgres_tests.test_ranges.TestFormField.test_date_has_changed_first) ... skipped 'PostgreSQL specific tests' 379s test_date_has_changed_last (postgres_tests.test_ranges.TestFormField.test_date_has_changed_last) ... skipped 'PostgreSQL specific tests' 379s test_date_incorrect_data_type (postgres_tests.test_ranges.TestFormField.test_date_incorrect_data_type) ... skipped 'PostgreSQL specific tests' 379s test_date_invalid_lower (postgres_tests.test_ranges.TestFormField.test_date_invalid_lower) ... skipped 'PostgreSQL specific tests' 379s test_date_invalid_upper (postgres_tests.test_ranges.TestFormField.test_date_invalid_upper) ... skipped 'PostgreSQL specific tests' 379s test_date_lower_bound_higher (postgres_tests.test_ranges.TestFormField.test_date_lower_bound_higher) ... skipped 'PostgreSQL specific tests' 379s test_date_open (postgres_tests.test_ranges.TestFormField.test_date_open) ... skipped 'PostgreSQL specific tests' 379s test_date_required (postgres_tests.test_ranges.TestFormField.test_date_required) ... skipped 'PostgreSQL specific tests' 379s test_datetime_form_as_table (postgres_tests.test_ranges.TestFormField.test_datetime_form_as_table) ... skipped 'PostgreSQL specific tests' 379s test_datetime_form_initial_data (postgres_tests.test_ranges.TestFormField.test_datetime_form_initial_data) ... skipped 'PostgreSQL specific tests' 379s test_datetime_has_changed_first (postgres_tests.test_ranges.TestFormField.test_datetime_has_changed_first) ... skipped 'PostgreSQL specific tests' 379s test_datetime_has_changed_last (postgres_tests.test_ranges.TestFormField.test_datetime_has_changed_last) ... skipped 'PostgreSQL specific tests' 379s test_datetime_incorrect_data_type (postgres_tests.test_ranges.TestFormField.test_datetime_incorrect_data_type) ... skipped 'PostgreSQL specific tests' 379s test_datetime_invalid_lower (postgres_tests.test_ranges.TestFormField.test_datetime_invalid_lower) ... skipped 'PostgreSQL specific tests' 379s test_datetime_invalid_upper (postgres_tests.test_ranges.TestFormField.test_datetime_invalid_upper) ... skipped 'PostgreSQL specific tests' 379s test_datetime_lower_bound_higher (postgres_tests.test_ranges.TestFormField.test_datetime_lower_bound_higher) ... skipped 'PostgreSQL specific tests' 379s test_datetime_open (postgres_tests.test_ranges.TestFormField.test_datetime_open) ... skipped 'PostgreSQL specific tests' 379s test_datetime_prepare_value (postgres_tests.test_ranges.TestFormField.test_datetime_prepare_value) ... skipped 'PostgreSQL specific tests' 379s test_datetime_required (postgres_tests.test_ranges.TestFormField.test_datetime_required) ... skipped 'PostgreSQL specific tests' 379s test_decimal_incorrect_data_type (postgres_tests.test_ranges.TestFormField.test_decimal_incorrect_data_type) ... skipped 'PostgreSQL specific tests' 379s test_decimal_invalid_lower (postgres_tests.test_ranges.TestFormField.test_decimal_invalid_lower) ... skipped 'PostgreSQL specific tests' 379s test_decimal_invalid_upper (postgres_tests.test_ranges.TestFormField.test_decimal_invalid_upper) ... skipped 'PostgreSQL specific tests' 379s test_decimal_lower_bound_higher (postgres_tests.test_ranges.TestFormField.test_decimal_lower_bound_higher) ... skipped 'PostgreSQL specific tests' 379s test_decimal_open (postgres_tests.test_ranges.TestFormField.test_decimal_open) ... skipped 'PostgreSQL specific tests' 379s test_decimal_required (postgres_tests.test_ranges.TestFormField.test_decimal_required) ... skipped 'PostgreSQL specific tests' 379s test_has_changed (postgres_tests.test_ranges.TestFormField.test_has_changed) ... skipped 'PostgreSQL specific tests' 379s test_integer_incorrect_data_type (postgres_tests.test_ranges.TestFormField.test_integer_incorrect_data_type) ... skipped 'PostgreSQL specific tests' 379s test_integer_invalid_lower (postgres_tests.test_ranges.TestFormField.test_integer_invalid_lower) ... skipped 'PostgreSQL specific tests' 379s test_integer_invalid_upper (postgres_tests.test_ranges.TestFormField.test_integer_invalid_upper) ... skipped 'PostgreSQL specific tests' 379s test_integer_lower_bound_higher (postgres_tests.test_ranges.TestFormField.test_integer_lower_bound_higher) ... skipped 'PostgreSQL specific tests' 379s test_integer_open (postgres_tests.test_ranges.TestFormField.test_integer_open) ... skipped 'PostgreSQL specific tests' 379s test_integer_required (postgres_tests.test_ranges.TestFormField.test_integer_required) ... skipped 'PostgreSQL specific tests' 379s test_model_field_formfield_biginteger (postgres_tests.test_ranges.TestFormField.test_model_field_formfield_biginteger) ... skipped 'PostgreSQL specific tests' 379s test_model_field_formfield_date (postgres_tests.test_ranges.TestFormField.test_model_field_formfield_date) ... skipped 'PostgreSQL specific tests' 379s test_model_field_formfield_datetime (postgres_tests.test_ranges.TestFormField.test_model_field_formfield_datetime) ... skipped 'PostgreSQL specific tests' 379s test_model_field_formfield_datetime_default_bounds (postgres_tests.test_ranges.TestFormField.test_model_field_formfield_datetime_default_bounds) ... skipped 'PostgreSQL specific tests' 379s test_model_field_formfield_float (postgres_tests.test_ranges.TestFormField.test_model_field_formfield_float) ... skipped 'PostgreSQL specific tests' 379s test_model_field_formfield_integer (postgres_tests.test_ranges.TestFormField.test_model_field_formfield_integer) ... skipped 'PostgreSQL specific tests' 379s test_model_field_with_default_bounds (postgres_tests.test_ranges.TestFormField.test_model_field_with_default_bounds) ... skipped 'PostgreSQL specific tests' 379s test_none (postgres_tests.test_ranges.TestFormField.test_none) ... skipped 'PostgreSQL specific tests' 379s test_rendering (postgres_tests.test_ranges.TestFormField.test_rendering) ... skipped 'PostgreSQL specific tests' 379s test_using_split_datetime_widget (postgres_tests.test_ranges.TestFormField.test_using_split_datetime_widget) ... skipped 'PostgreSQL specific tests' 379s test_valid_dates (postgres_tests.test_ranges.TestFormField.test_valid_dates) ... skipped 'PostgreSQL specific tests' 379s test_valid_decimal (postgres_tests.test_ranges.TestFormField.test_valid_decimal) ... skipped 'PostgreSQL specific tests' 379s test_valid_integer (postgres_tests.test_ranges.TestFormField.test_valid_integer) ... skipped 'PostgreSQL specific tests' 379s test_valid_timestamps (postgres_tests.test_ranges.TestFormField.test_valid_timestamps) ... skipped 'PostgreSQL specific tests' 379s test_dumping (postgres_tests.test_ranges.TestSerialization.test_dumping) ... skipped 'PostgreSQL specific tests' 379s test_loading (postgres_tests.test_ranges.TestSerialization.test_loading) ... skipped 'PostgreSQL specific tests' 379s test_serialize_range_with_null (postgres_tests.test_ranges.TestSerialization.test_serialize_range_with_null) ... skipped 'PostgreSQL specific tests' 379s test_max (postgres_tests.test_ranges.TestValidators.test_max) ... skipped 'PostgreSQL specific tests' 379s test_min (postgres_tests.test_ranges.TestValidators.test_min) ... skipped 'PostgreSQL specific tests' 379s test_range_widget (postgres_tests.test_ranges.TestWidget.test_range_widget) ... skipped 'PostgreSQL specific tests' 379s test_range_widget_render_tuple_value (postgres_tests.test_ranges.TestWidget.test_range_widget_render_tuple_value) ... skipped 'PostgreSQL specific tests' 379s test_from_parameter (postgres_tests.test_search.SearchConfigTests.test_from_parameter) ... skipped 'PostgreSQL specific tests' 379s test_str (postgres_tests.test_search.SearchQueryTests.test_str) ... skipped 'PostgreSQL specific tests' 379s test_can_set_and_read_signed_cookies (signed_cookies_tests.tests.SignedCookieTest.test_can_set_and_read_signed_cookies) ... ok 379s test_can_use_salt (signed_cookies_tests.tests.SignedCookieTest.test_can_use_salt) ... ok 379s test_default_argument_suppresses_exceptions (signed_cookies_tests.tests.SignedCookieTest.test_default_argument_suppresses_exceptions) ... ok 379s test_detects_tampering (signed_cookies_tests.tests.SignedCookieTest.test_detects_tampering) ... ok 379s test_max_age_argument (signed_cookies_tests.tests.SignedCookieTest.test_max_age_argument) ... ok 379s test_set_signed_cookie_max_age_argument (signed_cookies_tests.tests.SignedCookieTest.test_set_signed_cookie_max_age_argument) ... ok 379s test_signed_cookies_with_binary_key (signed_cookies_tests.tests.SignedCookieTest.test_signed_cookies_with_binary_key) ... ok 379s test_domain (resolve_url.tests.ResolveUrlTests.test_domain) 379s Passing a domain to resolve_url() returns the same domain. ... ok 379s test_full_url (resolve_url.tests.ResolveUrlTests.test_full_url) 379s Passing a full URL to resolve_url() results in the same url. ... ok 379s test_lazy_reverse (resolve_url.tests.ResolveUrlTests.test_lazy_reverse) 379s Passing the result of reverse_lazy is resolved to a real URL ... ok 379s test_model (resolve_url.tests.ResolveUrlTests.test_model) 379s Passing a model to resolve_url() results in get_absolute_url() being ... ok 379s test_non_view_callable_raises_no_reverse_match (resolve_url.tests.ResolveUrlTests.test_non_view_callable_raises_no_reverse_match) 379s Passing a non-view callable into resolve_url() raises a ... ok 379s test_relative_path (resolve_url.tests.ResolveUrlTests.test_relative_path) 379s Passing a relative URL path to resolve_url() results in the same url. ... ok 379s test_url_path (resolve_url.tests.ResolveUrlTests.test_url_path) 379s Passing a URL path to resolve_url() results in the same url. ... ok 379s test_valid_view_name (resolve_url.tests.ResolveUrlTests.test_valid_view_name) 379s Passing a view name to resolve_url() results in the URL path mapping ... ok 379s test_view_function (resolve_url.tests.ResolveUrlTests.test_view_function) 379s Passing a view function to resolve_url() results in the URL path ... ok 379s test_write_datetime (timezones.tests.ForcedTimeZoneDatabaseTests.test_write_datetime) ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 379s test_aware_datetime_in_local_timezone (timezones.tests.SerializationTests.test_aware_datetime_in_local_timezone) ... ok 379s test_aware_datetime_in_other_timezone (timezones.tests.SerializationTests.test_aware_datetime_in_other_timezone) ... ok 379s test_aware_datetime_in_utc (timezones.tests.SerializationTests.test_aware_datetime_in_utc) ... ok 379s test_aware_datetime_with_microsecond (timezones.tests.SerializationTests.test_aware_datetime_with_microsecond) ... ok 379s test_naive_datetime (timezones.tests.SerializationTests.test_naive_datetime) ... ok 379s test_naive_datetime_with_microsecond (timezones.tests.SerializationTests.test_naive_datetime_with_microsecond) ... ok 379s test_date_and_time_template_filters (timezones.tests.TemplateTests.test_date_and_time_template_filters) ... ok 379s test_date_and_time_template_filters_honor_localtime (timezones.tests.TemplateTests.test_date_and_time_template_filters_honor_localtime) ... ok 379s test_get_current_timezone_templatetag (timezones.tests.TemplateTests.test_get_current_timezone_templatetag) 379s Test the {% get_current_timezone %} templatetag. ... ok 379s test_get_current_timezone_templatetag_invalid_argument (timezones.tests.TemplateTests.test_get_current_timezone_templatetag_invalid_argument) ... ok 379s test_get_current_timezone_templatetag_with_iana (timezones.tests.TemplateTests.test_get_current_timezone_templatetag_with_iana) 379s Test the {% get_current_timezone %} templatetag with pytz. ... ok 379s test_localtime_filters_do_not_raise_exceptions (timezones.tests.TemplateTests.test_localtime_filters_do_not_raise_exceptions) 379s Test the |localtime, |utc, and |timezone filters on bad inputs. ... ok 379s test_localtime_filters_with_iana (timezones.tests.TemplateTests.test_localtime_filters_with_iana) 379s Test the |localtime, |utc, and |timezone filters with iana zones. ... ok 379s test_localtime_templatetag_and_filters (timezones.tests.TemplateTests.test_localtime_templatetag_and_filters) 379s Test the {% localtime %} templatetag and related filters. ... ok 379s test_localtime_templatetag_invalid_argument (timezones.tests.TemplateTests.test_localtime_templatetag_invalid_argument) ... ok 379s test_now_template_tag_uses_current_time_zone (timezones.tests.TemplateTests.test_now_template_tag_uses_current_time_zone) ... ok 379s test_timezone_templatetag (timezones.tests.TemplateTests.test_timezone_templatetag) 379s Test the {% timezone %} templatetag. ... ok 379s test_timezone_templatetag_invalid_argument (timezones.tests.TemplateTests.test_timezone_templatetag_invalid_argument) ... ok 379s test_timezone_templatetag_with_iana (timezones.tests.TemplateTests.test_timezone_templatetag_with_iana) 379s Test the {% timezone %} templatetag with IANA time zone providers. ... ok 379s test_tz_template_context_processor (timezones.tests.TemplateTests.test_tz_template_context_processor) 379s Test the django.template.context_processors.tz template context processor. ... ok 379s test_alias_deprecation_warning (timezones.tests.UTCAliasTests.test_alias_deprecation_warning) ... ok 379s test_timezone_module_dir_includes_utc (timezones.tests.UTCAliasTests.test_timezone_module_dir_includes_utc) ... ok 381s test_option_then_setting (admin_scripts.tests.ArgumentOrder.test_option_then_setting) 381s Options passed before settings are correctly handled. ... ok 381s test_option_then_setting_then_option (admin_scripts.tests.ArgumentOrder.test_option_then_setting_then_option) 381s Options are correctly handled when they are passed before and after ... ok 381s test_setting_then_option (admin_scripts.tests.ArgumentOrder.test_setting_then_option) 381s Options passed after settings are correctly handled. ... ok 381s test_setting_then_short_option (admin_scripts.tests.ArgumentOrder.test_setting_then_short_option) 381s Short options passed after settings are correctly handled. ... ok 381s test_short_option_then_setting (admin_scripts.tests.ArgumentOrder.test_short_option_then_setting) 381s Short options passed before settings are correctly handled. ... ok 383s test_add_binaryfield (migrations.test_operations.OperationTests.test_add_binaryfield) 383s Tests the AddField operation on TextField/BinaryField. ... ok 383s test_add_charfield (migrations.test_operations.OperationTests.test_add_charfield) 383s Tests the AddField operation on TextField. ... ok 383s test_add_constraint (migrations.test_operations.OperationTests.test_add_constraint) ... ok 383s test_add_constraint_combinable (migrations.test_operations.OperationTests.test_add_constraint_combinable) ... ok 383s test_add_constraint_percent_escaping (migrations.test_operations.OperationTests.test_add_constraint_percent_escaping) ... ok 383s test_add_covering_unique_constraint (migrations.test_operations.OperationTests.test_add_covering_unique_constraint) ... ok 383s test_add_deferred_unique_constraint (migrations.test_operations.OperationTests.test_add_deferred_unique_constraint) ... ok 383s test_add_field (migrations.test_operations.OperationTests.test_add_field) 383s Tests the AddField operation. ... ok 383s test_add_field_m2m (migrations.test_operations.OperationTests.test_add_field_m2m) 383s Tests the AddField operation with a ManyToManyField. ... ok 383s test_add_field_preserve_default (migrations.test_operations.OperationTests.test_add_field_preserve_default) 383s Tests the AddField operation's state alteration ... ok 383s test_add_func_index (migrations.test_operations.OperationTests.test_add_func_index) ... ok 383s test_add_func_unique_constraint (migrations.test_operations.OperationTests.test_add_func_unique_constraint) ... ok 383s test_add_index (migrations.test_operations.OperationTests.test_add_index) 383s Test the AddIndex operation. ... ok 383s test_add_index_state_forwards (migrations.test_operations.OperationTests.test_add_index_state_forwards) ... ok 383s test_add_or_constraint (migrations.test_operations.OperationTests.test_add_or_constraint) ... ok 383s test_add_partial_unique_constraint (migrations.test_operations.OperationTests.test_add_partial_unique_constraint) ... ok 383s test_add_textfield (migrations.test_operations.OperationTests.test_add_textfield) 383s Tests the AddField operation on TextField. ... ok 383s test_alter_field (migrations.test_operations.OperationTests.test_alter_field) 383s Tests the AlterField operation. ... ok 383s test_alter_field_add_db_column_noop (migrations.test_operations.OperationTests.test_alter_field_add_db_column_noop) 383s AlterField operation is a noop when adding only a db_column and the ... ok 383s test_alter_field_m2m (migrations.test_operations.OperationTests.test_alter_field_m2m) ... ok 383s test_alter_field_pk (migrations.test_operations.OperationTests.test_alter_field_pk) 383s The AlterField operation on primary keys (things like PostgreSQL's ... ok 383s test_alter_field_pk_fk (migrations.test_operations.OperationTests.test_alter_field_pk_fk) 383s Tests the AlterField operation on primary keys changes any FKs pointing to it. ... ok 383s test_alter_field_pk_fk_char_to_int (migrations.test_operations.OperationTests.test_alter_field_pk_fk_char_to_int) ... ok 383s test_alter_field_pk_fk_db_collation (migrations.test_operations.OperationTests.test_alter_field_pk_fk_db_collation) 383s AlterField operation of db_collation on primary keys changes any FKs ... ok 383s test_alter_field_pk_mti_and_fk_to_base (migrations.test_operations.OperationTests.test_alter_field_pk_mti_and_fk_to_base) ... ok 383s test_alter_field_pk_mti_fk (migrations.test_operations.OperationTests.test_alter_field_pk_mti_fk) ... ok 383s test_alter_field_reloads_state_fk_with_to_field_related_name_target_type_change (migrations.test_operations.OperationTests.test_alter_field_reloads_state_fk_with_to_field_related_name_target_type_change) ... ok 383s test_alter_field_reloads_state_on_fk_target_changes (migrations.test_operations.OperationTests.test_alter_field_reloads_state_on_fk_target_changes) 383s If AlterField doesn't reload state appropriately, the second AlterField ... ok 383s test_alter_field_reloads_state_on_fk_with_to_field_target_changes (migrations.test_operations.OperationTests.test_alter_field_reloads_state_on_fk_with_to_field_target_changes) 383s If AlterField doesn't reload state appropriately, the second AlterField ... ok 383s test_alter_field_reloads_state_on_fk_with_to_field_target_type_change (migrations.test_operations.OperationTests.test_alter_field_reloads_state_on_fk_with_to_field_target_type_change) ... ok 383s test_alter_field_with_func_index (migrations.test_operations.OperationTests.test_alter_field_with_func_index) ... ok 383s test_alter_field_with_func_unique_constraint (migrations.test_operations.OperationTests.test_alter_field_with_func_unique_constraint) ... ok 383s test_alter_field_with_index (migrations.test_operations.OperationTests.test_alter_field_with_index) 383s Test AlterField operation with an index to ensure indexes created via ... ok 383s test_alter_fk (migrations.test_operations.OperationTests.test_alter_fk) 383s Creating and then altering an FK works correctly ... ok 383s test_alter_fk_non_fk (migrations.test_operations.OperationTests.test_alter_fk_non_fk) 383s Altering an FK to a non-FK works (#23244) ... ok 383s test_alter_index_together (migrations.test_operations.OperationTests.test_alter_index_together) 383s Tests the AlterIndexTogether operation. ... ok 383s test_alter_index_together_remove (migrations.test_operations.OperationTests.test_alter_index_together_remove) ... ok 383s test_alter_index_together_remove_with_unique_together (migrations.test_operations.OperationTests.test_alter_index_together_remove_with_unique_together) ... ok 383s test_alter_model_managers (migrations.test_operations.OperationTests.test_alter_model_managers) 383s The managers on a model are set. ... ok 383s test_alter_model_managers_emptying (migrations.test_operations.OperationTests.test_alter_model_managers_emptying) 383s The managers on a model are set. ... ok 383s test_alter_model_options (migrations.test_operations.OperationTests.test_alter_model_options) 383s Tests the AlterModelOptions operation. ... ok 383s test_alter_model_options_emptying (migrations.test_operations.OperationTests.test_alter_model_options_emptying) 383s The AlterModelOptions operation removes keys from the dict (#23121) ... ok 383s test_alter_model_table (migrations.test_operations.OperationTests.test_alter_model_table) 383s Tests the AlterModelTable operation. ... ok 383s test_alter_model_table_comment (migrations.test_operations.OperationTests.test_alter_model_table_comment) ... skipped "Database doesn't support feature(s): supports_comments" 383s test_alter_model_table_m2m (migrations.test_operations.OperationTests.test_alter_model_table_m2m) 383s AlterModelTable should rename auto-generated M2M tables. ... ok 383s test_alter_model_table_m2m_field (migrations.test_operations.OperationTests.test_alter_model_table_m2m_field) ... ok 383s test_alter_model_table_none (migrations.test_operations.OperationTests.test_alter_model_table_none) 383s Tests the AlterModelTable operation if the table name is set to None. ... ok 383s test_alter_model_table_noop (migrations.test_operations.OperationTests.test_alter_model_table_noop) 383s Tests the AlterModelTable operation if the table name is not changed. ... ok 383s test_alter_order_with_respect_to (migrations.test_operations.OperationTests.test_alter_order_with_respect_to) 383s Tests the AlterOrderWithRespectTo operation. ... ok 383s test_alter_unique_together (migrations.test_operations.OperationTests.test_alter_unique_together) 383s Tests the AlterUniqueTogether operation. ... ok 383s test_alter_unique_together_remove (migrations.test_operations.OperationTests.test_alter_unique_together_remove) ... ok 383s test_autofield__bigautofield_foreignfield_growth (migrations.test_operations.OperationTests.test_autofield__bigautofield_foreignfield_growth) 383s A field may be migrated from AutoField to BigAutoField. ... ok 383s test_column_name_quoting (migrations.test_operations.OperationTests.test_column_name_quoting) 383s Column names that are SQL keywords shouldn't cause problems when used ... ok 383s test_create_fk_models_to_pk_field_db_collation (migrations.test_operations.OperationTests.test_create_fk_models_to_pk_field_db_collation) 383s Creation of models with a FK to a PK with db_collation. ... ok 383s test_create_model (migrations.test_operations.OperationTests.test_create_model) 383s Tests the CreateModel operation. ... ok 383s test_create_model_inheritance (migrations.test_operations.OperationTests.test_create_model_inheritance) 383s Tests the CreateModel operation on a multi-table inheritance setup. ... ok 383s test_create_model_m2m (migrations.test_operations.OperationTests.test_create_model_m2m) 383s Test the creation of a model with a ManyToMany field and the ... ok 383s test_create_model_managers (migrations.test_operations.OperationTests.test_create_model_managers) 383s The managers on a model are set. ... ok 383s test_create_model_with_boolean_expression_in_check_constraint (migrations.test_operations.OperationTests.test_create_model_with_boolean_expression_in_check_constraint) ... ok 383s test_create_model_with_constraint (migrations.test_operations.OperationTests.test_create_model_with_constraint) ... ok 383s test_create_model_with_covering_unique_constraint (migrations.test_operations.OperationTests.test_create_model_with_covering_unique_constraint) ... skipped "Database doesn't support feature(s): supports_covering_indexes" 383s test_create_model_with_deferred_unique_constraint (migrations.test_operations.OperationTests.test_create_model_with_deferred_unique_constraint) ... ok 383s test_create_model_with_duplicate_base (migrations.test_operations.OperationTests.test_create_model_with_duplicate_base) ... ok 383s test_create_model_with_duplicate_field_name (migrations.test_operations.OperationTests.test_create_model_with_duplicate_field_name) ... ok 383s test_create_model_with_duplicate_manager_name (migrations.test_operations.OperationTests.test_create_model_with_duplicate_manager_name) ... ok 383s test_create_model_with_partial_unique_constraint (migrations.test_operations.OperationTests.test_create_model_with_partial_unique_constraint) ... ok 383s test_create_model_with_unique_after (migrations.test_operations.OperationTests.test_create_model_with_unique_after) 383s Tests the CreateModel operation directly followed by an ... ok 383s test_create_proxy_model (migrations.test_operations.OperationTests.test_create_proxy_model) 383s CreateModel ignores proxy models. ... ok 383s test_create_unmanaged_model (migrations.test_operations.OperationTests.test_create_unmanaged_model) 383s CreateModel ignores unmanaged models. ... ok 383s test_delete_model (migrations.test_operations.OperationTests.test_delete_model) 383s Tests the DeleteModel operation. ... ok 383s test_delete_mti_model (migrations.test_operations.OperationTests.test_delete_mti_model) ... ok 383s test_delete_proxy_model (migrations.test_operations.OperationTests.test_delete_proxy_model) 383s Tests the DeleteModel operation ignores proxy models. ... ok 383s test_model_with_bigautofield (migrations.test_operations.OperationTests.test_model_with_bigautofield) 383s A model with BigAutoField can be created. ... ok 383s test_remove_constraint (migrations.test_operations.OperationTests.test_remove_constraint) ... ok 383s test_remove_covering_unique_constraint (migrations.test_operations.OperationTests.test_remove_covering_unique_constraint) ... ok 383s test_remove_deferred_unique_constraint (migrations.test_operations.OperationTests.test_remove_deferred_unique_constraint) ... ok 383s test_remove_field (migrations.test_operations.OperationTests.test_remove_field) 383s Tests the RemoveField operation. ... ok 383s test_remove_field_m2m (migrations.test_operations.OperationTests.test_remove_field_m2m) ... ok 383s test_remove_field_m2m_with_through (migrations.test_operations.OperationTests.test_remove_field_m2m_with_through) ... ok 383s test_remove_fk (migrations.test_operations.OperationTests.test_remove_fk) 383s Tests the RemoveField operation on a foreign key. ... ok 383s test_remove_func_index (migrations.test_operations.OperationTests.test_remove_func_index) ... ok 383s test_remove_func_unique_constraint (migrations.test_operations.OperationTests.test_remove_func_unique_constraint) ... ok 383s test_remove_index (migrations.test_operations.OperationTests.test_remove_index) 383s Test the RemoveIndex operation. ... ok 383s test_remove_index_state_forwards (migrations.test_operations.OperationTests.test_remove_index_state_forwards) ... ok 383s test_remove_partial_unique_constraint (migrations.test_operations.OperationTests.test_remove_partial_unique_constraint) ... ok 383s test_remove_unique_together_on_pk_field (migrations.test_operations.OperationTests.test_remove_unique_together_on_pk_field) ... ok 383s test_remove_unique_together_on_unique_field (migrations.test_operations.OperationTests.test_remove_unique_together_on_unique_field) ... ok 383s test_rename_field (migrations.test_operations.OperationTests.test_rename_field) 383s Tests the RenameField operation. ... ok 383s test_rename_field_case (migrations.test_operations.OperationTests.test_rename_field_case) ... ok 383s test_rename_field_index_together (migrations.test_operations.OperationTests.test_rename_field_index_together) ... ok 383s test_rename_field_reloads_state_on_fk_target_changes (migrations.test_operations.OperationTests.test_rename_field_reloads_state_on_fk_target_changes) 383s If RenameField doesn't reload state appropriately, the AlterField ... ok 383s test_rename_field_unique_together (migrations.test_operations.OperationTests.test_rename_field_unique_together) ... ok 383s test_rename_field_with_db_column (migrations.test_operations.OperationTests.test_rename_field_with_db_column) ... ok 383s test_rename_index (migrations.test_operations.OperationTests.test_rename_index) ... ok 383s test_rename_index_arguments (migrations.test_operations.OperationTests.test_rename_index_arguments) ... ok 383s test_rename_index_state_forwards (migrations.test_operations.OperationTests.test_rename_index_state_forwards) ... ok 383s test_rename_index_state_forwards_unnamed_index (migrations.test_operations.OperationTests.test_rename_index_state_forwards_unnamed_index) ... ok 383s test_rename_index_unknown_unnamed_index (migrations.test_operations.OperationTests.test_rename_index_unknown_unnamed_index) ... ok 383s test_rename_index_unnamed_index (migrations.test_operations.OperationTests.test_rename_index_unnamed_index) ... ok 383s test_rename_m2m_model_after_rename_field (migrations.test_operations.OperationTests.test_rename_m2m_model_after_rename_field) 383s RenameModel renames a many-to-many column after a RenameField. ... ok 383s test_rename_m2m_target_model (migrations.test_operations.OperationTests.test_rename_m2m_target_model) ... ok 383s test_rename_m2m_through_model (migrations.test_operations.OperationTests.test_rename_m2m_through_model) ... ok 383s test_rename_missing_field (migrations.test_operations.OperationTests.test_rename_missing_field) ... ok 383s test_rename_model (migrations.test_operations.OperationTests.test_rename_model) 383s Tests the RenameModel operation. ... ok 383s test_rename_model_state_forwards (migrations.test_operations.OperationTests.test_rename_model_state_forwards) 383s RenameModel operations shouldn't trigger the caching of rendered apps ... ok 383s test_rename_model_with_db_table_rename_m2m (migrations.test_operations.OperationTests.test_rename_model_with_db_table_rename_m2m) ... ok 383s test_rename_model_with_m2m (migrations.test_operations.OperationTests.test_rename_model_with_m2m) ... ok 383s test_rename_model_with_m2m_models_in_different_apps_with_same_name (migrations.test_operations.OperationTests.test_rename_model_with_m2m_models_in_different_apps_with_same_name) ... ok 383s test_rename_model_with_self_referential_fk (migrations.test_operations.OperationTests.test_rename_model_with_self_referential_fk) 383s Tests the RenameModel operation on model with self referential FK. ... ok 383s test_rename_model_with_self_referential_m2m (migrations.test_operations.OperationTests.test_rename_model_with_self_referential_m2m) ... ok 383s test_rename_model_with_superclass_fk (migrations.test_operations.OperationTests.test_rename_model_with_superclass_fk) 383s Tests the RenameModel operation on a model which has a superclass that ... ok 383s test_rename_referenced_field_state_forward (migrations.test_operations.OperationTests.test_rename_referenced_field_state_forward) ... ok 383s test_repoint_field_m2m (migrations.test_operations.OperationTests.test_repoint_field_m2m) ... ok 383s test_run_python (migrations.test_operations.OperationTests.test_run_python) 383s Tests the RunPython operation ... ok 383s test_run_python_atomic (migrations.test_operations.OperationTests.test_run_python_atomic) 383s Tests the RunPython operation correctly handles the "atomic" keyword ... ok 383s test_run_python_noop (migrations.test_operations.OperationTests.test_run_python_noop) 383s #24098 - Tests no-op RunPython operations. ... ok 383s test_run_python_related_assignment (migrations.test_operations.OperationTests.test_run_python_related_assignment) 383s #24282 - Model changes to a FK reverse side update the model ... ok 383s test_run_sql (migrations.test_operations.OperationTests.test_run_sql) 383s Tests the RunSQL operation. ... ok 383s test_run_sql_add_missing_semicolon_on_collect_sql (migrations.test_operations.OperationTests.test_run_sql_add_missing_semicolon_on_collect_sql) ... ok 383s test_run_sql_noop (migrations.test_operations.OperationTests.test_run_sql_noop) 383s #24098 - Tests no-op RunSQL operations. ... ok 383s test_run_sql_params (migrations.test_operations.OperationTests.test_run_sql_params) 383s #23426 - RunSQL should accept parameters. ... ok 383s test_run_sql_params_invalid (migrations.test_operations.OperationTests.test_run_sql_params_invalid) 383s #23426 - RunSQL should fail when a list of statements with an incorrect ... ok 383s test_separate_database_and_state (migrations.test_operations.OperationTests.test_separate_database_and_state) 383s Tests the SeparateDatabaseAndState operation. ... ok 383s test_separate_database_and_state2 (migrations.test_operations.OperationTests.test_separate_database_and_state2) 383s A complex SeparateDatabaseAndState operation: Multiple operations both ... ok 383s test_smallfield_autofield_foreignfield_growth (migrations.test_operations.OperationTests.test_smallfield_autofield_foreignfield_growth) 383s A field may be migrated from SmallAutoField to AutoField. ... ok 383s test_smallfield_bigautofield_foreignfield_growth (migrations.test_operations.OperationTests.test_smallfield_bigautofield_foreignfield_growth) 383s A field may be migrated from SmallAutoField to BigAutoField. ... ok 384s test_all (admin_scripts.tests.DiffSettings.test_all) 384s The all option also shows settings with the default value. ... ok 384s test_basic (admin_scripts.tests.DiffSettings.test_basic) 384s Runs without error and emits settings diff. ... ok 384s test_custom_default (admin_scripts.tests.DiffSettings.test_custom_default) 384s The --default option specifies an alternate settings module for ... ok 384s test_dynamic_settings_configured (admin_scripts.tests.DiffSettings.test_dynamic_settings_configured) ... ok 384s test_settings_configured (admin_scripts.tests.DiffSettings.test_settings_configured) ... ok 384s test_unified (admin_scripts.tests.DiffSettings.test_unified) 384s --output=unified emits settings diff in unified mode. ... ok 384s test_unified_all (admin_scripts.tests.DiffSettings.test_unified_all) 384s --output=unified --all emits settings diff in unified mode and includes ... ok 384s test_precedence (admin_scripts.tests.Discovery.test_precedence) 384s Apps listed first in INSTALLED_APPS have precedence. ... ok 386s test_builtin_command (admin_scripts.tests.DjangoAdminAlternateSettings.test_builtin_command) 386s alternate: django-admin builtin commands fail with an error when no ... ok 386s test_builtin_with_bad_environment (admin_scripts.tests.DjangoAdminAlternateSettings.test_builtin_with_bad_environment) 386s alternate: django-admin builtin commands fail if settings file (from ... ok 386s test_builtin_with_bad_settings (admin_scripts.tests.DjangoAdminAlternateSettings.test_builtin_with_bad_settings) 386s alternate: django-admin builtin commands fail if settings file (from ... ok 386s test_builtin_with_environment (admin_scripts.tests.DjangoAdminAlternateSettings.test_builtin_with_environment) 386s alternate: django-admin builtin commands succeed if settings are ... ok 386s test_builtin_with_settings (admin_scripts.tests.DjangoAdminAlternateSettings.test_builtin_with_settings) 386s alternate: django-admin builtin commands succeed if settings are ... ok 386s test_custom_command (admin_scripts.tests.DjangoAdminAlternateSettings.test_custom_command) 386s alternate: django-admin can't execute user commands unless settings ... ok 386s test_custom_command_with_environment (admin_scripts.tests.DjangoAdminAlternateSettings.test_custom_command_with_environment) 386s alternate: django-admin can execute user commands if settings are ... ok 386s test_custom_command_with_settings (admin_scripts.tests.DjangoAdminAlternateSettings.test_custom_command_with_settings) 386s alternate: django-admin can execute user commands if settings are ... ok 387s test_builtin_command (admin_scripts.tests.DjangoAdminDefaultSettings.test_builtin_command) 387s default: django-admin builtin commands fail with an error when no ... ok 387s test_builtin_with_bad_environment (admin_scripts.tests.DjangoAdminDefaultSettings.test_builtin_with_bad_environment) 387s default: django-admin builtin commands fail if settings file (from ... ok 387s test_builtin_with_bad_settings (admin_scripts.tests.DjangoAdminDefaultSettings.test_builtin_with_bad_settings) 387s default: django-admin builtin commands fail if settings file (from ... ok 387s test_builtin_with_environment (admin_scripts.tests.DjangoAdminDefaultSettings.test_builtin_with_environment) 387s default: django-admin builtin commands succeed if settings are provided ... ok 387s test_builtin_with_settings (admin_scripts.tests.DjangoAdminDefaultSettings.test_builtin_with_settings) 387s default: django-admin builtin commands succeed if settings are provided ... ok 387s test_custom_command (admin_scripts.tests.DjangoAdminDefaultSettings.test_custom_command) 387s default: django-admin can't execute user commands if it isn't provided ... ok 387s test_custom_command_with_environment (admin_scripts.tests.DjangoAdminDefaultSettings.test_custom_command_with_environment) 387s default: django-admin can execute user commands if settings are ... ok 387s test_custom_command_with_settings (admin_scripts.tests.DjangoAdminDefaultSettings.test_custom_command_with_settings) 387s default: django-admin can execute user commands if settings are ... ok 389s test_app_command (admin_scripts.tests.CommandTypes.test_app_command) 389s User AppCommands can execute when a single app name is provided ... ok 389s test_app_command_invalid_app_label (admin_scripts.tests.CommandTypes.test_app_command_invalid_app_label) 389s User AppCommands can execute when a single app name is provided ... ok 389s test_app_command_multiple_apps (admin_scripts.tests.CommandTypes.test_app_command_multiple_apps) 389s User AppCommands raise an error when multiple app names are provided ... ok 389s test_app_command_no_apps (admin_scripts.tests.CommandTypes.test_app_command_no_apps) 389s User AppCommands raise an error when no app name is provided ... ok 389s test_app_command_some_invalid_app_labels (admin_scripts.tests.CommandTypes.test_app_command_some_invalid_app_labels) 389s User AppCommands can execute when some of the provided app names are invalid ... ok 389s test_base_command (admin_scripts.tests.CommandTypes.test_base_command) 389s User BaseCommands can execute when a label is provided ... ok 389s test_base_command_multiple_label (admin_scripts.tests.CommandTypes.test_base_command_multiple_label) 389s User BaseCommands can execute when no labels are provided ... ok 389s test_base_command_no_label (admin_scripts.tests.CommandTypes.test_base_command_no_label) 389s User BaseCommands can execute when no labels are provided ... ok 389s test_base_command_with_option (admin_scripts.tests.CommandTypes.test_base_command_with_option) 389s User BaseCommands can execute with options when a label is provided ... ok 389s test_base_command_with_options (admin_scripts.tests.CommandTypes.test_base_command_with_options) 389s User BaseCommands can execute with multiple options when a label is provided ... ok 389s test_base_command_with_wrong_option (admin_scripts.tests.CommandTypes.test_base_command_with_wrong_option) 389s User BaseCommands outputs command usage when wrong option is specified ... ok 389s test_base_run_from_argv (admin_scripts.tests.CommandTypes.test_base_run_from_argv) 389s Test run_from_argv properly terminates even with custom execute() (#19665) ... ok 389s test_color_style (admin_scripts.tests.CommandTypes.test_color_style) ... ok 389s test_command_color (admin_scripts.tests.CommandTypes.test_command_color) ... ok 389s test_command_no_color (admin_scripts.tests.CommandTypes.test_command_no_color) 389s --no-color prevent colorization of the output ... ok 389s test_custom_stderr (admin_scripts.tests.CommandTypes.test_custom_stderr) ... ok 389s test_custom_stdout (admin_scripts.tests.CommandTypes.test_custom_stdout) ... ok 389s test_force_color_command_init (admin_scripts.tests.CommandTypes.test_force_color_command_init) ... ok 389s test_force_color_execute (admin_scripts.tests.CommandTypes.test_force_color_execute) ... ok 389s test_help (admin_scripts.tests.CommandTypes.test_help) 389s help is handled as a special case ... ok 389s test_help_alternative (admin_scripts.tests.CommandTypes.test_help_alternative) 389s --help is equivalent to help ... ok 389s test_help_commands (admin_scripts.tests.CommandTypes.test_help_commands) 389s help --commands shows the list of all available commands ... ok 389s test_help_default_options_with_custom_arguments (admin_scripts.tests.CommandTypes.test_help_default_options_with_custom_arguments) ... ok 389s test_help_short_altert (admin_scripts.tests.CommandTypes.test_help_short_altert) 389s -h is handled as a short form of --help ... ok 389s test_label_command (admin_scripts.tests.CommandTypes.test_label_command) 389s User LabelCommands can execute when a label is provided ... ok 389s test_label_command_multiple_label (admin_scripts.tests.CommandTypes.test_label_command_multiple_label) 389s User LabelCommands are executed multiple times if multiple labels are provided ... ok 389s test_label_command_no_label (admin_scripts.tests.CommandTypes.test_label_command_no_label) 389s User LabelCommands raise an error if no label is provided ... ok 389s test_no_color_force_color_mutually_exclusive_command_init (admin_scripts.tests.CommandTypes.test_no_color_force_color_mutually_exclusive_command_init) ... ok 389s test_no_color_force_color_mutually_exclusive_execute (admin_scripts.tests.CommandTypes.test_no_color_force_color_mutually_exclusive_execute) ... ok 389s test_noargs (admin_scripts.tests.CommandTypes.test_noargs) 389s NoArg Commands can be executed ... ok 389s test_noargs_with_args (admin_scripts.tests.CommandTypes.test_noargs_with_args) 389s NoArg Commands raise an error if an argument is provided ... ok 389s test_run_from_argv_closes_connections (admin_scripts.tests.CommandTypes.test_run_from_argv_closes_connections) 389s A command called from the command line should close connections after ... ok 389s test_run_from_argv_non_ascii_error (admin_scripts.tests.CommandTypes.test_run_from_argv_non_ascii_error) 389s Non-ASCII message of CommandError does not raise any ... ok 389s test_specific_help (admin_scripts.tests.CommandTypes.test_specific_help) 389s --help can be used on a specific command ... ok 389s test_suppress_base_options_command_defaults (admin_scripts.tests.CommandTypes.test_suppress_base_options_command_defaults) ... ok 389s test_suppress_base_options_command_help (admin_scripts.tests.CommandTypes.test_suppress_base_options_command_help) ... ok 389s test_version (admin_scripts.tests.CommandTypes.test_version) 389s version is handled as a special case ... ok 389s test_version_alternative (admin_scripts.tests.CommandTypes.test_version_alternative) 389s --version is equivalent to version ... ok 389s test_builtin_command (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_builtin_command) 389s fulldefault: django-admin builtin commands fail with an error when no ... ok 389s test_builtin_with_bad_environment (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_builtin_with_bad_environment) 389s fulldefault: django-admin builtin commands fail if settings file (from ... ok 389s test_builtin_with_bad_settings (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_builtin_with_bad_settings) 389s fulldefault: django-admin builtin commands fail if settings file (from ... ok 389s test_builtin_with_environment (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_builtin_with_environment) 389s fulldefault: django-admin builtin commands succeed if the environment ... ok 389s test_builtin_with_settings (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_builtin_with_settings) 389s fulldefault: django-admin builtin commands succeed if a settings file ... ok 389s test_custom_command (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_custom_command) 389s fulldefault: django-admin can't execute user commands unless settings ... ok 389s test_custom_command_with_environment (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_custom_command_with_environment) 389s fulldefault: django-admin can execute user commands if settings are ... ok 389s test_custom_command_with_settings (admin_scripts.tests.DjangoAdminFullPathDefaultSettings.test_custom_command_with_settings) 389s fulldefault: django-admin can execute user commands if settings are ... ok 390s test_builtin_command (admin_scripts.tests.DjangoAdminMinimalSettings.test_builtin_command) 390s minimal: django-admin builtin commands fail with an error when no ... ok 390s test_builtin_with_bad_environment (admin_scripts.tests.DjangoAdminMinimalSettings.test_builtin_with_bad_environment) 390s minimal: django-admin builtin commands fail if settings file (from ... ok 390s test_builtin_with_bad_settings (admin_scripts.tests.DjangoAdminMinimalSettings.test_builtin_with_bad_settings) 390s minimal: django-admin builtin commands fail if settings file (from ... ok 390s test_builtin_with_environment (admin_scripts.tests.DjangoAdminMinimalSettings.test_builtin_with_environment) 390s minimal: django-admin builtin commands fail if settings are provided in ... ok 390s test_builtin_with_settings (admin_scripts.tests.DjangoAdminMinimalSettings.test_builtin_with_settings) 390s minimal: django-admin builtin commands fail if settings are provided as ... ok 390s test_custom_command (admin_scripts.tests.DjangoAdminMinimalSettings.test_custom_command) 390s minimal: django-admin can't execute user commands unless settings are provided ... ok 390s test_custom_command_with_environment (admin_scripts.tests.DjangoAdminMinimalSettings.test_custom_command_with_environment) 390s minimal: django-admin can't execute user commands, even if settings are ... ok 390s test_custom_command_with_settings (admin_scripts.tests.DjangoAdminMinimalSettings.test_custom_command_with_settings) 390s minimal: django-admin can't execute user commands, even if settings are ... ok 391s test_builtin_command (admin_scripts.tests.DjangoAdminNoSettings.test_builtin_command) 391s no settings: django-admin builtin commands fail with an error when no ... ok 391s test_builtin_with_bad_environment (admin_scripts.tests.DjangoAdminNoSettings.test_builtin_with_bad_environment) 391s no settings: django-admin builtin commands fail if settings file (from ... ok 391s test_builtin_with_bad_settings (admin_scripts.tests.DjangoAdminNoSettings.test_builtin_with_bad_settings) 391s no settings: django-admin builtin commands fail if settings file (from ... ok 391s test_commands_with_invalid_settings (admin_scripts.tests.DjangoAdminNoSettings.test_commands_with_invalid_settings) 391s Commands that don't require settings succeed if the settings file ... ok 391s test_builtin_command (admin_scripts.tests.DjangoAdminMultipleSettings.test_builtin_command) 391s alternate: django-admin builtin commands fail with an error when no ... ok 391s test_builtin_with_bad_environment (admin_scripts.tests.DjangoAdminMultipleSettings.test_builtin_with_bad_environment) 391s alternate: django-admin builtin commands fail if settings file (from ... ok 391s test_builtin_with_bad_settings (admin_scripts.tests.DjangoAdminMultipleSettings.test_builtin_with_bad_settings) 391s alternate: django-admin builtin commands fail if settings file (from ... ok 391s test_builtin_with_environment (admin_scripts.tests.DjangoAdminMultipleSettings.test_builtin_with_environment) 391s alternate: django-admin builtin commands succeed if settings are ... ok 391s test_builtin_with_settings (admin_scripts.tests.DjangoAdminMultipleSettings.test_builtin_with_settings) 391s alternate: django-admin builtin commands succeed if settings are ... ok 391s test_custom_command (admin_scripts.tests.DjangoAdminMultipleSettings.test_custom_command) 391s alternate: django-admin can't execute user commands unless settings are ... ok 391s test_custom_command_with_environment (admin_scripts.tests.DjangoAdminMultipleSettings.test_custom_command_with_environment) 391s alternate: django-admin can execute user commands if settings are ... ok 391s test_custom_command_with_settings (admin_scripts.tests.DjangoAdminMultipleSettings.test_custom_command_with_settings) 391s alternate: django-admin can execute user commands if settings are ... ok 392s test_no_suggestions (admin_scripts.tests.DjangoAdminSuggestions.test_no_suggestions) ... ok 392s test_suggestions (admin_scripts.tests.DjangoAdminSuggestions.test_suggestions) ... ok 392s test_pks_parsing (admin_scripts.tests.Dumpdata.test_pks_parsing) 392s Regression for #20509 ... ok 392s test_program_name_from_argv (admin_scripts.tests.ExecuteFromCommandLine.test_program_name_from_argv) 392s Program name is computed from the execute_from_command_line()'s argv ... ok 393s test_program_name_in_help (admin_scripts.tests.MainModule.test_program_name_in_help) ... ok 394s test_builtin_command (admin_scripts.tests.DjangoAdminSettingsDirectory.test_builtin_command) 394s directory: django-admin builtin commands fail with an error when no ... ok 394s test_builtin_with_bad_environment (admin_scripts.tests.DjangoAdminSettingsDirectory.test_builtin_with_bad_environment) 394s directory: django-admin builtin commands fail if settings file (from ... ok 394s test_builtin_with_bad_settings (admin_scripts.tests.DjangoAdminSettingsDirectory.test_builtin_with_bad_settings) 394s directory: django-admin builtin commands fail if settings file (from ... ok 394s test_builtin_with_environment (admin_scripts.tests.DjangoAdminSettingsDirectory.test_builtin_with_environment) 394s directory: django-admin builtin commands succeed if settings are ... ok 394s test_builtin_with_settings (admin_scripts.tests.DjangoAdminSettingsDirectory.test_builtin_with_settings) 394s directory: django-admin builtin commands succeed if settings are ... ok 394s test_custom_command (admin_scripts.tests.DjangoAdminSettingsDirectory.test_custom_command) 394s directory: django-admin can't execute user commands unless settings are ... ok 394s test_setup_environ (admin_scripts.tests.DjangoAdminSettingsDirectory.test_setup_environ) 394s directory: startapp creates the correct directory ... ok 394s test_setup_environ_custom_template (admin_scripts.tests.DjangoAdminSettingsDirectory.test_setup_environ_custom_template) 394s directory: startapp creates the correct directory with a custom template ... ok 394s test_startapp_unicode_name (admin_scripts.tests.DjangoAdminSettingsDirectory.test_startapp_unicode_name) 394s startapp creates the correct directory with Unicode characters. ... ok 395s test_builtin_command (admin_scripts.tests.ManageAlternateSettings.test_builtin_command) 395s alternate: manage.py builtin commands fail with an error when no ... ok 395s test_builtin_with_bad_environment (admin_scripts.tests.ManageAlternateSettings.test_builtin_with_bad_environment) 395s alternate: manage.py builtin commands fail if settings file (from ... ok 395s test_builtin_with_bad_settings (admin_scripts.tests.ManageAlternateSettings.test_builtin_with_bad_settings) 395s alternate: manage.py builtin commands fail if settings file (from ... ok 395s test_builtin_with_environment (admin_scripts.tests.ManageAlternateSettings.test_builtin_with_environment) 395s alternate: manage.py builtin commands work if settings are provided in ... ok 395s test_builtin_with_settings (admin_scripts.tests.ManageAlternateSettings.test_builtin_with_settings) 395s alternate: manage.py builtin commands work with settings provided as argument ... ok 395s test_custom_command (admin_scripts.tests.ManageAlternateSettings.test_custom_command) 395s alternate: manage.py can't execute user commands without settings ... ok 395s test_custom_command_output_color (admin_scripts.tests.ManageAlternateSettings.test_custom_command_output_color) 395s alternate: manage.py output syntax color can be deactivated with the ... ok 395s test_custom_command_with_environment (admin_scripts.tests.ManageAlternateSettings.test_custom_command_with_environment) 395s alternate: manage.py can execute user commands if settings are provided ... ok 395s test_custom_command_with_settings (admin_scripts.tests.ManageAlternateSettings.test_custom_command_with_settings) 395s alternate: manage.py can execute user commands if settings are provided ... ok 395s test_app_with_import (admin_scripts.tests.ManageCheck.test_app_with_import) 395s manage.py check does not raise errors when an app imports a base ... ok 395s test_broken_app (admin_scripts.tests.ManageCheck.test_broken_app) 395s manage.py check reports an ImportError if an app's models.py ... ok 395s test_complex_app (admin_scripts.tests.ManageCheck.test_complex_app) 395s manage.py check does not raise an ImportError validating a ... ok 395s test_nonexistent_app (admin_scripts.tests.ManageCheck.test_nonexistent_app) 395s check reports an error on a nonexistent app in INSTALLED_APPS. ... ok 395s test_output_format (admin_scripts.tests.ManageCheck.test_output_format) 395s All errors/warnings should be sorted by level and by message. ... ok 395s test_warning_does_not_halt (admin_scripts.tests.ManageCheck.test_warning_does_not_halt) 395s When there are only warnings or less serious messages, then Django ... ok 398s test_builtin_command (admin_scripts.tests.ManageDefaultSettings.test_builtin_command) 398s default: manage.py builtin commands succeed when default settings are ... ok 398s test_builtin_with_bad_environment (admin_scripts.tests.ManageDefaultSettings.test_builtin_with_bad_environment) 398s default: manage.py builtin commands fail if settings file (from ... ok 398s test_builtin_with_bad_settings (admin_scripts.tests.ManageDefaultSettings.test_builtin_with_bad_settings) 398s default: manage.py builtin commands succeed if settings file (from ... ok 398s test_builtin_with_environment (admin_scripts.tests.ManageDefaultSettings.test_builtin_with_environment) 398s default: manage.py builtin commands succeed if settings are provided in ... ok 398s test_builtin_with_settings (admin_scripts.tests.ManageDefaultSettings.test_builtin_with_settings) 398s default: manage.py builtin commands succeed if settings are provided as ... ok 398s test_custom_command (admin_scripts.tests.ManageDefaultSettings.test_custom_command) 398s default: manage.py can execute user commands when default settings are ... ok 398s test_custom_command_with_environment (admin_scripts.tests.ManageDefaultSettings.test_custom_command_with_environment) 398s default: manage.py can execute user commands when settings are provided ... ok 398s test_custom_command_with_settings (admin_scripts.tests.ManageDefaultSettings.test_custom_command_with_settings) 398s default: manage.py can execute user commands when settings are provided ... ok 398s test_builtin_command (admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_command) 398s fulldefault: manage.py builtin commands succeed when default settings ... ok 398s test_builtin_with_bad_environment (admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_with_bad_environment) 398s fulldefault: manage.py builtin commands fail if settings file (from ... ok 398s test_builtin_with_bad_settings (admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_with_bad_settings) 398s fulldefault: manage.py builtin commands succeed if settings file (from ... ok 398s test_builtin_with_environment (admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_with_environment) 398s fulldefault: manage.py builtin commands succeed if settings are ... ok 398s test_builtin_with_settings (admin_scripts.tests.ManageFullPathDefaultSettings.test_builtin_with_settings) 398s fulldefault: manage.py builtin commands succeed if settings are ... ok 398s test_custom_command (admin_scripts.tests.ManageFullPathDefaultSettings.test_custom_command) 398s fulldefault: manage.py can execute user commands when default settings ... ok 398s test_custom_command_with_environment (admin_scripts.tests.ManageFullPathDefaultSettings.test_custom_command_with_environment) 398s fulldefault: manage.py can execute user commands when settings are ... ok 398s test_custom_command_with_settings (admin_scripts.tests.ManageFullPathDefaultSettings.test_custom_command_with_settings) 398s fulldefault: manage.py can execute user commands when settings are ... ok 398s test_non_existent_command_output (admin_scripts.tests.ManageManuallyConfiguredSettings.test_non_existent_command_output) ... ok 400s test_builtin_command (admin_scripts.tests.ManageMinimalSettings.test_builtin_command) 400s minimal: manage.py builtin commands fail with an error when no settings ... ok 400s test_builtin_with_bad_environment (admin_scripts.tests.ManageMinimalSettings.test_builtin_with_bad_environment) 400s minimal: manage.py builtin commands fail if settings file (from ... ok 400s test_builtin_with_bad_settings (admin_scripts.tests.ManageMinimalSettings.test_builtin_with_bad_settings) 400s minimal: manage.py builtin commands fail if settings file (from ... ok 400s test_builtin_with_environment (admin_scripts.tests.ManageMinimalSettings.test_builtin_with_environment) 400s minimal: manage.py builtin commands fail if settings are provided in ... ok 400s test_builtin_with_settings (admin_scripts.tests.ManageMinimalSettings.test_builtin_with_settings) 400s minimal: manage.py builtin commands fail if settings are provided as argument ... ok 400s test_custom_command (admin_scripts.tests.ManageMinimalSettings.test_custom_command) 400s minimal: manage.py can't execute user commands without appropriate settings ... ok 400s test_custom_command_with_environment (admin_scripts.tests.ManageMinimalSettings.test_custom_command_with_environment) 400s minimal: manage.py can't execute user commands, even if settings are ... ok 400s test_custom_command_with_settings (admin_scripts.tests.ManageMinimalSettings.test_custom_command_with_settings) 400s minimal: manage.py can't execute user commands, even if settings are ... ok 400s test_builtin_command (admin_scripts.tests.ManageMultipleSettings.test_builtin_command) 400s multiple: manage.py builtin commands fail with an error when no ... ok 400s test_builtin_with_bad_environment (admin_scripts.tests.ManageMultipleSettings.test_builtin_with_bad_environment) 400s multiple: manage.py builtin commands fail if settings file (from ... ok 400s test_builtin_with_bad_settings (admin_scripts.tests.ManageMultipleSettings.test_builtin_with_bad_settings) 400s multiple: manage.py builtin commands fail if settings file (from ... ok 400s test_builtin_with_environment (admin_scripts.tests.ManageMultipleSettings.test_builtin_with_environment) 400s multiple: manage.py can execute builtin commands if settings are ... ok 400s test_builtin_with_settings (admin_scripts.tests.ManageMultipleSettings.test_builtin_with_settings) 400s multiple: manage.py builtin commands succeed if settings are provided ... ok 400s test_custom_command (admin_scripts.tests.ManageMultipleSettings.test_custom_command) 400s multiple: manage.py can't execute user commands using default settings ... ok 400s test_custom_command_with_environment (admin_scripts.tests.ManageMultipleSettings.test_custom_command_with_environment) 400s multiple: manage.py can execute user commands if settings are provided ... ok 400s test_custom_command_with_settings (admin_scripts.tests.ManageMultipleSettings.test_custom_command_with_settings) 400s multiple: manage.py can execute user commands if settings are provided ... ok 400s test_no_database (admin_scripts.tests.ManageRunserver.test_no_database) 400s Ensure runserver.check_migrations doesn't choke on empty DATABASES. ... ok 400s test_on_bind (admin_scripts.tests.ManageRunserver.test_on_bind) ... ok 400s test_readonly_database (admin_scripts.tests.ManageRunserver.test_readonly_database) 400s runserver.check_migrations() doesn't choke when a database is read-only. ... ok 400s test_runner_addrport_ipv6 (admin_scripts.tests.ManageRunserver.test_runner_addrport_ipv6) ... ok 400s test_runner_ambiguous (admin_scripts.tests.ManageRunserver.test_runner_ambiguous) ... ok 400s test_runner_custom_defaults (admin_scripts.tests.ManageRunserver.test_runner_custom_defaults) ... ok 400s test_runner_custom_defaults_ipv6 (admin_scripts.tests.ManageRunserver.test_runner_custom_defaults_ipv6) ... ok 400s test_runner_hostname (admin_scripts.tests.ManageRunserver.test_runner_hostname) ... ok 400s test_runner_hostname_ipv6 (admin_scripts.tests.ManageRunserver.test_runner_hostname_ipv6) ... ok 400s test_runserver_addrport (admin_scripts.tests.ManageRunserver.test_runserver_addrport) ... ok 400s test_skip_checks (admin_scripts.tests.ManageRunserver.test_skip_checks) ... ok 400s test_zero_ip_addr (admin_scripts.tests.ManageRunserver.test_zero_ip_addr) ... ok 401s test_empty_allowed_hosts_error (admin_scripts.tests.ManageRunserverEmptyAllowedHosts.test_empty_allowed_hosts_error) ... ok 401s test_builtin_command (admin_scripts.tests.ManageNoSettings.test_builtin_command) 401s no settings: manage.py builtin commands fail with an error when no ... ok 401s test_builtin_with_bad_environment (admin_scripts.tests.ManageNoSettings.test_builtin_with_bad_environment) 401s no settings: manage.py builtin commands fail if settings file (from ... ok 401s test_builtin_with_bad_settings (admin_scripts.tests.ManageNoSettings.test_builtin_with_bad_settings) 401s no settings: manage.py builtin commands fail if settings file (from ... ok 401s test_suppressed_options (admin_scripts.tests.ManageRunserverHelpOutput.test_suppressed_options) 401s runserver doesn't support --verbosity and --trackback options. ... ok 401s test_params_to_runserver (admin_scripts.tests.ManageTestserver.test_params_to_runserver) ... ok 401s test_testserver_handle_params (admin_scripts.tests.ManageTestserver.test_testserver_handle_params) ... ok 402s test_attribute_error (admin_scripts.tests.ManageSettingsWithSettingsErrors.test_attribute_error) 402s manage.py builtin commands does not swallow attribute error due to bad ... ok 402s test_help (admin_scripts.tests.ManageSettingsWithSettingsErrors.test_help) 402s Test listing available commands output note when only core commands are ... ok 402s test_import_error (admin_scripts.tests.ManageSettingsWithSettingsErrors.test_import_error) 402s import error: manage.py builtin commands shows useful diagnostic info ... ok 402s test_key_error (admin_scripts.tests.ManageSettingsWithSettingsErrors.test_key_error) ... ok 403s test_importable_name (admin_scripts.tests.StartApp.test_importable_name) 403s startapp validates that app name doesn't clash with existing Python ... ok 403s test_importable_target_name (admin_scripts.tests.StartApp.test_importable_target_name) ... ok 403s test_invalid_name (admin_scripts.tests.StartApp.test_invalid_name) 403s startapp validates that app name is a valid Python identifier. ... ok 403s test_invalid_target_name (admin_scripts.tests.StartApp.test_invalid_target_name) ... ok 403s test_overlaying_app (admin_scripts.tests.StartApp.test_overlaying_app) ... ok 403s test_template (admin_scripts.tests.StartApp.test_template) ... ok 403s test_trailing_slash_in_target_app_directory_name (admin_scripts.tests.StartApp.test_trailing_slash_in_target_app_directory_name) ... ok 403s test_all (test_runner.test_discover_runner.DiscoverRunnerGetDatabasesTests.test_all) ... ok 403s test_default_and_other (test_runner.test_discover_runner.DiscoverRunnerGetDatabasesTests.test_default_and_other) ... ok 403s test_default_only (test_runner.test_discover_runner.DiscoverRunnerGetDatabasesTests.test_default_only) ... ok 403s test_mixed (test_runner.test_discover_runner.DiscoverRunnerGetDatabasesTests.test_mixed) ... ok 403s test_no_databases_required (test_runner.test_discover_runner.DiscoverRunnerGetDatabasesTests.test_no_databases_required) ... ok 403s test_other_only (test_runner.test_discover_runner.DiscoverRunnerGetDatabasesTests.test_other_only) ... ok 403s test_serialize (test_runner.test_discover_runner.DiscoverRunnerGetDatabasesTests.test_serialize) ... ok 404s test_get_max_test_processes (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_get_max_test_processes) ... ok 404s test_get_max_test_processes_env_var (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_get_max_test_processes_env_var) ... ok 404s test_get_max_test_processes_forkserver (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_get_max_test_processes_forkserver) ... ok 404s test_get_max_test_processes_spawn (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_get_max_test_processes_spawn) ... ok 404s test_parallel_auto (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_parallel_auto) ... ok 404s test_parallel_count (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_parallel_count) ... ok 404s test_parallel_default (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_parallel_default) ... ok 404s test_parallel_flag (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_parallel_flag) ... ok 404s test_parallel_invalid (test_runner.test_discover_runner.DiscoverRunnerParallelArgumentTests.test_parallel_invalid) ... ok 404s test_add_arguments_debug_mode (test_runner.test_discover_runner.DiscoverRunnerTests.test_add_arguments_debug_mode) ... ok 404s test_add_arguments_shuffle (test_runner.test_discover_runner.DiscoverRunnerTests.test_add_arguments_shuffle) ... ok 404s test_buffer_mode_test_fail (test_runner.test_discover_runner.DiscoverRunnerTests.test_buffer_mode_test_fail) ... ok 404s test_buffer_mode_test_pass (test_runner.test_discover_runner.DiscoverRunnerTests.test_buffer_mode_test_pass) ... ok 404s test_build_suite_failed_tests_first (test_runner.test_discover_runner.DiscoverRunnerTests.test_build_suite_failed_tests_first) ... ok 404s test_build_suite_shuffling (test_runner.test_discover_runner.DiscoverRunnerTests.test_build_suite_shuffling) ... ok 404s test_discovery_on_package (test_runner.test_discover_runner.DiscoverRunnerTests.test_discovery_on_package) ... ok 404s test_dotted_test_class_django_testcase (test_runner.test_discover_runner.DiscoverRunnerTests.test_dotted_test_class_django_testcase) ... ok 404s test_dotted_test_class_vanilla_unittest (test_runner.test_discover_runner.DiscoverRunnerTests.test_dotted_test_class_vanilla_unittest) ... ok 404s test_dotted_test_method_django_testcase (test_runner.test_discover_runner.DiscoverRunnerTests.test_dotted_test_method_django_testcase) ... ok 404s test_dotted_test_module (test_runner.test_discover_runner.DiscoverRunnerTests.test_dotted_test_module) ... ok 404s test_duplicates_ignored (test_runner.test_discover_runner.DiscoverRunnerTests.test_duplicates_ignored) 404s Tests shouldn't be discovered twice when discovering on overlapping paths. ... ok 404s test_empty_label (test_runner.test_discover_runner.DiscoverRunnerTests.test_empty_label) 404s If the test label is empty, discovery should happen on the current ... ok 404s test_empty_test_case (test_runner.test_discover_runner.DiscoverRunnerTests.test_empty_test_case) ... ok 404s test_exclude_tags (test_runner.test_discover_runner.DiscoverRunnerTests.test_exclude_tags) ... ok 404s test_excluded_tags_displayed (test_runner.test_discover_runner.DiscoverRunnerTests.test_excluded_tags_displayed) ... ok 404s test_faulthandler_already_enabled (test_runner.test_discover_runner.DiscoverRunnerTests.test_faulthandler_already_enabled) ... ok 404s test_faulthandler_disabled (test_runner.test_discover_runner.DiscoverRunnerTests.test_faulthandler_disabled) ... ok 404s test_faulthandler_enabled (test_runner.test_discover_runner.DiscoverRunnerTests.test_faulthandler_enabled) ... ok 404s test_faulthandler_enabled_fileno (test_runner.test_discover_runner.DiscoverRunnerTests.test_faulthandler_enabled_fileno) ... ok 404s test_file_path (test_runner.test_discover_runner.DiscoverRunnerTests.test_file_path) ... ok 404s test_ignore_adjacent (test_runner.test_discover_runner.DiscoverRunnerTests.test_ignore_adjacent) 404s When given a dotted path to a module, unittest discovery searches ... ok 404s test_included_tags_displayed (test_runner.test_discover_runner.DiscoverRunnerTests.test_included_tags_displayed) ... ok 404s test_init_debug_mode (test_runner.test_discover_runner.DiscoverRunnerTests.test_init_debug_mode) ... ok 404s test_load_tests_for_label_file_path (test_runner.test_discover_runner.DiscoverRunnerTests.test_load_tests_for_label_file_path) ... ok 404s test_loader_patterns_not_mutated (test_runner.test_discover_runner.DiscoverRunnerTests.test_loader_patterns_not_mutated) ... ok 404s test_loader_patterns_not_mutated_when_test_label_is_file_path (test_runner.test_discover_runner.DiscoverRunnerTests.test_loader_patterns_not_mutated_when_test_label_is_file_path) ... ok 404s test_log (test_runner.test_discover_runner.DiscoverRunnerTests.test_log) ... ok 404s test_log_logger (test_runner.test_discover_runner.DiscoverRunnerTests.test_log_logger) ... ok 404s test_name_patterns (test_runner.test_discover_runner.DiscoverRunnerTests.test_name_patterns) ... ok 404s test_number_of_databases_no_parallel_test_suite (test_runner.test_discover_runner.DiscoverRunnerTests.test_number_of_databases_no_parallel_test_suite) 404s Number of databases doesn't exceed the number of TestCases with ... ok 404s test_number_of_databases_parallel_test_suite (test_runner.test_discover_runner.DiscoverRunnerTests.test_number_of_databases_parallel_test_suite) 404s Number of databases doesn't exceed the number of TestCases with ... ok 404s test_number_of_parallel_workers (test_runner.test_discover_runner.DiscoverRunnerTests.test_number_of_parallel_workers) 404s Number of processes doesn't exceed the number of TestCases. ... ok 404s test_number_of_tests_found_displayed (test_runner.test_discover_runner.DiscoverRunnerTests.test_number_of_tests_found_displayed) ... ok 404s test_overridable_get_test_runner_kwargs (test_runner.test_discover_runner.DiscoverRunnerTests.test_overridable_get_test_runner_kwargs) ... ok 404s test_overridable_test_loader (test_runner.test_discover_runner.DiscoverRunnerTests.test_overridable_test_loader) ... ok 404s test_overridable_test_runner (test_runner.test_discover_runner.DiscoverRunnerTests.test_overridable_test_runner) ... ok 404s test_overridable_test_suite (test_runner.test_discover_runner.DiscoverRunnerTests.test_overridable_test_suite) ... ok 404s test_pattern (test_runner.test_discover_runner.DiscoverRunnerTests.test_pattern) ... ok 404s test_pdb_with_parallel (test_runner.test_discover_runner.DiscoverRunnerTests.test_pdb_with_parallel) ... ok 404s test_reverse (test_runner.test_discover_runner.DiscoverRunnerTests.test_reverse) 404s Reverse should reorder tests while maintaining the grouping specified ... ok 404s test_run_suite_logs_seed (test_runner.test_discover_runner.DiscoverRunnerTests.test_run_suite_logs_seed) ... ok 404s test_run_suite_logs_seed_exception (test_runner.test_discover_runner.DiscoverRunnerTests.test_run_suite_logs_seed_exception) 404s run_suite() logs the seed when TestRunner.run() raises an exception. ... ok 404s test_setup_shuffler_no_shuffle_argument (test_runner.test_discover_runner.DiscoverRunnerTests.test_setup_shuffler_no_shuffle_argument) ... ok 404s test_setup_shuffler_shuffle_int (test_runner.test_discover_runner.DiscoverRunnerTests.test_setup_shuffler_shuffle_int) ... ok 404s test_setup_shuffler_shuffle_none (test_runner.test_discover_runner.DiscoverRunnerTests.test_setup_shuffler_shuffle_none) ... ok 404s test_suite_result_with_failure (test_runner.test_discover_runner.DiscoverRunnerTests.test_suite_result_with_failure) ... ok 404s test_tag_fail_to_load (test_runner.test_discover_runner.DiscoverRunnerTests.test_tag_fail_to_load) ... ok 404s test_tag_inheritance (test_runner.test_discover_runner.DiscoverRunnerTests.test_tag_inheritance) ... ok 404s test_tags (test_runner.test_discover_runner.DiscoverRunnerTests.test_tags) ... ok 404s test_testcase_ordering (test_runner.test_discover_runner.DiscoverRunnerTests.test_testcase_ordering) ... ok 404s test_timings_captured (test_runner.test_discover_runner.DiscoverRunnerTests.test_timings_captured) ... ok 404s test_timings_not_captured (test_runner.test_discover_runner.DiscoverRunnerTests.test_timings_not_captured) ... ok 404s test_subtest (test_runner.test_parallel.ParallelTestRunnerTest.test_subtest) 404s Passing subtests work. ... ok 404s test_add_failing_subtests (test_runner.test_parallel.RemoteTestResultTest.test_add_failing_subtests) 404s Failing subtests are added correctly using addSubTest(). ... ok 404s test_picklable (test_runner.test_parallel.RemoteTestResultTest.test_picklable) ... ok 404s test_pickle_errors_detection (test_runner.test_parallel.RemoteTestResultTest.test_pickle_errors_detection) ... ok 404s test_was_successful_no_events (test_runner.test_parallel.RemoteTestResultTest.test_was_successful_no_events) ... ok 404s test_was_successful_one_error (test_runner.test_parallel.RemoteTestResultTest.test_was_successful_one_error) ... ok 404s test_was_successful_one_expected_failure (test_runner.test_parallel.RemoteTestResultTest.test_was_successful_one_expected_failure) ... ok 404s test_was_successful_one_failure (test_runner.test_parallel.RemoteTestResultTest.test_was_successful_one_failure) ... ok 404s test_was_successful_one_skip (test_runner.test_parallel.RemoteTestResultTest.test_was_successful_one_skip) ... ok 404s test_was_successful_one_success (test_runner.test_parallel.RemoteTestResultTest.test_was_successful_one_success) ... ok 404s test_hash_item_key (test_runner.test_shuffler.ShufflerTests.test_hash_item_key) ... ok 404s test_hash_item_seed (test_runner.test_shuffler.ShufflerTests.test_hash_item_seed) ... ok 404s test_hash_text (test_runner.test_shuffler.ShufflerTests.test_hash_text) ... ok 404s test_hash_text_hash_algorithm (test_runner.test_shuffler.ShufflerTests.test_hash_text_hash_algorithm) ... ok 404s test_init (test_runner.test_shuffler.ShufflerTests.test_init) ... ok 404s test_init_no_seed_argument (test_runner.test_shuffler.ShufflerTests.test_init_no_seed_argument) ... ok 404s test_init_none_seed (test_runner.test_shuffler.ShufflerTests.test_init_none_seed) ... ok 404s test_seed_display (test_runner.test_shuffler.ShufflerTests.test_seed_display) ... ok 404s test_shuffle_consistency (test_runner.test_shuffler.ShufflerTests.test_shuffle_consistency) ... ok 404s test_shuffle_key (test_runner.test_shuffler.ShufflerTests.test_shuffle_key) ... ok 404s test_shuffle_same_hash (test_runner.test_shuffler.ShufflerTests.test_shuffle_same_hash) ... ok 404s test_autoincrement_reset1 (test_runner.tests.AutoIncrementResetTest.test_autoincrement_reset1) ... ok 404s test_autoincrement_reset2 (test_runner.tests.AutoIncrementResetTest.test_autoincrement_reset2) ... ok 406s test_no_testrunner (test_runner.tests.CustomTestRunnerOptionsCmdlineTests.test_no_testrunner) ... ok 406s test_testrunner_equals (test_runner.tests.CustomTestRunnerOptionsCmdlineTests.test_testrunner_equals) ... ok 406s test_testrunner_option (test_runner.tests.CustomTestRunnerOptionsCmdlineTests.test_testrunner_option) ... ok 407s test_all_options_given (test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_all_options_given) ... ok 407s test_default_and_given_options (test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_default_and_given_options) ... ok 407s test_default_options (test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_default_options) ... ok 407s test_option_name_and_value_separated (test_runner.tests.CustomTestRunnerOptionsSettingsTests.test_option_name_and_value_separated) ... ok 408s test_extra_tests_build_suite (test_runner.tests.DiscoverRunnerExtraTestsDeprecationTests.test_extra_tests_build_suite) ... ok 408s test_extra_tests_run_tests (test_runner.tests.DiscoverRunnerExtraTestsDeprecationTests.test_extra_tests_run_tests) ... ok 408s test_django_test_processes_env_non_int (test_runner.tests.ManageCommandParallelTests.test_django_test_processes_env_non_int) ... ok 408s test_django_test_processes_parallel_default (test_runner.tests.ManageCommandParallelTests.test_django_test_processes_parallel_default) ... ok 408s test_no_parallel (test_runner.tests.ManageCommandParallelTests.test_no_parallel) ... ok 408s test_no_parallel_django_test_processes_env (test_runner.tests.ManageCommandParallelTests.test_no_parallel_django_test_processes_env) ... ok 408s test_no_parallel_spawn (test_runner.tests.ManageCommandParallelTests.test_no_parallel_spawn) ... ok 408s test_parallel_auto (test_runner.tests.ManageCommandParallelTests.test_parallel_auto) ... ok 408s test_parallel_default (test_runner.tests.ManageCommandParallelTests.test_parallel_default) ... ok 408s test_parallel_spawn (test_runner.tests.ManageCommandParallelTests.test_parallel_spawn) ... ok 408s test_no_initialize_suite_test_runner (test_runner.tests.NoInitializeSuiteTestRunnerTests.test_no_initialize_suite_test_runner) 408s The test suite's initialize_suite() method must always be called when ... ok 408s test_transaction_support (test_runner.tests.SQLiteInMemoryTestDbs.test_transaction_support) ... ok 408s test_destroy_test_db_restores_db_name (test_runner.tests.SetupDatabasesTests.test_destroy_test_db_restores_db_name) ... ok 408s test_serialization (test_runner.tests.SetupDatabasesTests.test_serialization) ... ok 408s test_serialized_off (test_runner.tests.SetupDatabasesTests.test_serialized_off) ... ok 408s test_setup_aliased_databases (test_runner.tests.SetupDatabasesTests.test_setup_aliased_databases) ... ok 408s test_setup_test_database_aliases (test_runner.tests.SetupDatabasesTests.test_setup_test_database_aliases) 408s The default database must be the first because data migrations ... ok 408s test_no_initialize_suite_test_runner (test_runner.tests.TestRunnerInitializerTests.test_no_initialize_suite_test_runner) ... ok 408s test_iter_test_cases_basic (test_runner.tests.TestSuiteTests.test_iter_test_cases_basic) ... ok 408s test_iter_test_cases_custom_test_suite_class (test_runner.tests.TestSuiteTests.test_iter_test_cases_custom_test_suite_class) ... ok 408s test_iter_test_cases_iterable_of_tests (test_runner.tests.TestSuiteTests.test_iter_test_cases_iterable_of_tests) ... ok 408s test_iter_test_cases_mixed_test_suite_classes (test_runner.tests.TestSuiteTests.test_iter_test_cases_mixed_test_suite_classes) ... ok 408s test_iter_test_cases_string_input (test_runner.tests.TestSuiteTests.test_iter_test_cases_string_input) ... ok 408s test_reorder_test_bin_no_arguments (test_runner.tests.TestSuiteTests.test_reorder_test_bin_no_arguments) ... ok 408s test_reorder_test_bin_random (test_runner.tests.TestSuiteTests.test_reorder_test_bin_random) ... ok 408s test_reorder_test_bin_random_and_reverse (test_runner.tests.TestSuiteTests.test_reorder_test_bin_random_and_reverse) ... ok 408s test_reorder_test_bin_reverse (test_runner.tests.TestSuiteTests.test_reorder_test_bin_reverse) ... ok 408s test_reorder_tests_random (test_runner.tests.TestSuiteTests.test_reorder_tests_random) ... ok 408s test_reorder_tests_random_mixed_classes (test_runner.tests.TestSuiteTests.test_reorder_tests_random_mixed_classes) ... ok 408s test_reorder_tests_reverse_with_duplicates (test_runner.tests.TestSuiteTests.test_reorder_tests_reverse_with_duplicates) ... ok 408s test_reorder_tests_same_type_consecutive (test_runner.tests.TestSuiteTests.test_reorder_tests_same_type_consecutive) 408s Tests of the same type are made consecutive. ... ok 408s test_shuffle_tests (test_runner.tests.TestSuiteTests.test_shuffle_tests) ... ok 409s test_ticket_17477 (test_runner.tests.Ticket17477RegressionTests.test_ticket_17477) 409s 'manage.py help test' works after r16352. ... ok 409s test_init_without_lockfile (test_utils.test_serializemixin.TestSerializeMixin.test_init_without_lockfile) ... ok 409s test_usage (test_utils.test_serializemixin.TestSerializeMixinUse.test_usage) ... ok 409s test_debug_bubbles_error (test_utils.test_simpletestcase.DebugInvocationTests.test_debug_bubbles_error) 409s debug() bubbles up exceptions before cleanup. ... ok 409s test_debug_bubbles_post_teardown_error (test_utils.test_simpletestcase.DebugInvocationTests.test_debug_bubbles_post_teardown_error) 409s debug() bubbles up exceptions during _post_teardown. ... ok 409s test_debug_bubbles_pre_setup_error (test_utils.test_simpletestcase.DebugInvocationTests.test_debug_bubbles_pre_setup_error) 409s debug() bubbles up exceptions during _pre_setup. ... ok 409s test_debug_cleanup (test_utils.test_simpletestcase.DebugInvocationTests.test_debug_cleanup) 409s Simple debug run without errors. ... ok 409s test_debug_skipped_test_no_cleanup (test_utils.test_simpletestcase.DebugInvocationTests.test_debug_skipped_test_no_cleanup) ... ok 409s test_run_cleanup (test_utils.test_simpletestcase.DebugInvocationTests.test_run_cleanup) 409s Simple test run: catches errors and runs cleanup. ... ok 409s test_run_post_teardown_error (test_utils.test_simpletestcase.DebugInvocationTests.test_run_post_teardown_error) ... ok 409s test_run_pre_setup_error (test_utils.test_simpletestcase.DebugInvocationTests.test_run_pre_setup_error) ... ok 409s test_run_skipped_test_no_cleanup (test_utils.test_simpletestcase.DebugInvocationTests.test_run_skipped_test_no_cleanup) ... ok 409s test_disallowed_database_queries (test_utils.test_transactiontestcase.DisallowedDatabaseQueriesTests.test_disallowed_database_queries) ... ok 409s test (test_utils.test_transactiontestcase.TestSerializedRollbackInhibitsPostMigrate.test) ... ok 409s test_allowed_database_chunked_cursor_queries (test_utils.tests.AllowedDatabaseQueriesTests.test_allowed_database_chunked_cursor_queries) ... ok 409s test_allowed_database_queries (test_utils.tests.AllowedDatabaseQueriesTests.test_allowed_database_queries) ... ok 409s test_assert_field_output (test_utils.tests.AssertFieldOutputTests.test_assert_field_output) ... ok 409s test_custom_required_message (test_utils.tests.AssertFieldOutputTests.test_custom_required_message) ... ok 409s test_assert_form_error_errors_none (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_form_error_errors_none) ... ok 409s test_assert_form_error_errors_none_warning (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_form_error_errors_none_warning) ... ok 409s test_assert_form_error_old_api (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_form_error_old_api) ... ok 409s test_assert_form_error_old_api_assertion_error (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_form_error_old_api_assertion_error) ... ok 409s test_assert_formset_error_errors_none (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_formset_error_errors_none) ... ok 409s test_assert_formset_error_errors_none_warning (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_formset_error_errors_none_warning) ... ok 409s test_assert_formset_error_old_api (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_formset_error_old_api) ... ok 409s test_assert_formset_error_old_api_assertion_error (test_utils.tests.AssertFormErrorDeprecationTests.test_assert_formset_error_old_api_assertion_error) ... ok 409s test_different_non_field_errors (test_utils.tests.AssertFormErrorTests.test_different_non_field_errors) ... ok 409s test_empty_errors_invalid_form (test_utils.tests.AssertFormErrorTests.test_empty_errors_invalid_form) ... ok 409s test_empty_errors_valid_form (test_utils.tests.AssertFormErrorTests.test_empty_errors_valid_form) ... ok 409s test_empty_errors_valid_form_non_field_errors (test_utils.tests.AssertFormErrorTests.test_empty_errors_valid_form_non_field_errors) ... ok 409s test_error_list (test_utils.tests.AssertFormErrorTests.test_error_list) ... ok 409s test_field_not_in_form (test_utils.tests.AssertFormErrorTests.test_field_not_in_form) ... ok 409s test_field_with_different_error (test_utils.tests.AssertFormErrorTests.test_field_with_different_error) ... ok 409s test_field_with_no_errors (test_utils.tests.AssertFormErrorTests.test_field_with_no_errors) ... ok 409s test_form_not_in_context (test_utils.tests.AssertFormErrorTests.test_form_not_in_context) ... ok 409s test_non_client_response (test_utils.tests.AssertFormErrorTests.test_non_client_response) ... ok 409s test_non_field_errors (test_utils.tests.AssertFormErrorTests.test_non_field_errors) ... ok 409s test_response_with_no_context (test_utils.tests.AssertFormErrorTests.test_response_with_no_context) ... ok 409s test_single_error (test_utils.tests.AssertFormErrorTests.test_single_error) ... ok 409s test_unbound_form (test_utils.tests.AssertFormErrorTests.test_unbound_form) ... ok 409s test_deprecated_assertformseterror (test_utils.tests.AssertFormSetErrorTests.test_deprecated_assertformseterror) ... ok 409s test_different_non_field_errors (test_utils.tests.AssertFormSetErrorTests.test_different_non_field_errors) ... ok 409s test_different_non_form_errors (test_utils.tests.AssertFormSetErrorTests.test_different_non_form_errors) ... ok 409s test_empty_errors_invalid_formset (test_utils.tests.AssertFormSetErrorTests.test_empty_errors_invalid_formset) ... ok 409s test_empty_errors_valid_formset (test_utils.tests.AssertFormSetErrorTests.test_empty_errors_valid_formset) ... ok 409s test_error_list (test_utils.tests.AssertFormSetErrorTests.test_error_list) ... ok 409s test_field_not_in_form (test_utils.tests.AssertFormSetErrorTests.test_field_not_in_form) ... ok 409s test_field_with_different_error (test_utils.tests.AssertFormSetErrorTests.test_field_with_different_error) ... ok 409s test_field_with_no_errors (test_utils.tests.AssertFormSetErrorTests.test_field_with_no_errors) ... ok 409s test_form_index_too_big (test_utils.tests.AssertFormSetErrorTests.test_form_index_too_big) ... ok 409s test_form_index_too_big_plural (test_utils.tests.AssertFormSetErrorTests.test_form_index_too_big_plural) ... ok 409s test_formset_not_in_context (test_utils.tests.AssertFormSetErrorTests.test_formset_not_in_context) ... ok 409s test_multiple_forms (test_utils.tests.AssertFormSetErrorTests.test_multiple_forms) ... ok 409s test_no_non_field_errors (test_utils.tests.AssertFormSetErrorTests.test_no_non_field_errors) ... ok 409s test_no_non_form_errors (test_utils.tests.AssertFormSetErrorTests.test_no_non_form_errors) ... ok 409s test_non_client_response (test_utils.tests.AssertFormSetErrorTests.test_non_client_response) ... ok 409s test_non_field_errors (test_utils.tests.AssertFormSetErrorTests.test_non_field_errors) ... ok 409s test_non_form_errors (test_utils.tests.AssertFormSetErrorTests.test_non_form_errors) ... ok 409s test_non_form_errors_with_field (test_utils.tests.AssertFormSetErrorTests.test_non_form_errors_with_field) ... ok 409s test_rename_assertformseterror_deprecation_warning (test_utils.tests.AssertFormSetErrorTests.test_rename_assertformseterror_deprecation_warning) ... ok 409s test_response_with_no_context (test_utils.tests.AssertFormSetErrorTests.test_response_with_no_context) ... ok 409s test_single_error (test_utils.tests.AssertFormSetErrorTests.test_single_error) ... ok 409s test_unbound_formset (test_utils.tests.AssertFormSetErrorTests.test_unbound_formset) ... ok 409s test_default_level (test_utils.tests.AssertNoLogsTest.test_default_level) ... ok 409s test_does_not_hide_other_failures (test_utils.tests.AssertNoLogsTest.test_does_not_hide_other_failures) ... ok 409s test_fails_when_log_emitted (test_utils.tests.AssertNoLogsTest.test_fails_when_log_emitted) ... ok 409s test_int_level (test_utils.tests.AssertNoLogsTest.test_int_level) ... ok 409s test_text_level (test_utils.tests.AssertNoLogsTest.test_text_level) ... ok 409s test_ignores_connection_configuration_queries (test_utils.tests.AssertNumQueriesUponConnectionTests.test_ignores_connection_configuration_queries) ... skipped 'For SQLite in-memory tests, closing the connection destroysthe database.' 409s test_custom_project_destination_missing (admin_scripts.tests.StartProject.test_custom_project_destination_missing) 409s Make sure an exception is raised when the provided ... ok 409s test_custom_project_template (admin_scripts.tests.StartProject.test_custom_project_template) 409s The startproject management command is able to use a different project ... ok 409s test_custom_project_template_context_variables (admin_scripts.tests.StartProject.test_custom_project_template_context_variables) 409s Make sure template context variables are rendered with proper values ... ok 409s test_custom_project_template_exclude_directory (admin_scripts.tests.StartProject.test_custom_project_template_exclude_directory) 409s Excluded directories (in addition to .git and __pycache__) are not ... ok 409s test_custom_project_template_from_tarball_by_path (admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_by_path) 409s The startproject management command is able to use a different project ... ok 409s test_custom_project_template_from_tarball_by_url (admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_by_url) 409s The startproject management command is able to use a different project ... ok 409s test_custom_project_template_from_tarball_by_url_django_user_agent (admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_by_url_django_user_agent) ... ok 409s test_custom_project_template_from_tarball_to_alternative_location (admin_scripts.tests.StartProject.test_custom_project_template_from_tarball_to_alternative_location) 409s Startproject can use a project template from a tarball and create it in ... ok 409s test_custom_project_template_hidden_directory_default_excluded (admin_scripts.tests.StartProject.test_custom_project_template_hidden_directory_default_excluded) 409s Hidden directories are excluded by default. ... ok 409s test_custom_project_template_hidden_directory_included (admin_scripts.tests.StartProject.test_custom_project_template_hidden_directory_included) 409s Template context variables in hidden directories are rendered, if not ... ok 409s test_custom_project_template_non_python_files_not_formatted (admin_scripts.tests.StartProject.test_custom_project_template_non_python_files_not_formatted) ... ok 409s test_custom_project_template_with_non_ascii_templates (admin_scripts.tests.StartProject.test_custom_project_template_with_non_ascii_templates) 409s The startproject management command is able to render templates with ... ok 409s test_file_without_extension (admin_scripts.tests.StartProject.test_file_without_extension) 409s Make sure the startproject management command is able to render custom files ... ok 409s test_honor_umask (admin_scripts.tests.StartProject.test_honor_umask) ... ok 409s test_importable_project_name (admin_scripts.tests.StartProject.test_importable_project_name) 409s startproject validates that project name doesn't clash with existing ... ok 409s test_invalid_project_name (admin_scripts.tests.StartProject.test_invalid_project_name) 409s Make sure the startproject management command validates a project name ... ok 409s test_no_escaping_of_project_variables (admin_scripts.tests.StartProject.test_no_escaping_of_project_variables) 409s Make sure template context variables are not html escaped ... ok 409s test_project_template_tarball_url (admin_scripts.tests.StartProject.test_project_template_tarball_url) 409s " ... ok 409s test_simple_project (admin_scripts.tests.StartProject.test_simple_project) 409s Make sure the startproject management command creates a project ... ok 409s test_simple_project_different_directory (admin_scripts.tests.StartProject.test_simple_project_different_directory) 409s The startproject management command creates a project in a specific ... ok 409s test_template_dir_with_trailing_slash (admin_scripts.tests.StartProject.test_template_dir_with_trailing_slash) 409s Ticket 17475: Template dir passed has a trailing path separator ... ok 409s test_wrong_args (admin_scripts.tests.StartProject.test_wrong_args) 409s Passing the wrong kinds of arguments outputs an error and prints usage. ... ok 409s test_assert_raises_message (test_utils.tests.AssertRaisesMsgTest.test_assert_raises_message) ... ok 409s test_special_re_chars (test_utils.tests.AssertRaisesMsgTest.test_special_re_chars) 409s assertRaisesMessage shouldn't interpret RE special chars. ... ok 409s test_assert_used_on_http_response (test_utils.tests.AssertTemplateUsedContextManagerTests.test_assert_used_on_http_response) ... ok 409s test_count (test_utils.tests.AssertTemplateUsedContextManagerTests.test_count) ... ok 409s test_error_message (test_utils.tests.AssertTemplateUsedContextManagerTests.test_error_message) ... ok 409s test_failure (test_utils.tests.AssertTemplateUsedContextManagerTests.test_failure) ... ok 409s test_msg_prefix (test_utils.tests.AssertTemplateUsedContextManagerTests.test_msg_prefix) ... ok 409s test_nested_usage (test_utils.tests.AssertTemplateUsedContextManagerTests.test_nested_usage) ... ok 409s test_not_used (test_utils.tests.AssertTemplateUsedContextManagerTests.test_not_used) ... ok 409s test_usage (test_utils.tests.AssertTemplateUsedContextManagerTests.test_usage) ... ok 410s test_equal (test_utils.tests.AssertURLEqualTests.test_equal) ... ok 410s test_message (test_utils.tests.AssertURLEqualTests.test_message) ... ok 410s test_msg_prefix (test_utils.tests.AssertURLEqualTests.test_msg_prefix) ... ok 410s test_not_equal (test_utils.tests.AssertURLEqualTests.test_not_equal) ... ok 410s test_callable (test_utils.tests.AssertWarnsMessageTests.test_callable) ... ok 410s test_context_manager (test_utils.tests.AssertWarnsMessageTests.test_context_manager) ... ok 410s test_context_manager_failure (test_utils.tests.AssertWarnsMessageTests.test_context_manager_failure) ... ok 410s test_special_re_chars (test_utils.tests.AssertWarnsMessageTests.test_special_re_chars) ... ok 410s test_all (test_utils.tests.DatabaseAliasTests.test_all) ... ok 410s test_close_match (test_utils.tests.DatabaseAliasTests.test_close_match) ... ok 410s test_match (test_utils.tests.DatabaseAliasTests.test_match) ... ok 410s test_no_close_match (test_utils.tests.DatabaseAliasTests.test_no_close_match) ... ok 410s test_disallowed_database_chunked_cursor_queries (test_utils.tests.DisallowedDatabaseQueriesTests.test_disallowed_database_chunked_cursor_queries) ... ok 410s test_disallowed_database_connections (test_utils.tests.DisallowedDatabaseQueriesTests.test_disallowed_database_connections) ... ok 410s test_disallowed_database_queries (test_utils.tests.DisallowedDatabaseQueriesTests.test_disallowed_database_queries) ... ok 410s test_attributes (test_utils.tests.HTMLEqualTests.test_attributes) ... ok 410s test_boolean_attribute (test_utils.tests.HTMLEqualTests.test_boolean_attribute) ... ok 410s test_class_attribute (test_utils.tests.HTMLEqualTests.test_class_attribute) ... ok 410s test_complex_examples (test_utils.tests.HTMLEqualTests.test_complex_examples) ... ok 410s test_contains_html (test_utils.tests.HTMLEqualTests.test_contains_html) ... ok 410s test_count (test_utils.tests.HTMLEqualTests.test_count) ... ok 410s test_escaped_html_errors (test_utils.tests.HTMLEqualTests.test_escaped_html_errors) ... ok 410s test_html_contain (test_utils.tests.HTMLEqualTests.test_html_contain) ... ok 410s test_html_parser (test_utils.tests.HTMLEqualTests.test_html_parser) ... ok 410s test_ignore_comments (test_utils.tests.HTMLEqualTests.test_ignore_comments) ... ok 410s test_non_boolean_attibutes (test_utils.tests.HTMLEqualTests.test_non_boolean_attibutes) ... ok 410s test_normalize_refs (test_utils.tests.HTMLEqualTests.test_normalize_refs) ... ok 410s test_parse_html_in_script (test_utils.tests.HTMLEqualTests.test_parse_html_in_script) ... ok 410s test_parsing_errors (test_utils.tests.HTMLEqualTests.test_parsing_errors) ... ok 410s test_root_element_escaped_html (test_utils.tests.HTMLEqualTests.test_root_element_escaped_html) ... ok 410s test_self_closing_tags (test_utils.tests.HTMLEqualTests.test_self_closing_tags) ... ok 410s test_simple_equal_html (test_utils.tests.HTMLEqualTests.test_simple_equal_html) ... ok 410s test_unequal_html (test_utils.tests.HTMLEqualTests.test_unequal_html) ... ok 410s test_unicode_handling (test_utils.tests.HTMLEqualTests.test_unicode_handling) ... ok 410s test_class_decoration (test_utils.tests.IsolatedAppsTests.test_class_decoration) ... ok 410s test_context_manager (test_utils.tests.IsolatedAppsTests.test_context_manager) ... ok 410s test_installed_apps (test_utils.tests.IsolatedAppsTests.test_installed_apps) ... ok 410s test_method_decoration (test_utils.tests.IsolatedAppsTests.test_method_decoration) ... ok 410s test_nested (test_utils.tests.IsolatedAppsTests.test_nested) ... ok 410s test_equal_parsing_errors (test_utils.tests.JSONEqualTests.test_equal_parsing_errors) ... ok 410s test_not_equal_parsing_errors (test_utils.tests.JSONEqualTests.test_not_equal_parsing_errors) ... ok 410s test_simple_equal (test_utils.tests.JSONEqualTests.test_simple_equal) ... ok 410s test_simple_equal_raise (test_utils.tests.JSONEqualTests.test_simple_equal_raise) ... ok 410s test_simple_equal_unordered (test_utils.tests.JSONEqualTests.test_simple_equal_unordered) ... ok 410s test_simple_not_equal (test_utils.tests.JSONEqualTests.test_simple_not_equal) ... ok 410s test_simple_not_equal_raise (test_utils.tests.JSONEqualTests.test_simple_not_equal_raise) ... ok 410s test_override_database_routers (test_utils.tests.OverrideSettingsTests.test_override_database_routers) 410s Overriding DATABASE_ROUTERS should update the base router. ... ok 410s test_override_file_upload_directory_permissions (test_utils.tests.OverrideSettingsTests.test_override_file_upload_directory_permissions) 410s Overriding the FILE_UPLOAD_DIRECTORY_PERMISSIONS setting should be ... ok 410s test_override_file_upload_permissions (test_utils.tests.OverrideSettingsTests.test_override_file_upload_permissions) 410s Overriding the FILE_UPLOAD_PERMISSIONS setting should be reflected in ... ok 410s test_override_media_root (test_utils.tests.OverrideSettingsTests.test_override_media_root) 410s Overriding the MEDIA_ROOT setting should be reflected in the ... ok 410s test_override_media_url (test_utils.tests.OverrideSettingsTests.test_override_media_url) 410s Overriding the MEDIA_URL setting should be reflected in the ... ok 410s test_override_static_root (test_utils.tests.OverrideSettingsTests.test_override_static_root) 410s Overriding the STATIC_ROOT setting should be reflected in the ... ok 410s test_override_static_url (test_utils.tests.OverrideSettingsTests.test_override_static_url) 410s Overriding the STATIC_URL setting should be reflected in the ... ok 410s test_override_staticfiles_dirs (test_utils.tests.OverrideSettingsTests.test_override_staticfiles_dirs) 410s Overriding the STATICFILES_DIRS setting should be reflected in ... ok 410s test_override_staticfiles_finders (test_utils.tests.OverrideSettingsTests.test_override_staticfiles_finders) 410s Overriding the STATICFILES_FINDERS setting should be reflected in ... ok 410s test_override_staticfiles_storage (test_utils.tests.OverrideSettingsTests.test_override_staticfiles_storage) 410s Overriding the STORAGES setting should be reflected in ... ok 410s test_urlconf_cache (test_utils.tests.OverrideSettingsTests.test_urlconf_cache) ... ok 410s test_urlconf_first (test_utils.tests.OverrideSettingsTests.test_urlconf_first) ... ok 410s test_urlconf_second (test_utils.tests.OverrideSettingsTests.test_urlconf_second) ... ok 410s test_skip_if_db_feature (test_utils.tests.SkippingTestCase.test_skip_if_db_feature) 410s Testing the django.test.skipIfDBFeature decorator. ... ok 410s test_skip_unless_db_feature (test_utils.tests.SkippingTestCase.test_skip_unless_db_feature) 410s Testing the django.test.skipUnlessDBFeature decorator. ... ok 410s test_allowed_hosts (test_utils.tests.SetupTestEnvironmentTests.test_allowed_hosts) ... ok 410s test_setup_test_environment_calling_more_than_once (test_utils.tests.SetupTestEnvironmentTests.test_setup_test_environment_calling_more_than_once) ... ok 410s test_cleanups_run_after_tearDown (test_utils.tests.TestContextDecoratorTests.test_cleanups_run_after_tearDown) ... ok 410s test_exception_in_setup (test_utils.tests.TestContextDecoratorTests.test_exception_in_setup) 410s An exception is setUp() is reraised after disable() is called. ... ok 410s test_comment_root (test_utils.tests.XMLEqualTests.test_comment_root) ... ok 410s test_doctype_root (test_utils.tests.XMLEqualTests.test_doctype_root) ... ok 410s test_parsing_errors (test_utils.tests.XMLEqualTests.test_parsing_errors) ... ok 410s test_processing_instruction (test_utils.tests.XMLEqualTests.test_processing_instruction) ... ok 410s test_simple_equal (test_utils.tests.XMLEqualTests.test_simple_equal) ... ok 410s test_simple_equal_raise (test_utils.tests.XMLEqualTests.test_simple_equal_raise) ... ok 410s test_simple_equal_raises_message (test_utils.tests.XMLEqualTests.test_simple_equal_raises_message) ... ok 410s test_simple_equal_unordered (test_utils.tests.XMLEqualTests.test_simple_equal_unordered) ... ok 410s test_simple_equal_with_leading_or_trailing_whitespace (test_utils.tests.XMLEqualTests.test_simple_equal_with_leading_or_trailing_whitespace) ... ok 410s test_simple_not_equal (test_utils.tests.XMLEqualTests.test_simple_not_equal) ... ok 410s test_simple_not_equal_raise (test_utils.tests.XMLEqualTests.test_simple_not_equal_raise) ... ok 410s test_simple_not_equal_with_whitespace_in_the_middle (test_utils.tests.XMLEqualTests.test_simple_not_equal_with_whitespace_in_the_middle) ... ok 410s test_str (urlpatterns.test_resolvers.RegexPatternTests.test_str) ... ok 410s test_resolver_cache_default__root_urlconf (urlpatterns.test_resolvers.ResolverCacheTests.test_resolver_cache_default__root_urlconf) ... ok 410s test_str (urlpatterns.test_resolvers.RoutePatternTests.test_str) ... ok 410s test_resolve_type_error_propagates (urlpatterns.tests.ConversionExceptionTests.test_resolve_type_error_propagates) ... ok 410s test_resolve_value_error_means_no_match (urlpatterns.tests.ConversionExceptionTests.test_resolve_value_error_means_no_match) ... ok 410s test_reverse_type_error_propagates (urlpatterns.tests.ConversionExceptionTests.test_reverse_type_error_propagates) ... ok 410s test_reverse_value_error_means_no_match (urlpatterns.tests.ConversionExceptionTests.test_reverse_value_error_means_no_match) ... ok 410s test_matching_urls (urlpatterns.tests.ConverterTests.test_matching_urls) ... ok 410s test_nonmatching_urls (urlpatterns.tests.ConverterTests.test_nonmatching_urls) ... ok 410s test_allows_non_ascii_but_valid_identifiers (urlpatterns.tests.ParameterRestrictionTests.test_allows_non_ascii_but_valid_identifiers) ... ok 410s test_integer_parameter_name_causes_exception (urlpatterns.tests.ParameterRestrictionTests.test_integer_parameter_name_causes_exception) ... ok 410s test_non_identifier_parameter_name_causes_exception (urlpatterns.tests.ParameterRestrictionTests.test_non_identifier_parameter_name_causes_exception) ... ok 410s test_matching_urls_same_name (urlpatterns.tests.SameNameTests.test_matching_urls_same_name) ... ok 410s test_converter_resolve (urlpatterns.tests.SimplifiedURLTests.test_converter_resolve) ... ok 410s test_converter_reverse (urlpatterns.tests.SimplifiedURLTests.test_converter_reverse) ... ok 410s test_converter_reverse_with_second_layer_instance_namespace (urlpatterns.tests.SimplifiedURLTests.test_converter_reverse_with_second_layer_instance_namespace) ... ok 410s test_invalid_converter (urlpatterns.tests.SimplifiedURLTests.test_invalid_converter) ... ok 410s test_invalid_kwargs (urlpatterns.tests.SimplifiedURLTests.test_invalid_kwargs) ... ok 410s test_invalid_view (urlpatterns.tests.SimplifiedURLTests.test_invalid_view) ... ok 410s test_invalid_view_instance (urlpatterns.tests.SimplifiedURLTests.test_invalid_view_instance) ... ok 410s test_path_inclusion_is_matchable (urlpatterns.tests.SimplifiedURLTests.test_path_inclusion_is_matchable) ... ok 410s test_path_inclusion_is_reversible (urlpatterns.tests.SimplifiedURLTests.test_path_inclusion_is_reversible) ... ok 410s test_path_lookup_with_double_inclusion (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_with_double_inclusion) ... ok 410s test_path_lookup_with_empty_string_inclusion (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_with_empty_string_inclusion) ... ok 410s test_path_lookup_with_extra_kwarg (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_with_extra_kwarg) ... ok 410s test_path_lookup_with_inclusion (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_with_inclusion) ... ok 410s test_path_lookup_with_multiple_parameters (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_with_multiple_parameters) ... ok 410s test_path_lookup_with_multiple_parameters_and_extra_kwarg (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_with_multiple_parameters_and_extra_kwarg) ... ok 410s test_path_lookup_with_typed_parameters (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_with_typed_parameters) ... ok 410s test_path_lookup_without_parameters (urlpatterns.tests.SimplifiedURLTests.test_path_lookup_without_parameters) ... ok 410s test_path_reverse_with_parameter (urlpatterns.tests.SimplifiedURLTests.test_path_reverse_with_parameter) ... ok 410s test_path_reverse_without_parameter (urlpatterns.tests.SimplifiedURLTests.test_path_reverse_without_parameter) ... ok 410s test_path_trailing_newlines (urlpatterns.tests.SimplifiedURLTests.test_path_trailing_newlines) ... ok 410s test_re_path (urlpatterns.tests.SimplifiedURLTests.test_re_path) ... ok 410s test_re_path_with_missing_optional_parameter (urlpatterns.tests.SimplifiedURLTests.test_re_path_with_missing_optional_parameter) ... ok 410s test_re_path_with_optional_parameter (urlpatterns.tests.SimplifiedURLTests.test_re_path_with_optional_parameter) ... ok 410s test_two_variable_at_start_of_path_pattern (urlpatterns.tests.SimplifiedURLTests.test_two_variable_at_start_of_path_pattern) ... ok 410s test_whitespace_in_route (urlpatterns.tests.SimplifiedURLTests.test_whitespace_in_route) ... ok 410s test_configure (settings_tests.tests.IsOverriddenTest.test_configure) ... ok 410s test_evaluated_lazysettings_repr (settings_tests.tests.IsOverriddenTest.test_evaluated_lazysettings_repr) ... ok 410s test_module (settings_tests.tests.IsOverriddenTest.test_module) ... ok 410s test_override (settings_tests.tests.IsOverriddenTest.test_override) ... ok 410s test_settings_repr (settings_tests.tests.IsOverriddenTest.test_settings_repr) ... ok 410s test_unevaluated_lazysettings_repr (settings_tests.tests.IsOverriddenTest.test_unevaluated_lazysettings_repr) ... ok 410s test_usersettingsholder_repr (settings_tests.tests.IsOverriddenTest.test_usersettingsholder_repr) ... ok 410s test_decorated_testcase_module (settings_tests.tests.FullyDecoratedTranTestCase.test_decorated_testcase_module) ... ok 410s test_decorated_testcase_name (settings_tests.tests.FullyDecoratedTranTestCase.test_decorated_testcase_name) ... ok 410s test_method_list_override (settings_tests.tests.FullyDecoratedTranTestCase.test_method_list_override) ... ok 410s test_method_list_override_nested_order (settings_tests.tests.FullyDecoratedTranTestCase.test_method_list_override_nested_order) ... ok 410s test_method_list_override_no_ops (settings_tests.tests.FullyDecoratedTranTestCase.test_method_list_override_no_ops) ... ok 410s test_method_list_override_strings (settings_tests.tests.FullyDecoratedTranTestCase.test_method_list_override_strings) ... ok 410s test_method_override (settings_tests.tests.FullyDecoratedTranTestCase.test_method_override) ... ok 410s test_override (settings_tests.tests.FullyDecoratedTranTestCase.test_override) ... ok 410s test_add_script_name_prefix (settings_tests.tests.MediaURLStaticURLPrefixTest.test_add_script_name_prefix) ... ok 410s test_not_prefixed (settings_tests.tests.MediaURLStaticURLPrefixTest.test_not_prefixed) ... ok 410s test_none (settings_tests.tests.SecureProxySslHeaderTest.test_none) ... ok 410s test_set_with_xheader_leftmost_not_secure (settings_tests.tests.SecureProxySslHeaderTest.test_set_with_xheader_leftmost_not_secure) ... ok 410s test_set_with_xheader_leftmost_right (settings_tests.tests.SecureProxySslHeaderTest.test_set_with_xheader_leftmost_right) ... ok 410s test_set_with_xheader_multiple_not_secure (settings_tests.tests.SecureProxySslHeaderTest.test_set_with_xheader_multiple_not_secure) ... ok 410s test_set_with_xheader_right (settings_tests.tests.SecureProxySslHeaderTest.test_set_with_xheader_right) ... ok 410s test_set_with_xheader_wrong (settings_tests.tests.SecureProxySslHeaderTest.test_set_with_xheader_wrong) ... ok 410s test_set_without_xheader (settings_tests.tests.SecureProxySslHeaderTest.test_set_without_xheader) ... ok 410s test_xheader_preferred_to_underlying_request (settings_tests.tests.SecureProxySslHeaderTest.test_xheader_preferred_to_underlying_request) ... ok 410s test_override_settings_both (settings_tests.tests.OverrideSettingsIsolationOnExceptionTests.test_override_settings_both) 410s Receiver fails on both enter and exit. ... ok 410s test_override_settings_enter (settings_tests.tests.OverrideSettingsIsolationOnExceptionTests.test_override_settings_enter) 410s Receiver fails on enter only. ... ok 410s test_override_settings_exit (settings_tests.tests.OverrideSettingsIsolationOnExceptionTests.test_override_settings_exit) 410s Receiver fails on exit only. ... ok 410s test_override_settings_reusable_on_enter (settings_tests.tests.OverrideSettingsIsolationOnExceptionTests.test_override_settings_reusable_on_enter) 410s Error is raised correctly when reusing the same override_settings ... ok 410s test_already_configured (settings_tests.tests.SettingsTests.test_already_configured) ... ok 410s test_class_decorator (settings_tests.tests.SettingsTests.test_class_decorator) ... ok 410s test_context_manager (settings_tests.tests.SettingsTests.test_context_manager) ... ok 410s test_decorator (settings_tests.tests.SettingsTests.test_decorator) ... ok 410s test_incorrect_timezone (settings_tests.tests.SettingsTests.test_incorrect_timezone) ... ok 410s test_no_secret_key (settings_tests.tests.SettingsTests.test_no_secret_key) ... ok 410s test_no_settings_module (settings_tests.tests.SettingsTests.test_no_settings_module) ... ok 410s test_nonupper_settings_ignored_in_default_settings (settings_tests.tests.SettingsTests.test_nonupper_settings_ignored_in_default_settings) ... ok 410s test_nonupper_settings_prohibited_in_configure (settings_tests.tests.SettingsTests.test_nonupper_settings_prohibited_in_configure) ... ok 410s test_override (settings_tests.tests.SettingsTests.test_override) ... ok 410s test_override_change (settings_tests.tests.SettingsTests.test_override_change) ... ok 410s test_override_doesnt_leak (settings_tests.tests.SettingsTests.test_override_doesnt_leak) ... ok 410s test_override_settings_delete (settings_tests.tests.SettingsTests.test_override_settings_delete) 410s Allow deletion of a setting in an overridden settings set (#18824) ... ok 410s test_override_settings_nested (settings_tests.tests.SettingsTests.test_override_settings_nested) 410s override_settings uses the actual _wrapped attribute at ... ok 410s test_settings_delete (settings_tests.tests.SettingsTests.test_settings_delete) ... ok 410s test_settings_delete_wrapped (settings_tests.tests.SettingsTests.test_settings_delete_wrapped) ... ok 410s test_signal_callback_context_manager (settings_tests.tests.SettingsTests.test_signal_callback_context_manager) ... ok 410s test_signal_callback_decorator (settings_tests.tests.SettingsTests.test_signal_callback_decorator) ... ok 410s test_use_deprecated_pytz_deprecation (settings_tests.tests.SettingsTests.test_use_deprecated_pytz_deprecation) ... ok 410s test_use_tz_false_deprecation (settings_tests.tests.SettingsTests.test_use_tz_false_deprecation) ... ok 410s test_complex_override_warning (settings_tests.tests.TestComplexSettingOverride.test_complex_override_warning) 410s Regression test for #19031 ... ok 410s test_modelform_factory_metaclass (model_forms.tests.CustomMetaclassTestCase.test_modelform_factory_metaclass) ... ok 410s test_tuple_settings (settings_tests.tests.TestListSettings.test_tuple_settings) ... ok 410s test_bad_callback (model_forms.tests.FormFieldCallbackTests.test_bad_callback) ... ok 410s test_baseform_with_widgets_in_meta (model_forms.tests.FormFieldCallbackTests.test_baseform_with_widgets_in_meta) 410s Using base forms with widgets defined in Meta should not raise errors. ... ok 410s test_custom_callback (model_forms.tests.FormFieldCallbackTests.test_custom_callback) 410s A custom formfield_callback is used if provided ... ok 410s test_custom_callback_from_base_form_meta (model_forms.tests.FormFieldCallbackTests.test_custom_callback_from_base_form_meta) ... ok 410s test_custom_callback_in_meta (model_forms.tests.FormFieldCallbackTests.test_custom_callback_in_meta) ... ok 410s test_factory_with_widget_argument (model_forms.tests.FormFieldCallbackTests.test_factory_with_widget_argument) 410s Regression for #15315: modelform_factory should accept widgets ... ok 410s test_inherit_after_custom_callback (model_forms.tests.FormFieldCallbackTests.test_inherit_after_custom_callback) ... ok 410s test_modelform_factory_with_all_fields (model_forms.tests.FormFieldCallbackTests.test_modelform_factory_with_all_fields) 410s Regression for #19733 ... ok 410s test_modelform_factory_without_fields (model_forms.tests.FormFieldCallbackTests.test_modelform_factory_without_fields) 410s Regression for #19733 ... ok 410s test_field_removal (model_forms.tests.ModelFormInheritanceTests.test_field_removal) ... ok 410s test_field_removal_name_clashes (model_forms.tests.ModelFormInheritanceTests.test_field_removal_name_clashes) 410s Form fields can be removed in subclasses by setting them to None ... ok 410s test_form_subclass_inheritance (model_forms.tests.ModelFormInheritanceTests.test_form_subclass_inheritance) ... ok 410s test_custom_error_messages (model_forms.tests.ModelFormCustomErrorTests.test_custom_error_messages) ... ok 410s test_model_clean_error_messages (model_forms.tests.ModelFormCustomErrorTests.test_model_clean_error_messages) ... ok 410s test_big_integer_field (model_forms.tests.ModelOtherFieldTests.test_big_integer_field) ... ok 410s test_http_prefixing (model_forms.tests.ModelOtherFieldTests.test_http_prefixing) 410s If the http:// prefix is omitted on form input, the field adds it again. ... ok 410s test_modelform_non_editable_field (model_forms.tests.ModelOtherFieldTests.test_modelform_non_editable_field) 410s When explicitly including a non-editable field in a ModelForm, the ... ok 410s test_url_on_modelform (model_forms.tests.ModelOtherFieldTests.test_url_on_modelform) 410s Check basic URL field validation on model forms ... ok 410s test_setattr_raises_validation_error_field_specific (model_forms.tests.StrictAssignmentTests.test_setattr_raises_validation_error_field_specific) 410s A model ValidationError using the dict form should put the error ... ok 410s test_setattr_raises_validation_error_non_field (model_forms.tests.StrictAssignmentTests.test_setattr_raises_validation_error_non_field) 410s A model ValidationError not using the dict form should put the error ... ok 410s test_error_messages_overrides (model_forms.tests.TestFieldOverridesByFormMeta.test_error_messages_overrides) ... ok 410s test_field_type_overrides (model_forms.tests.TestFieldOverridesByFormMeta.test_field_type_overrides) ... ok 410s test_help_text_overrides (model_forms.tests.TestFieldOverridesByFormMeta.test_help_text_overrides) ... ok 410s test_label_overrides (model_forms.tests.TestFieldOverridesByFormMeta.test_label_overrides) ... ok 410s test_widget_overrides (model_forms.tests.TestFieldOverridesByFormMeta.test_widget_overrides) ... ok 410s test_notrequired_overrides_notblank (model_forms.tests.ValidationTest.test_notrequired_overrides_notblank) ... ok 410s test_validates_with_replaced_field_excluded (model_forms.tests.ValidationTest.test_validates_with_replaced_field_excluded) ... ok 410s test_validates_with_replaced_field_not_specified (model_forms.tests.ValidationTest.test_validates_with_replaced_field_not_specified) ... ok 410s test_empty_q_object (expressions_case.tests.CaseWhenTests.test_empty_q_object) ... ok 410s test_invalid_when_constructor_args (expressions_case.tests.CaseWhenTests.test_invalid_when_constructor_args) ... ok 410s test_only_when_arguments (expressions_case.tests.CaseWhenTests.test_only_when_arguments) ... ok 410s test_actions_warn_on_pending_edits (admin_changelist.tests.SeleniumTests.test_actions_warn_on_pending_edits) ... skipped 'No browsers specified.' 410s test_add_row_selection (admin_changelist.tests.SeleniumTests.test_add_row_selection) 410s The status line for selected rows gets updated correctly (#22038). ... skipped 'No browsers specified.' 410s test_collapse_filter_with_unescaped_title (admin_changelist.tests.SeleniumTests.test_collapse_filter_with_unescaped_title) ... skipped 'No browsers specified.' 410s test_collapse_filters (admin_changelist.tests.SeleniumTests.test_collapse_filters) ... skipped 'No browsers specified.' 410s test_modifier_allows_multiple_section (admin_changelist.tests.SeleniumTests.test_modifier_allows_multiple_section) 410s Selecting a row and then selecting another row whilst holding shift ... skipped 'No browsers specified.' 410s test_save_with_changes_warns_on_pending_action (admin_changelist.tests.SeleniumTests.test_save_with_changes_warns_on_pending_action) ... skipped 'No browsers specified.' 410s test_save_without_changes_warns_on_pending_action (admin_changelist.tests.SeleniumTests.test_save_without_changes_warns_on_pending_action) ... skipped 'No browsers specified.' 410s test_select_all_across_pages (admin_changelist.tests.SeleniumTests.test_select_all_across_pages) ... skipped 'No browsers specified.' 410s test_receiver_signal_list (dispatch.tests.ReceiverTestCase.test_receiver_signal_list) ... ok 410s test_receiver_single_signal (dispatch.tests.ReceiverTestCase.test_receiver_single_signal) ... ok 410s test_atomic_allows_queries_after_fixing_transaction (transactions.tests.AtomicErrorsTests.test_atomic_allows_queries_after_fixing_transaction) ... ok 410s test_atomic_prevents_calling_transaction_methods (transactions.tests.AtomicErrorsTests.test_atomic_prevents_calling_transaction_methods) ... ok 410s test_atomic_prevents_queries_in_broken_transaction (transactions.tests.AtomicErrorsTests.test_atomic_prevents_queries_in_broken_transaction) ... ok 410s test_atomic_prevents_queries_in_broken_transaction_after_client_close (transactions.tests.AtomicErrorsTests.test_atomic_prevents_queries_in_broken_transaction_after_client_close) ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 410s test_atomic_prevents_setting_autocommit (transactions.tests.AtomicErrorsTests.test_atomic_prevents_setting_autocommit) ... ok 411s test_alternate_decorator_syntax_commit (transactions.tests.AtomicInsideTransactionTests.test_alternate_decorator_syntax_commit) ... ok 411s test_alternate_decorator_syntax_rollback (transactions.tests.AtomicInsideTransactionTests.test_alternate_decorator_syntax_rollback) ... ok 411s test_commit (transactions.tests.AtomicInsideTransactionTests.test_commit) ... ok 411s test_decorator_syntax_commit (transactions.tests.AtomicInsideTransactionTests.test_decorator_syntax_commit) ... ok 411s test_decorator_syntax_rollback (transactions.tests.AtomicInsideTransactionTests.test_decorator_syntax_rollback) ... ok 411s test_failure_on_exit_transaction (transactions.tests.AtomicInsideTransactionTests.test_failure_on_exit_transaction) ... ok 411s test_force_rollback (transactions.tests.AtomicInsideTransactionTests.test_force_rollback) ... ok 411s test_merged_commit_commit (transactions.tests.AtomicInsideTransactionTests.test_merged_commit_commit) ... ok 411s test_merged_commit_rollback (transactions.tests.AtomicInsideTransactionTests.test_merged_commit_rollback) ... ok 411s test_merged_rollback_commit (transactions.tests.AtomicInsideTransactionTests.test_merged_rollback_commit) ... ok 411s test_merged_rollback_rollback (transactions.tests.AtomicInsideTransactionTests.test_merged_rollback_rollback) ... ok 411s test_nested_commit_commit (transactions.tests.AtomicInsideTransactionTests.test_nested_commit_commit) ... ok 411s test_nested_commit_rollback (transactions.tests.AtomicInsideTransactionTests.test_nested_commit_rollback) ... ok 411s test_nested_rollback_commit (transactions.tests.AtomicInsideTransactionTests.test_nested_rollback_commit) ... ok 411s test_nested_rollback_rollback (transactions.tests.AtomicInsideTransactionTests.test_nested_rollback_rollback) ... ok 411s test_prevent_rollback (transactions.tests.AtomicInsideTransactionTests.test_prevent_rollback) ... ok 411s test_reuse_commit_commit (transactions.tests.AtomicInsideTransactionTests.test_reuse_commit_commit) ... ok 411s test_reuse_commit_rollback (transactions.tests.AtomicInsideTransactionTests.test_reuse_commit_rollback) ... ok 411s test_reuse_rollback_commit (transactions.tests.AtomicInsideTransactionTests.test_reuse_rollback_commit) ... ok 411s test_reuse_rollback_rollback (transactions.tests.AtomicInsideTransactionTests.test_reuse_rollback_rollback) ... ok 411s test_rollback (transactions.tests.AtomicInsideTransactionTests.test_rollback) ... ok 411s test_merged_inner_savepoint_rollback (transactions.tests.AtomicMergeTests.test_merged_inner_savepoint_rollback) ... ok 411s test_merged_outer_rollback (transactions.tests.AtomicMergeTests.test_merged_outer_rollback) ... ok 411s test_atomic_does_not_leak_savepoints_on_failure (transactions.tests.AtomicMiscTests.test_atomic_does_not_leak_savepoints_on_failure) 411s #23074 -- Savepoints must be released after rollback. ... ok 411s test_mark_for_rollback_on_error_in_autocommit (transactions.tests.AtomicMiscTests.test_mark_for_rollback_on_error_in_autocommit) ... ok 411s test_mark_for_rollback_on_error_in_transaction (transactions.tests.AtomicMiscTests.test_mark_for_rollback_on_error_in_transaction) ... ok 411s test_wrap_callable_instance (transactions.tests.AtomicMiscTests.test_wrap_callable_instance) 411s #20028 -- Atomic must support wrapping callable instances. ... ok 411s test_implicit_savepoint_rollback (transactions.tests.AtomicMySQLTests.test_implicit_savepoint_rollback) 411s MySQL implicitly rolls back savepoints when it deadlocks (#22291). ... skipped 'MySQL-specific behaviors' 411s test_alternate_decorator_syntax_commit (transactions.tests.AtomicTests.test_alternate_decorator_syntax_commit) ... ok 411s test_alternate_decorator_syntax_rollback (transactions.tests.AtomicTests.test_alternate_decorator_syntax_rollback) ... ok 411s test_commit (transactions.tests.AtomicTests.test_commit) ... ok 411s test_decorator_syntax_commit (transactions.tests.AtomicTests.test_decorator_syntax_commit) ... ok 411s test_decorator_syntax_rollback (transactions.tests.AtomicTests.test_decorator_syntax_rollback) ... ok 411s test_failure_on_exit_transaction (transactions.tests.AtomicTests.test_failure_on_exit_transaction) ... ok 411s test_force_rollback (transactions.tests.AtomicTests.test_force_rollback) ... ok 411s test_merged_commit_commit (transactions.tests.AtomicTests.test_merged_commit_commit) ... ok 411s test_merged_commit_rollback (transactions.tests.AtomicTests.test_merged_commit_rollback) ... ok 411s test_merged_rollback_commit (transactions.tests.AtomicTests.test_merged_rollback_commit) ... ok 411s test_merged_rollback_rollback (transactions.tests.AtomicTests.test_merged_rollback_rollback) ... ok 411s test_nested_commit_commit (transactions.tests.AtomicTests.test_nested_commit_commit) ... ok 411s test_nested_commit_rollback (transactions.tests.AtomicTests.test_nested_commit_rollback) ... ok 411s test_nested_rollback_commit (transactions.tests.AtomicTests.test_nested_rollback_commit) ... ok 411s test_nested_rollback_rollback (transactions.tests.AtomicTests.test_nested_rollback_rollback) ... ok 411s test_prevent_rollback (transactions.tests.AtomicTests.test_prevent_rollback) ... ok 411s test_reuse_commit_commit (transactions.tests.AtomicTests.test_reuse_commit_commit) ... ok 411s test_reuse_commit_rollback (transactions.tests.AtomicTests.test_reuse_commit_rollback) ... ok 411s test_reuse_rollback_commit (transactions.tests.AtomicTests.test_reuse_rollback_commit) ... ok 411s test_reuse_rollback_rollback (transactions.tests.AtomicTests.test_reuse_rollback_rollback) ... ok 411s test_rollback (transactions.tests.AtomicTests.test_rollback) ... ok 411s test_alternate_decorator_syntax_commit (transactions.tests.AtomicWithoutAutocommitTests.test_alternate_decorator_syntax_commit) ... ok 411s test_alternate_decorator_syntax_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_alternate_decorator_syntax_rollback) ... ok 411s test_commit (transactions.tests.AtomicWithoutAutocommitTests.test_commit) ... ok 411s test_decorator_syntax_commit (transactions.tests.AtomicWithoutAutocommitTests.test_decorator_syntax_commit) ... ok 411s test_decorator_syntax_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_decorator_syntax_rollback) ... ok 411s test_failure_on_exit_transaction (transactions.tests.AtomicWithoutAutocommitTests.test_failure_on_exit_transaction) ... ok 411s test_force_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_force_rollback) ... ok 411s test_merged_commit_commit (transactions.tests.AtomicWithoutAutocommitTests.test_merged_commit_commit) ... ok 411s test_merged_commit_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_merged_commit_rollback) ... ok 411s test_merged_rollback_commit (transactions.tests.AtomicWithoutAutocommitTests.test_merged_rollback_commit) ... ok 411s test_merged_rollback_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_merged_rollback_rollback) ... ok 411s test_nested_commit_commit (transactions.tests.AtomicWithoutAutocommitTests.test_nested_commit_commit) ... ok 411s test_nested_commit_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_nested_commit_rollback) ... ok 411s test_nested_rollback_commit (transactions.tests.AtomicWithoutAutocommitTests.test_nested_rollback_commit) ... ok 411s test_nested_rollback_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_nested_rollback_rollback) ... ok 411s test_prevent_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_prevent_rollback) ... ok 411s test_reuse_commit_commit (transactions.tests.AtomicWithoutAutocommitTests.test_reuse_commit_commit) ... ok 411s test_reuse_commit_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_reuse_commit_rollback) ... ok 411s test_reuse_rollback_commit (transactions.tests.AtomicWithoutAutocommitTests.test_reuse_rollback_commit) ... ok 411s test_reuse_rollback_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_reuse_rollback_rollback) ... ok 411s test_rollback (transactions.tests.AtomicWithoutAutocommitTests.test_rollback) ... ok 412s test_commit (transactions.tests.DurableTransactionTests.test_commit) ... ok 412s test_nested_both_durable (transactions.tests.DurableTransactionTests.test_nested_both_durable) ... ok 412s test_nested_inner_durable (transactions.tests.DurableTransactionTests.test_nested_inner_durable) ... ok 412s test_nested_outer_durable (transactions.tests.DurableTransactionTests.test_nested_outer_durable) ... ok 412s test_sequence_of_durables (transactions.tests.DurableTransactionTests.test_sequence_of_durables) ... ok 412s test_orm_query_after_error_and_rollback (transactions.tests.NonAutocommitTests.test_orm_query_after_error_and_rollback) 412s ORM queries are allowed after an error and a rollback in non-autocommit ... ok 412s test_orm_query_without_autocommit (transactions.tests.NonAutocommitTests.test_orm_query_without_autocommit) 412s #24921 -- ORM queries must be possible after set_autocommit(False). ... ok 412s test_descriptor_class (field_subclassing.tests.DescriptorClassTest.test_descriptor_class) ... ok 412s test_db_parameters_respects_db_type (field_subclassing.tests.TestDbType.test_db_parameters_respects_db_type) ... ok 412s test_repr (admin_default_site.tests.AdminSiteTests.test_repr) ... ok 412s test_use_custom_admin_site (admin_default_site.tests.CustomAdminSiteTests.test_use_custom_admin_site) ... ok 412s test_repr (admin_default_site.tests.DefaultAdminSiteTests.test_repr) ... ok 412s test_use_default_admin_site (admin_default_site.tests.DefaultAdminSiteTests.test_use_default_admin_site) ... ok 412s test_javascript_escaping (admin_inlines.test_templates.TestTemplates.test_javascript_escaping) ... ok 412s test_add_inline_link_absent_for_view_only_parent_model (admin_inlines.tests.SeleniumTests.test_add_inline_link_absent_for_view_only_parent_model) ... skipped 'No browsers specified.' 412s test_add_inlines (admin_inlines.tests.SeleniumTests.test_add_inlines) 412s The "Add another XXX" link correctly adds items to the inline form. ... skipped 'No browsers specified.' 412s test_add_stackeds (admin_inlines.tests.SeleniumTests.test_add_stackeds) 412s The "Add another XXX" link correctly adds items to the stacked formset. ... skipped 'No browsers specified.' 412s test_added_stacked_inline_with_collapsed_fields (admin_inlines.tests.SeleniumTests.test_added_stacked_inline_with_collapsed_fields) ... skipped 'No browsers specified.' 412s test_collapsed_inlines (admin_inlines.tests.SeleniumTests.test_collapsed_inlines) ... skipped 'No browsers specified.' 412s test_delete_inlines (admin_inlines.tests.SeleniumTests.test_delete_inlines) ... skipped 'No browsers specified.' 412s test_delete_invalid_stacked_inlines (admin_inlines.tests.SeleniumTests.test_delete_invalid_stacked_inlines) ... skipped 'No browsers specified.' 412s test_delete_invalid_tabular_inlines (admin_inlines.tests.SeleniumTests.test_delete_invalid_tabular_inlines) ... skipped 'No browsers specified.' 412s test_delete_stackeds (admin_inlines.tests.SeleniumTests.test_delete_stackeds) ... skipped 'No browsers specified.' 412s test_inline_formset_error (admin_inlines.tests.SeleniumTests.test_inline_formset_error) ... skipped 'No browsers specified.' 412s test_inline_formset_error_input_border (admin_inlines.tests.SeleniumTests.test_inline_formset_error_input_border) ... skipped 'No browsers specified.' 412s test_inlines_verbose_name (admin_inlines.tests.SeleniumTests.test_inlines_verbose_name) 412s The item added by the "Add another XXX" link must use the correct ... skipped 'No browsers specified.' 412s test_description_output (admin_docs.test_utils.TestUtils.test_description_output) ... ok 412s test_initial_header_level (admin_docs.test_utils.TestUtils.test_initial_header_level) ... ok 412s test_parse_docstring (admin_docs.test_utils.TestUtils.test_parse_docstring) ... ok 412s test_parse_rst (admin_docs.test_utils.TestUtils.test_parse_rst) 412s parse_rst() should use `cmsreference` as the default role. ... ok 412s test_parse_rst_template_case_sensitive (admin_docs.test_utils.TestUtils.test_parse_rst_template_case_sensitive) ... ok 412s test_parse_rst_view_case_sensitive (admin_docs.test_utils.TestUtils.test_parse_rst_view_case_sensitive) ... ok 412s test_parse_rst_with_docstring_no_leading_line_feed (admin_docs.test_utils.TestUtils.test_parse_rst_with_docstring_no_leading_line_feed) ... ok 412s test_publish_parts (admin_docs.test_utils.TestUtils.test_publish_parts) 412s Django shouldn't break the default role for interpreted text ... ok 412s test_title_output (admin_docs.test_utils.TestUtils.test_title_output) ... ok 412s test_simplify_regex (admin_docs.test_views.AdminDocViewFunctionsTests.test_simplify_regex) ... ok 412s test_isinstance_of_autofield (model_fields.test_autofield.AutoFieldInheritanceTests.test_isinstance_of_autofield) ... ok 412s test_issubclass_of_autofield (model_fields.test_autofield.AutoFieldInheritanceTests.test_issubclass_of_autofield) ... ok 412s test_boolean_field_doesnt_accept_empty_input (model_fields.test_booleanfield.ValidationTest.test_boolean_field_doesnt_accept_empty_input) ... ok 412s test_nullbooleanfield_blank (model_fields.test_booleanfield.ValidationTest.test_nullbooleanfield_blank) 412s NullBooleanField shouldn't throw a validation error when given a value ... ok 412s test_deconstruct (model_fields.test_charfield.TestMethods.test_deconstruct) ... ok 412s test_charfield_cleans_empty_string_when_blank_true (model_fields.test_charfield.ValidationTests.test_charfield_cleans_empty_string_when_blank_true) ... ok 412s test_charfield_raises_error_on_empty_input (model_fields.test_charfield.ValidationTests.test_charfield_raises_error_on_empty_input) ... ok 412s test_charfield_raises_error_on_empty_string (model_fields.test_charfield.ValidationTests.test_charfield_raises_error_on_empty_string) ... ok 412s test_charfield_with_choices_cleans_valid_choice (model_fields.test_charfield.ValidationTests.test_charfield_with_choices_cleans_valid_choice) ... ok 412s test_charfield_with_choices_raises_error_on_invalid_choice (model_fields.test_charfield.ValidationTests.test_charfield_with_choices_raises_error_on_invalid_choice) ... ok 412s test_enum_choices_cleans_valid_string (model_fields.test_charfield.ValidationTests.test_enum_choices_cleans_valid_string) ... ok 412s test_enum_choices_invalid_input (model_fields.test_charfield.ValidationTests.test_enum_choices_invalid_input) ... ok 412s test_datefield_cleans_date (model_fields.test_datetimefield.ValidationTest.test_datefield_cleans_date) ... ok 412s test_formfield (model_fields.test_durationfield.TestFormField.test_formfield) ... ok 412s test_dumping (model_fields.test_durationfield.TestSerialization.test_dumping) ... ok 412s test_loading (model_fields.test_durationfield.TestSerialization.test_loading) ... ok 412s test_invalid_string (model_fields.test_durationfield.TestValidation.test_invalid_string) ... ok 412s test_all_field_types_should_have_flags (model_fields.test_field_flags.FieldFlagsTests.test_all_field_types_should_have_flags) ... ok 412s test_cardinality_m2m (model_fields.test_field_flags.FieldFlagsTests.test_cardinality_m2m) ... ok 412s test_cardinality_m2o (model_fields.test_field_flags.FieldFlagsTests.test_cardinality_m2o) ... ok 412s test_cardinality_o2m (model_fields.test_field_flags.FieldFlagsTests.test_cardinality_o2m) ... ok 412s test_cardinality_o2o (model_fields.test_field_flags.FieldFlagsTests.test_cardinality_o2o) ... ok 412s test_each_field_should_have_a_concrete_attribute (model_fields.test_field_flags.FieldFlagsTests.test_each_field_should_have_a_concrete_attribute) ... ok 412s test_each_field_should_have_a_has_rel_attribute (model_fields.test_field_flags.FieldFlagsTests.test_each_field_should_have_a_has_rel_attribute) ... ok 412s test_each_field_should_have_an_editable_attribute (model_fields.test_field_flags.FieldFlagsTests.test_each_field_should_have_an_editable_attribute) ... ok 412s test_each_object_should_have_auto_created (model_fields.test_field_flags.FieldFlagsTests.test_each_object_should_have_auto_created) ... ok 412s test_field_names_should_always_be_available (model_fields.test_field_flags.FieldFlagsTests.test_field_names_should_always_be_available) ... ok 412s test_hidden_flag (model_fields.test_field_flags.FieldFlagsTests.test_hidden_flag) ... ok 412s test_model_and_reverse_model_should_equal_on_relations (model_fields.test_field_flags.FieldFlagsTests.test_model_and_reverse_model_should_equal_on_relations) ... ok 412s test_non_concrete_fields (model_fields.test_field_flags.FieldFlagsTests.test_non_concrete_fields) ... ok 412s test_non_editable_fields (model_fields.test_field_flags.FieldFlagsTests.test_non_editable_fields) ... ok 412s test_null (model_fields.test_field_flags.FieldFlagsTests.test_null) ... ok 412s test_related_fields (model_fields.test_field_flags.FieldFlagsTests.test_related_fields) ... ok 412s test_callable_path (model_fields.test_filepathfield.FilePathFieldTests.test_callable_path) ... ok 412s test_path (model_fields.test_filepathfield.FilePathFieldTests.test_path) ... ok 412s test_choices_validation_supports_named_groups (model_fields.test_integerfield.ValidationTests.test_choices_validation_supports_named_groups) ... ok 412s test_enum_choices_cleans_valid_string (model_fields.test_integerfield.ValidationTests.test_enum_choices_cleans_valid_string) ... ok 412s test_enum_choices_invalid_input (model_fields.test_integerfield.ValidationTests.test_enum_choices_invalid_input) ... ok 412s test_integerfield_cleans_valid_string (model_fields.test_integerfield.ValidationTests.test_integerfield_cleans_valid_string) ... ok 412s test_integerfield_raises_error_on_empty_input (model_fields.test_integerfield.ValidationTests.test_integerfield_raises_error_on_empty_input) ... ok 412s test_integerfield_raises_error_on_invalid_intput (model_fields.test_integerfield.ValidationTests.test_integerfield_raises_error_on_invalid_intput) ... ok 412s test_integerfield_validates_zero_against_choices (model_fields.test_integerfield.ValidationTests.test_integerfield_validates_zero_against_choices) ... ok 412s test_nullable_integerfield_cleans_none_on_null_and_blank_true (model_fields.test_integerfield.ValidationTests.test_nullable_integerfield_cleans_none_on_null_and_blank_true) ... ok 412s test_nullable_integerfield_raises_error_with_blank_false (model_fields.test_integerfield.ValidationTests.test_nullable_integerfield_raises_error_with_blank_false) ... ok 412s test_formfield (model_fields.test_jsonfield.TestFormField.test_formfield) ... ok 412s test_formfield_custom_encoder_decoder (model_fields.test_jsonfield.TestFormField.test_formfield_custom_encoder_decoder) ... ok 412s test_deconstruct (model_fields.test_jsonfield.TestMethods.test_deconstruct) ... ok 412s test_deconstruct_custom_encoder_decoder (model_fields.test_jsonfield.TestMethods.test_deconstruct_custom_encoder_decoder) ... ok 412s test_get_prep_value (model_fields.test_jsonfield.TestMethods.test_get_prep_value) ... ok 412s test_get_transforms (model_fields.test_jsonfield.TestMethods.test_get_transforms) ... ok 412s test_key_transform_text_lookup_mixin_non_key_transform (model_fields.test_jsonfield.TestMethods.test_key_transform_text_lookup_mixin_non_key_transform) ... ok 412s test_dumping (model_fields.test_jsonfield.TestSerialization.test_dumping) ... ok 412s test_loading (model_fields.test_jsonfield.TestSerialization.test_loading) ... ok 412s test_xml_serialization (model_fields.test_jsonfield.TestSerialization.test_xml_serialization) ... ok 413s test_custom_encoder (model_fields.test_jsonfield.TestValidation.test_custom_encoder) ... ok 413s test_invalid_decoder (model_fields.test_jsonfield.TestValidation.test_invalid_decoder) ... ok 413s test_invalid_encoder (model_fields.test_jsonfield.TestValidation.test_invalid_encoder) ... ok 413s test_validation_error (model_fields.test_jsonfield.TestValidation.test_validation_error) ... ok 413s test_abstract_model_app_relative_foreign_key (model_fields.test_manytomanyfield.ManyToManyFieldTests.test_abstract_model_app_relative_foreign_key) ... ok 413s test_abstract_model_pending_operations (model_fields.test_manytomanyfield.ManyToManyFieldTests.test_abstract_model_pending_operations) 413s Many-to-many fields declared on abstract models should not add lazy ... ok 413s test_invalid_to_parameter (model_fields.test_manytomanyfield.ManyToManyFieldTests.test_invalid_to_parameter) ... ok 413s test_through_db_table_mutually_exclusive (model_fields.test_manytomanyfield.ManyToManyFieldTests.test_through_db_table_mutually_exclusive) ... ok 413s test_AutoField (model_fields.test_promises.PromiseTest.test_AutoField) ... ok 413s test_BinaryField (model_fields.test_promises.PromiseTest.test_BinaryField) ... ok 413s test_BooleanField (model_fields.test_promises.PromiseTest.test_BooleanField) ... ok 413s test_CharField (model_fields.test_promises.PromiseTest.test_CharField) ... ok 413s test_DateField (model_fields.test_promises.PromiseTest.test_DateField) ... ok 413s test_DateTimeField (model_fields.test_promises.PromiseTest.test_DateTimeField) ... ok 413s test_DecimalField (model_fields.test_promises.PromiseTest.test_DecimalField) ... ok 413s test_EmailField (model_fields.test_promises.PromiseTest.test_EmailField) ... ok 413s test_FileField (model_fields.test_promises.PromiseTest.test_FileField) ... ok 413s test_FilePathField (model_fields.test_promises.PromiseTest.test_FilePathField) ... ok 413s test_FloatField (model_fields.test_promises.PromiseTest.test_FloatField) ... ok 413s test_GenericIPAddressField (model_fields.test_promises.PromiseTest.test_GenericIPAddressField) ... ok 413s test_IPAddressField (model_fields.test_promises.PromiseTest.test_IPAddressField) ... ok 413s test_ImageField (model_fields.test_promises.PromiseTest.test_ImageField) ... ok 413s test_IntegerField (model_fields.test_promises.PromiseTest.test_IntegerField) ... ok 413s test_PositiveBigIntegerField (model_fields.test_promises.PromiseTest.test_PositiveBigIntegerField) ... ok 413s test_PositiveIntegerField (model_fields.test_promises.PromiseTest.test_PositiveIntegerField) ... ok 413s test_PositiveSmallIntegerField (model_fields.test_promises.PromiseTest.test_PositiveSmallIntegerField) ... ok 413s test_SlugField (model_fields.test_promises.PromiseTest.test_SlugField) ... ok 413s test_SmallIntegerField (model_fields.test_promises.PromiseTest.test_SmallIntegerField) ... ok 413s test_TextField (model_fields.test_promises.PromiseTest.test_TextField) ... ok 413s test_TimeField (model_fields.test_promises.PromiseTest.test_TimeField) ... ok 413s test_URLField (model_fields.test_promises.PromiseTest.test_URLField) ... ok 413s test_deconstruct (model_fields.test_textfield.TestMethods.test_deconstruct) ... ok 413s test_unsaved_fk (model_fields.test_uuid.TestAsPrimaryKeyTransactionTests.test_unsaved_fk) ... ok 413s test_deconstruct (model_fields.test_uuid.TestMethods.test_deconstruct) ... ok 413s test_to_python (model_fields.test_uuid.TestMethods.test_to_python) ... ok 413s test_to_python_int_too_large (model_fields.test_uuid.TestMethods.test_to_python_int_too_large) ... ok 413s test_to_python_int_values (model_fields.test_uuid.TestMethods.test_to_python_int_values) ... ok 413s test_dumping (model_fields.test_uuid.TestSerialization.test_dumping) ... ok 413s test_loading (model_fields.test_uuid.TestSerialization.test_loading) ... ok 413s test_nullable_loading (model_fields.test_uuid.TestSerialization.test_nullable_loading) ... ok 413s test_invalid_uuid (model_fields.test_uuid.TestValidation.test_invalid_uuid) ... ok 413s test_uuid_instance_ok (model_fields.test_uuid.TestValidation.test_uuid_instance_ok) ... ok 413s test_abstract_inherited_fields (model_fields.tests.BasicFieldTests.test_abstract_inherited_fields) 413s Field instances from abstract models are not equal. ... ok 413s test_choices_form_class (model_fields.tests.BasicFieldTests.test_choices_form_class) 413s Can supply a custom choices form class to Field.formfield() ... ok 413s test_deconstruct_nested_field (model_fields.tests.BasicFieldTests.test_deconstruct_nested_field) 413s deconstruct() uses __qualname__ for nested class support. ... ok 413s test_field_instance_is_picklable (model_fields.tests.BasicFieldTests.test_field_instance_is_picklable) 413s Field instances can be pickled. ... ok 413s test_field_name (model_fields.tests.BasicFieldTests.test_field_name) 413s A defined field name (name="fieldname") is used instead of the model ... ok 413s test_field_ordering (model_fields.tests.BasicFieldTests.test_field_ordering) 413s Fields are ordered based on their creation. ... ok 413s test_field_repr (model_fields.tests.BasicFieldTests.test_field_repr) 413s __repr__() of a field displays its name. ... ok 413s test_field_repr_nested (model_fields.tests.BasicFieldTests.test_field_repr_nested) 413s __repr__() uses __qualname__ for nested class support. ... ok 413s test_field_str (model_fields.tests.BasicFieldTests.test_field_str) ... ok 413s test_field_verbose_name (model_fields.tests.BasicFieldTests.test_field_verbose_name) ... ok 413s test_formfield_disabled (model_fields.tests.BasicFieldTests.test_formfield_disabled) 413s Field.formfield() sets disabled for fields with choices. ... ok 413s test_hash_immutability (model_fields.tests.BasicFieldTests.test_hash_immutability) ... ok 413s test_show_hidden_initial (model_fields.tests.BasicFieldTests.test_show_hidden_initial) 413s Fields with choices respect show_hidden_initial as a kwarg to ... ok 413s test_check (model_fields.tests.ChoicesTests.test_check) ... ok 413s test_choices (model_fields.tests.ChoicesTests.test_choices) ... ok 413s test_flatchoices (model_fields.tests.ChoicesTests.test_flatchoices) ... ok 413s test_formfield (model_fields.tests.ChoicesTests.test_formfield) ... ok 413s test_invalid_choice (model_fields.tests.ChoicesTests.test_invalid_choice) ... ok 413s test_blank_in_choices (model_fields.tests.GetChoicesTests.test_blank_in_choices) ... ok 413s test_blank_in_grouped_choices (model_fields.tests.GetChoicesTests.test_blank_in_grouped_choices) ... ok 413s test_empty_choices (model_fields.tests.GetChoicesTests.test_empty_choices) ... ok 413s test_lazy_strings_not_evaluated (model_fields.tests.GetChoicesTests.test_lazy_strings_not_evaluated) ... ok 414s test_choices_and_field_display (model_fields.tests.GetFieldDisplayTests.test_choices_and_field_display) 414s get_choices() interacts with get_FIELD_display() to return the expected ... ok 414s test_empty_iterator_choices (model_fields.tests.GetFieldDisplayTests.test_empty_iterator_choices) 414s get_choices() works with empty iterators. ... ok 414s test_get_FIELD_display_translated (model_fields.tests.GetFieldDisplayTests.test_get_FIELD_display_translated) 414s A translated display value is coerced to str. ... ok 414s test_iterator_choices (model_fields.tests.GetFieldDisplayTests.test_iterator_choices) 414s get_choices() works with Iterators. ... ok 414s test_overriding_FIELD_display (model_fields.tests.GetFieldDisplayTests.test_overriding_FIELD_display) ... ok 414s test_overriding_inherited_FIELD_display (model_fields.tests.GetFieldDisplayTests.test_overriding_inherited_FIELD_display) ... ok 416s test_cached_garbaged_collected (dispatch.tests.DispatcherTests.test_cached_garbaged_collected) 416s Make sure signal caching sender receivers don't prevent garbage ... ok 416s test_cannot_connect_no_kwargs (dispatch.tests.DispatcherTests.test_cannot_connect_no_kwargs) ... ok 416s test_cannot_connect_non_callable (dispatch.tests.DispatcherTests.test_cannot_connect_non_callable) ... ok 416s test_disconnection (dispatch.tests.DispatcherTests.test_disconnection) ... ok 416s test_garbage_collected (dispatch.tests.DispatcherTests.test_garbage_collected) ... ok 416s test_has_listeners (dispatch.tests.DispatcherTests.test_has_listeners) ... ok 416s test_multiple_registration (dispatch.tests.DispatcherTests.test_multiple_registration) ... ok 416s test_send (dispatch.tests.DispatcherTests.test_send) ... ok 416s test_send_connected_no_sender (dispatch.tests.DispatcherTests.test_send_connected_no_sender) ... ok 416s test_send_different_no_sender (dispatch.tests.DispatcherTests.test_send_different_no_sender) ... ok 416s test_send_no_receivers (dispatch.tests.DispatcherTests.test_send_no_receivers) ... ok 416s test_send_robust_fail (dispatch.tests.DispatcherTests.test_send_robust_fail) ... ok 416s test_send_robust_ignored_sender (dispatch.tests.DispatcherTests.test_send_robust_ignored_sender) ... ok 416s test_send_robust_no_receivers (dispatch.tests.DispatcherTests.test_send_robust_no_receivers) ... ok 416s test_send_robust_success (dispatch.tests.DispatcherTests.test_send_robust_success) ... ok 416s test_uid_registration (dispatch.tests.DispatcherTests.test_uid_registration) ... ok 416s test_values_returned_by_disconnection (dispatch.tests.DispatcherTests.test_values_returned_by_disconnection) ... ok 416s test_custom_form_meta_exclude (generic_inline_admin.tests.GenericInlineModelAdminTest.test_custom_form_meta_exclude) 416s The custom ModelForm's `Meta.exclude` is respected by ... ok 416s test_custom_form_meta_exclude_with_readonly (generic_inline_admin.tests.GenericInlineModelAdminTest.test_custom_form_meta_exclude_with_readonly) 416s The custom ModelForm's `Meta.exclude` is respected when ... ok 416s test_get_fieldsets (generic_inline_admin.tests.GenericInlineModelAdminTest.test_get_fieldsets) ... ok 416s test_get_formset_kwargs (generic_inline_admin.tests.GenericInlineModelAdminTest.test_get_formset_kwargs) ... ok 416s test_get_formsets_with_inlines_returns_tuples (generic_inline_admin.tests.GenericInlineModelAdminTest.test_get_formsets_with_inlines_returns_tuples) 416s get_formsets_with_inlines() returns the correct tuples. ... ok 416s test_get_inline_instances_override_get_inlines (generic_inline_admin.tests.GenericInlineModelAdminTest.test_get_inline_instances_override_get_inlines) ... ok 416s test_no_deletion (generic_inline_admin.tests.NoInlineDeletionTest.test_no_deletion) ... ok 416s test_middleware_headers (project_template.test_settings.TestStartProjectSettings.test_middleware_headers) 416s Ensure headers sent by the default MIDDLEWARE don't inadvertently ... ok 416s test_render (shortcuts.tests.RenderTests.test_render) ... ok 416s test_render_with_content_type (shortcuts.tests.RenderTests.test_render_with_content_type) ... ok 416s test_render_with_multiple_templates (shortcuts.tests.RenderTests.test_render_with_multiple_templates) ... ok 416s test_render_with_status (shortcuts.tests.RenderTests.test_render_with_status) ... ok 416s test_render_with_using (shortcuts.tests.RenderTests.test_render_with_using) ... ok 416s test_generic_relations (select_related.tests.SelectRelatedValidationTests.test_generic_relations) ... ok 416s test_invalid_field (select_related.tests.SelectRelatedValidationTests.test_invalid_field) ... ok 416s test_many_to_many_field (select_related.tests.SelectRelatedValidationTests.test_many_to_many_field) ... ok 416s test_non_relational_field (select_related.tests.SelectRelatedValidationTests.test_non_relational_field) ... ok 416s test_non_relational_field_nested (select_related.tests.SelectRelatedValidationTests.test_non_relational_field_nested) ... ok 416s test_reverse_relational_field (select_related.tests.SelectRelatedValidationTests.test_reverse_relational_field) ... ok 417s test_persistence (migration_test_data_persistence.tests.MigrationDataPersistenceTestCase.test_persistence) ... ok 417s test_combine_and_both_empty (queries.test_q.QTests.test_combine_and_both_empty) ... ok 417s test_combine_and_empty (queries.test_q.QTests.test_combine_and_empty) ... ok 417s test_combine_empty_copy (queries.test_q.QTests.test_combine_empty_copy) ... ok 417s test_combine_negated_boolean_expression (queries.test_q.QTests.test_combine_negated_boolean_expression) ... ok 417s test_combine_not_q_object (queries.test_q.QTests.test_combine_not_q_object) ... ok 417s test_combine_or_both_empty (queries.test_q.QTests.test_combine_or_both_empty) ... ok 417s test_combine_or_empty (queries.test_q.QTests.test_combine_or_empty) ... ok 417s test_combine_xor_both_empty (queries.test_q.QTests.test_combine_xor_both_empty) ... ok 417s test_combine_xor_empty (queries.test_q.QTests.test_combine_xor_empty) ... ok 417s test_create_helper (queries.test_q.QTests.test_create_helper) ... ok 417s test_deconstruct (queries.test_q.QTests.test_deconstruct) ... ok 417s test_deconstruct_and (queries.test_q.QTests.test_deconstruct_and) ... ok 417s test_deconstruct_boolean_expression (queries.test_q.QTests.test_deconstruct_boolean_expression) ... ok 417s test_deconstruct_multiple_kwargs (queries.test_q.QTests.test_deconstruct_multiple_kwargs) ... ok 417s test_deconstruct_negated (queries.test_q.QTests.test_deconstruct_negated) ... ok 417s test_deconstruct_nested (queries.test_q.QTests.test_deconstruct_nested) ... ok 417s test_deconstruct_or (queries.test_q.QTests.test_deconstruct_or) ... ok 417s test_deconstruct_xor (queries.test_q.QTests.test_deconstruct_xor) ... ok 417s test_flatten (queries.test_q.QTests.test_flatten) ... ok 417s test_reconstruct (queries.test_q.QTests.test_reconstruct) ... ok 417s test_reconstruct_and (queries.test_q.QTests.test_reconstruct_and) ... ok 417s test_reconstruct_negated (queries.test_q.QTests.test_reconstruct_negated) ... ok 417s test_reconstruct_or (queries.test_q.QTests.test_reconstruct_or) ... ok 417s test_reconstruct_xor (queries.test_q.QTests.test_reconstruct_xor) ... ok 417s test_repr (queries.test_query.JoinPromoterTest.test_repr) ... ok 417s test_clone_select_related (queries.test_query.TestQuery.test_clone_select_related) ... ok 417s test_complex_query (queries.test_query.TestQuery.test_complex_query) ... ok 417s test_filter_conditional (queries.test_query.TestQuery.test_filter_conditional) ... ok 417s test_filter_conditional_join (queries.test_query.TestQuery.test_filter_conditional_join) ... ok 417s test_filter_non_conditional (queries.test_query.TestQuery.test_filter_non_conditional) ... ok 417s test_foreign_key (queries.test_query.TestQuery.test_foreign_key) ... ok 417s test_foreign_key_exclusive (queries.test_query.TestQuery.test_foreign_key_exclusive) ... ok 417s test_foreign_key_f (queries.test_query.TestQuery.test_foreign_key_f) ... ok 417s test_iterable_lookup_value (queries.test_query.TestQuery.test_iterable_lookup_value) ... ok 417s test_multiple_fields (queries.test_query.TestQuery.test_multiple_fields) ... ok 417s test_negated_nullable (queries.test_query.TestQuery.test_negated_nullable) ... ok 417s test_non_alias_cols_query (queries.test_query.TestQuery.test_non_alias_cols_query) ... ok 417s test_simple_query (queries.test_query.TestQuery.test_simple_query) ... ok 417s test_transform (queries.test_query.TestQuery.test_transform) ... ok 417s test_repr (queries.test_sqlcompiler.SQLCompilerTest.test_repr) ... ok 417s test_emptyqueryset_values (queries.tests.EmptyQuerySetTests.test_emptyqueryset_values) ... ok 417s test_ticket_19151 (queries.tests.EmptyQuerySetTests.test_ticket_19151) ... ok 417s test_values_subquery (queries.tests.EmptyQuerySetTests.test_values_subquery) ... ok 417s test_empty_string_promotion (queries.tests.EmptyStringPromotionTests.test_empty_string_promotion) ... ok 417s test_ticket10432 (queries.tests.GeneratorExpressionTests.test_ticket10432) ... ok 417s test_invalid_order_by (queries.tests.QuerySetExceptionTests.test_invalid_order_by) ... ok 417s test_invalid_order_by_raw_column_alias (queries.tests.QuerySetExceptionTests.test_invalid_order_by_raw_column_alias) ... ok 417s test_invalid_queryset_model (queries.tests.QuerySetExceptionTests.test_invalid_queryset_model) ... ok 417s test_invalid_values (queries.tests.TestInvalidValuesRelation.test_invalid_values) ... ok 417s test_ticket_18785 (queries.tests.Ticket18785Tests.test_ticket_18785) ... ok 417s test_empty_full_handling_conjunction (queries.tests.WhereNodeTest.test_empty_full_handling_conjunction) ... ok 417s test_empty_full_handling_disjunction (queries.tests.WhereNodeTest.test_empty_full_handling_disjunction) ... ok 417s test_empty_nodes (queries.tests.WhereNodeTest.test_empty_nodes) ... ok 417s test_none_allowed (generic_relations.tests.TestInitWithNoneArgument.test_none_allowed) ... ok 417s test_abstract_model_with_regular_python_mixin_mro (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_abstract_model_with_regular_python_mixin_mro) ... ok 417s test_cannot_override_indirect_abstract_field (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_cannot_override_indirect_abstract_field) ... ok 417s test_diamond_shaped_multiple_inheritance_is_depth_first (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_diamond_shaped_multiple_inheritance_is_depth_first) 417s In contrast to standard Python MRO, resolution of inherited fields is ... ok 417s test_multi_inheritance_field_clashes (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_multi_inheritance_field_clashes) ... ok 417s test_multiple_inheritance_allows_inherited_field (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_multiple_inheritance_allows_inherited_field) 417s Single layer multiple inheritance is as expected, deriving the ... ok 417s test_multiple_inheritance_cannot_shadow_concrete_inherited_field (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_multiple_inheritance_cannot_shadow_concrete_inherited_field) ... ok 417s test_override_field_with_attr (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_override_field_with_attr) ... ok 417s test_override_one2one_relation_auto_field_clashes (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_override_one2one_relation_auto_field_clashes) ... ok 417s test_overriding_field_removed_by_concrete_model (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_overriding_field_removed_by_concrete_model) ... ok 417s test_reverse_foreign_key (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_reverse_foreign_key) ... ok 417s test_shadow_related_name_when_set_to_none (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_shadow_related_name_when_set_to_none) ... ok 417s test_shadowed_fkey_id (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_shadowed_fkey_id) ... ok 417s test_single_parent (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_single_parent) ... ok 417s test_target_field_may_be_pushed_down (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_target_field_may_be_pushed_down) 417s Where the Child model needs to inherit a field from a different base ... ok 417s test_virtual_field (model_inheritance.test_abstract_inheritance.AbstractInheritanceTests.test_virtual_field) ... ok 417s test_abstract_fk_related_name (model_inheritance.tests.InheritanceSameModelNameTests.test_abstract_fk_related_name) ... ok 417s test_concurrent_delete_with_save (basic.tests.ConcurrentSaveTests.test_concurrent_delete_with_save) 417s Test fetching, deleting and finally saving an object - we should get ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 418s test_manager_method_attributes (basic.tests.ManagerTest.test_manager_method_attributes) ... ok 418s test_manager_method_signature (basic.tests.ManagerTest.test_manager_method_signature) ... ok 418s test_manager_methods (basic.tests.ManagerTest.test_manager_methods) 418s This test ensures that the correct set of methods from `QuerySet` ... ok 418s test_app_default_auto_field (apps.tests.AppConfigTests.test_app_default_auto_field) ... ok 418s test_default_auto_field_setting (apps.tests.AppConfigTests.test_default_auto_field_setting) ... ok 418s test_dunder_path (apps.tests.AppConfigTests.test_dunder_path) 418s If single element in __path__, use it (in preference to __file__). ... ok 418s test_duplicate_dunder_path_no_dunder_file (apps.tests.AppConfigTests.test_duplicate_dunder_path_no_dunder_file) 418s If the __path__ attr contains duplicate paths and there is no ... ok 418s test_empty_dunder_path_fallback_to_dunder_file (apps.tests.AppConfigTests.test_empty_dunder_path_fallback_to_dunder_file) 418s If the __path__ attr is empty, use __file__ if set. ... ok 418s test_empty_dunder_path_no_dunder_file (apps.tests.AppConfigTests.test_empty_dunder_path_no_dunder_file) 418s If the __path__ attr is empty and there is no __file__, raise. ... ok 418s test_explicit_path_overrides (apps.tests.AppConfigTests.test_explicit_path_overrides) 418s If path set as class attr, overrides __path__ and __file__. ... ok 418s test_invalid_label (apps.tests.AppConfigTests.test_invalid_label) ... ok 418s test_multiple_dunder_path_fallback_to_dunder_file (apps.tests.AppConfigTests.test_multiple_dunder_path_fallback_to_dunder_file) 418s If the __path__ attr is length>1, use __file__ if set. ... ok 418s test_multiple_dunder_path_no_dunder_file (apps.tests.AppConfigTests.test_multiple_dunder_path_no_dunder_file) 418s If the __path__ attr is length>1 and there is no __file__, raise. ... ok 418s test_no_dunder_path_fallback_to_dunder_file (apps.tests.AppConfigTests.test_no_dunder_path_fallback_to_dunder_file) 418s If there is no __path__ attr, use __file__. ... ok 418s test_no_dunder_path_or_dunder_file (apps.tests.AppConfigTests.test_no_dunder_path_or_dunder_file) 418s If there is no __path__ or __file__, raise ImproperlyConfigured. ... ok 418s test_path_set_explicitly (apps.tests.AppConfigTests.test_path_set_explicitly) 418s If subclass sets path as class attr, no module attributes needed. ... ok 418s test_repr (apps.tests.AppConfigTests.test_repr) ... ok 418s test_bad_app_config (apps.tests.AppsTests.test_bad_app_config) 418s Tests when INSTALLED_APPS contains an incorrect app config. ... ok 418s test_duplicate_labels (apps.tests.AppsTests.test_duplicate_labels) ... ok 418s test_duplicate_names (apps.tests.AppsTests.test_duplicate_names) ... ok 418s test_dynamic_load (apps.tests.AppsTests.test_dynamic_load) 418s Makes a new model at runtime and ensures it goes into the right place. ... ok 418s test_get_app_config (apps.tests.AppsTests.test_get_app_config) 418s Tests apps.get_app_config(). ... ok 418s test_get_app_configs (apps.tests.AppsTests.test_get_app_configs) 418s Tests apps.get_app_configs(). ... ok 418s test_get_containing_app_config_apps_not_ready (apps.tests.AppsTests.test_get_containing_app_config_apps_not_ready) 418s apps.get_containing_app_config() should raise an exception if ... ok 418s test_get_model (apps.tests.AppsTests.test_get_model) 418s Tests apps.get_model(). ... ok 418s test_import_exception_is_not_masked (apps.tests.AppsTests.test_import_exception_is_not_masked) 418s App discovery should preserve stack traces. Regression test for #22920. ... ok 418s test_is_installed (apps.tests.AppsTests.test_is_installed) 418s Tests apps.is_installed(). ... ok 418s test_lazy_model_operation (apps.tests.AppsTests.test_lazy_model_operation) 418s Tests apps.lazy_model_operation(). ... ok 418s test_model_clash (apps.tests.AppsTests.test_model_clash) 418s Test for behavior when two models clash in the app registry. ... ok 418s test_models_not_loaded (apps.tests.AppsTests.test_models_not_loaded) 418s apps.get_models() raises an exception if apps.models_ready isn't True. ... ok 418s test_models_py (apps.tests.AppsTests.test_models_py) 418s The models in the models.py file were loaded correctly. ... ok 418s test_no_config_app (apps.tests.AppsTests.test_no_config_app) 418s Load an app that doesn't provide an AppConfig class. ... ok 418s test_no_such_app (apps.tests.AppsTests.test_no_such_app) 418s Tests when INSTALLED_APPS contains an app that doesn't exist, either ... ok 418s test_no_such_app_config (apps.tests.AppsTests.test_no_such_app_config) ... ok 418s test_no_such_app_config_with_choices (apps.tests.AppsTests.test_no_such_app_config_with_choices) ... ok 418s test_not_an_app_config (apps.tests.AppsTests.test_not_an_app_config) 418s Tests when INSTALLED_APPS contains a class that isn't an app config. ... ok 418s test_one_config_app (apps.tests.AppsTests.test_one_config_app) 418s Load an app that provides an AppConfig class. ... ok 418s test_ready (apps.tests.AppsTests.test_ready) 418s Tests the ready property of the main registry. ... ok 418s test_relabeling (apps.tests.AppsTests.test_relabeling) ... ok 418s test_singleton_main (apps.tests.AppsTests.test_singleton_main) 418s Only one main registry can exist. ... ok 418s test_two_configs_app (apps.tests.AppsTests.test_two_configs_app) 418s Load an app that provides two AppConfig classes. ... ok 418s test_two_configs_one_default_app (apps.tests.AppsTests.test_two_configs_one_default_app) 418s Load an app that provides two AppConfig classes, one being the default. ... ok 418s test_two_default_configs_app (apps.tests.AppsTests.test_two_default_configs_app) 418s Load an app that provides two default AppConfig classes. ... ok 418s test_multiple_paths (apps.tests.NamespacePackageAppTests.test_multiple_paths) 418s A Py3.3+ namespace package with multiple locations cannot be an app. ... ok 418s test_multiple_paths_explicit_path (apps.tests.NamespacePackageAppTests.test_multiple_paths_explicit_path) 418s Multiple locations are ok only if app-config has explicit path. ... ok 418s test_single_path (apps.tests.NamespacePackageAppTests.test_single_path) 418s A Py3.3+ namespace package can be an app if it has only one path. ... ok 418s test_get_template_first_engine (template_loader.tests.TemplateLoaderTests.test_get_template_first_engine) ... ok 418s test_get_template_not_found (template_loader.tests.TemplateLoaderTests.test_get_template_not_found) ... ok 418s test_get_template_second_engine (template_loader.tests.TemplateLoaderTests.test_get_template_second_engine) ... ok 418s test_get_template_using_engine (template_loader.tests.TemplateLoaderTests.test_get_template_using_engine) ... ok 418s test_render_to_string_first_engine (template_loader.tests.TemplateLoaderTests.test_render_to_string_first_engine) ... ok 418s test_render_to_string_not_found (template_loader.tests.TemplateLoaderTests.test_render_to_string_not_found) ... ok 418s test_render_to_string_second_engine (template_loader.tests.TemplateLoaderTests.test_render_to_string_second_engine) ... ok 418s test_render_to_string_using_engine (template_loader.tests.TemplateLoaderTests.test_render_to_string_using_engine) ... ok 418s test_render_to_string_with_list_empty (template_loader.tests.TemplateLoaderTests.test_render_to_string_with_list_empty) ... ok 418s test_render_to_string_with_list_first_engine (template_loader.tests.TemplateLoaderTests.test_render_to_string_with_list_first_engine) ... ok 418s test_render_to_string_with_list_not_found (template_loader.tests.TemplateLoaderTests.test_render_to_string_with_list_not_found) ... ok 418s test_render_to_string_with_list_second_engine (template_loader.tests.TemplateLoaderTests.test_render_to_string_with_list_second_engine) ... ok 418s test_render_to_string_with_list_tries_all_engines_before_names (template_loader.tests.TemplateLoaderTests.test_render_to_string_with_list_tries_all_engines_before_names) ... ok 418s test_render_to_string_with_list_using_engine (template_loader.tests.TemplateLoaderTests.test_render_to_string_with_list_using_engine) ... ok 418s test_render_to_string_with_request (template_loader.tests.TemplateLoaderTests.test_render_to_string_with_request) ... ok 418s test_select_template_empty (template_loader.tests.TemplateLoaderTests.test_select_template_empty) ... ok 418s test_select_template_first_engine (template_loader.tests.TemplateLoaderTests.test_select_template_first_engine) ... ok 418s test_select_template_not_found (template_loader.tests.TemplateLoaderTests.test_select_template_not_found) ... ok 418s test_select_template_second_engine (template_loader.tests.TemplateLoaderTests.test_select_template_second_engine) ... ok 418s test_select_template_string (template_loader.tests.TemplateLoaderTests.test_select_template_string) ... ok 418s test_select_template_tries_all_engines_before_names (template_loader.tests.TemplateLoaderTests.test_select_template_tries_all_engines_before_names) ... ok 418s test_select_template_using_engine (template_loader.tests.TemplateLoaderTests.test_select_template_using_engine) ... ok 418s test_development (version.tests.VersionTests.test_development) ... ok 418s test_development_no_file (version.tests.VersionTests.test_development_no_file) ... ok 418s test_get_version_invalid_version (version.tests.VersionTests.test_get_version_invalid_version) ... ok 418s test_get_version_tuple (version.tests.VersionTests.test_get_version_tuple) ... ok 418s test_releases (version.tests.VersionTests.test_releases) ... ok 418s test_immutability (model_utils.tests.NamedTupleClassTests.test_immutability) ... ok 418s test_not_a_directory (file_uploads.tests.DirectoryCreationTests.test_not_a_directory) ... ok 418s test_readonly_root (file_uploads.tests.DirectoryCreationTests.test_readonly_root) 418s Permission errors are not swallowed ... ok 418s test_bad_type_content_length (file_uploads.tests.MultiParserTests.test_bad_type_content_length) ... ok 418s test_empty_upload_handlers (file_uploads.tests.MultiParserTests.test_empty_upload_handlers) ... ok 418s test_invalid_content_type (file_uploads.tests.MultiParserTests.test_invalid_content_type) ... ok 418s test_negative_content_length (file_uploads.tests.MultiParserTests.test_negative_content_length) ... ok 418s test_sanitize_file_name (file_uploads.tests.MultiParserTests.test_sanitize_file_name) ... ok 418s test_sanitize_invalid_file_name (file_uploads.tests.MultiParserTests.test_sanitize_invalid_file_name) ... ok 418s test_egg1 (app_loading.tests.EggLoadingTest.test_egg1) 418s Models module can be loaded from an app in an egg ... ok 418s test_egg2 (app_loading.tests.EggLoadingTest.test_egg2) 418s Loading an app from an egg that has no models returns no models (and no ... ok 418s test_egg3 (app_loading.tests.EggLoadingTest.test_egg3) 418s Models module can be loaded from an app located under an egg's ... ok 418s test_egg4 (app_loading.tests.EggLoadingTest.test_egg4) 418s Loading an app with no models from under the top-level egg package ... ok 418s test_egg5 (app_loading.tests.EggLoadingTest.test_egg5) 418s Loading an app from an egg that has an import error in its models ... ok 418s test_get_model_only_returns_installed_models (app_loading.tests.GetModelsTest.test_get_model_only_returns_installed_models) ... ok 418s test_get_models_only_returns_installed_models (app_loading.tests.GetModelsTest.test_get_models_only_returns_installed_models) ... ok 419s test_admin_check_ignores_import_error_in_middleware (admin_checks.tests.SystemChecksTestCase.test_admin_check_ignores_import_error_in_middleware) ... ok 419s test_allows_checks_relying_on_other_modeladmins (admin_checks.tests.SystemChecksTestCase.test_allows_checks_relying_on_other_modeladmins) ... ok 419s test_app_label_in_admin_checks (admin_checks.tests.SystemChecksTestCase.test_app_label_in_admin_checks) ... ok 419s test_apps_dependencies (admin_checks.tests.SystemChecksTestCase.test_apps_dependencies) ... ok 419s test_cannot_include_through (admin_checks.tests.SystemChecksTestCase.test_cannot_include_through) ... ok 419s test_check_fieldset_sublists_for_duplicates (admin_checks.tests.SystemChecksTestCase.test_check_fieldset_sublists_for_duplicates) ... ok 419s test_check_sublists_for_duplicates (admin_checks.tests.SystemChecksTestCase.test_check_sublists_for_duplicates) ... ok 419s test_checks_are_performed (admin_checks.tests.SystemChecksTestCase.test_checks_are_performed) ... ok 419s test_context_processor_dependencies (admin_checks.tests.SystemChecksTestCase.test_context_processor_dependencies) ... ok 419s test_context_processor_dependencies_model_backend_subclass (admin_checks.tests.SystemChecksTestCase.test_context_processor_dependencies_model_backend_subclass) ... ok 419s test_custom_adminsite (admin_checks.tests.SystemChecksTestCase.test_custom_adminsite) ... ok 419s test_custom_get_form_with_fieldsets (admin_checks.tests.SystemChecksTestCase.test_custom_get_form_with_fieldsets) 419s The fieldsets checks are skipped when the ModelAdmin.get_form() method ... ok 419s test_custom_modelforms_with_fields_fieldsets (admin_checks.tests.SystemChecksTestCase.test_custom_modelforms_with_fields_fieldsets) 419s # Regression test for #8027: custom ModelForms with fields/fieldsets ... ok 419s test_editable (admin_checks.tests.SystemChecksTestCase.test_editable) ... ok 419s test_exclude_duplicate_values (admin_checks.tests.SystemChecksTestCase.test_exclude_duplicate_values) ... ok 419s test_exclude_in_inline (admin_checks.tests.SystemChecksTestCase.test_exclude_in_inline) ... ok 419s test_exclude_inline_model_admin (admin_checks.tests.SystemChecksTestCase.test_exclude_inline_model_admin) 419s Regression test for #9932 - exclude in InlineModelAdmin should not ... ok 419s test_exclude_values (admin_checks.tests.SystemChecksTestCase.test_exclude_values) 419s Tests for basic system checks of 'exclude' option values (#12689) ... ok 419s test_explicit_through_override (admin_checks.tests.SystemChecksTestCase.test_explicit_through_override) 419s Regression test for #12209 -- If the explicitly provided through model ... ok 419s test_extra (admin_checks.tests.SystemChecksTestCase.test_extra) ... ok 419s test_field_name_not_in_list_display (admin_checks.tests.SystemChecksTestCase.test_field_name_not_in_list_display) ... ok 419s test_fieldsets_fields_non_tuple (admin_checks.tests.SystemChecksTestCase.test_fieldsets_fields_non_tuple) 419s The first fieldset's fields must be a list/tuple. ... ok 419s test_fk_exclusion (admin_checks.tests.SystemChecksTestCase.test_fk_exclusion) 419s Regression test for #11709 - when testing for fk excluding (when exclude is ... ok 419s test_generic_inline_model_admin_bad_ct_field (admin_checks.tests.SystemChecksTestCase.test_generic_inline_model_admin_bad_ct_field) 419s A GenericInlineModelAdmin errors if the ct_field points to a ... ok 419s test_generic_inline_model_admin_bad_fk_field (admin_checks.tests.SystemChecksTestCase.test_generic_inline_model_admin_bad_fk_field) 419s A GenericInlineModelAdmin errors if the ct_fk_field points to a ... ok 419s test_generic_inline_model_admin_non_generic_model (admin_checks.tests.SystemChecksTestCase.test_generic_inline_model_admin_non_generic_model) 419s A model without a GenericForeignKey raises problems if it's included ... ok 419s test_generic_inline_model_admin_non_gfk_ct_field (admin_checks.tests.SystemChecksTestCase.test_generic_inline_model_admin_non_gfk_ct_field) 419s A GenericInlineModelAdmin raises problems if the ct_field points to a ... ok 419s test_generic_inline_model_admin_non_gfk_fk_field (admin_checks.tests.SystemChecksTestCase.test_generic_inline_model_admin_non_gfk_fk_field) 419s A GenericInlineModelAdmin raises problems if the ct_fk_field points to ... ok 419s test_graceful_m2m_fail (admin_checks.tests.SystemChecksTestCase.test_graceful_m2m_fail) 419s Regression test for #12203/#12237 - Fail more gracefully when a M2M field that ... ok 419s test_inline_self_check (admin_checks.tests.SystemChecksTestCase.test_inline_self_check) ... ok 419s test_inline_with_specified (admin_checks.tests.SystemChecksTestCase.test_inline_with_specified) ... ok 419s test_inlines_property (admin_checks.tests.SystemChecksTestCase.test_inlines_property) ... ok 419s test_list_editable_missing_field (admin_checks.tests.SystemChecksTestCase.test_list_editable_missing_field) ... ok 419s test_list_editable_not_a_list_or_tuple (admin_checks.tests.SystemChecksTestCase.test_list_editable_not_a_list_or_tuple) ... ok 419s test_list_filter_works_on_through_field_even_when_apps_not_ready (admin_checks.tests.SystemChecksTestCase.test_list_filter_works_on_through_field_even_when_apps_not_ready) 419s Ensure list_filter can access reverse fields even when the app registry ... ok 419s test_middleware_dependencies (admin_checks.tests.SystemChecksTestCase.test_middleware_dependencies) ... ok 419s test_middleware_subclasses (admin_checks.tests.SystemChecksTestCase.test_middleware_subclasses) ... ok 419s test_nested_fields (admin_checks.tests.SystemChecksTestCase.test_nested_fields) ... ok 419s test_nested_fieldsets (admin_checks.tests.SystemChecksTestCase.test_nested_fieldsets) ... ok 419s test_no_template_engines (admin_checks.tests.SystemChecksTestCase.test_no_template_engines) ... ok 419s test_non_model_fields (admin_checks.tests.SystemChecksTestCase.test_non_model_fields) 419s Regression for ensuring ModelAdmin.fields can contain non-model fields ... ok 419s test_non_model_first_field (admin_checks.tests.SystemChecksTestCase.test_non_model_first_field) 419s Regression for ensuring ModelAdmin.field can handle first elem being a ... ok 419s test_nonexistent_field (admin_checks.tests.SystemChecksTestCase.test_nonexistent_field) ... ok 419s test_nonexistent_field_on_inline (admin_checks.tests.SystemChecksTestCase.test_nonexistent_field_on_inline) ... ok 419s test_nonfirst_fieldset (admin_checks.tests.SystemChecksTestCase.test_nonfirst_fieldset) 419s The second fieldset's fields must be a list/tuple. ... ok 419s test_pk_not_editable (admin_checks.tests.SystemChecksTestCase.test_pk_not_editable) ... ok 419s test_readonly (admin_checks.tests.SystemChecksTestCase.test_readonly) ... ok 419s test_readonly_and_editable (admin_checks.tests.SystemChecksTestCase.test_readonly_and_editable) ... ok 419s test_readonly_dynamic_attribute_on_modeladmin (admin_checks.tests.SystemChecksTestCase.test_readonly_dynamic_attribute_on_modeladmin) ... ok 419s test_readonly_fields_not_list_or_tuple (admin_checks.tests.SystemChecksTestCase.test_readonly_fields_not_list_or_tuple) ... ok 419s test_readonly_lambda (admin_checks.tests.SystemChecksTestCase.test_readonly_lambda) ... ok 419s test_readonly_method_on_model (admin_checks.tests.SystemChecksTestCase.test_readonly_method_on_model) ... ok 419s test_readonly_on_method (admin_checks.tests.SystemChecksTestCase.test_readonly_on_method) ... ok 419s test_readonly_on_modeladmin (admin_checks.tests.SystemChecksTestCase.test_readonly_on_modeladmin) ... ok 419s test_several_templates_backends (admin_checks.tests.SystemChecksTestCase.test_several_templates_backends) ... ok 419s test_valid_generic_inline_model_admin (admin_checks.tests.SystemChecksTestCase.test_valid_generic_inline_model_admin) 419s Regression test for #22034 - check that generic inlines don't look for ... ok 419s test_get_or_create_integrityerror (get_or_create.tests.GetOrCreateTransactionTests.test_get_or_create_integrityerror) 419s Regression test for #15117. Requires a TransactionTestCase on ... ok 419s test_get_or_create_with_invalid_defaults (get_or_create.tests.InvalidCreateArgumentsTests.test_get_or_create_with_invalid_defaults) ... ok 419s test_get_or_create_with_invalid_kwargs (get_or_create.tests.InvalidCreateArgumentsTests.test_get_or_create_with_invalid_kwargs) ... ok 419s test_multiple_invalid_fields (get_or_create.tests.InvalidCreateArgumentsTests.test_multiple_invalid_fields) ... ok 419s test_property_attribute_without_setter_defaults (get_or_create.tests.InvalidCreateArgumentsTests.test_property_attribute_without_setter_defaults) ... ok 419s test_property_attribute_without_setter_kwargs (get_or_create.tests.InvalidCreateArgumentsTests.test_property_attribute_without_setter_kwargs) ... ok 419s test_update_or_create_with_invalid_defaults (get_or_create.tests.InvalidCreateArgumentsTests.test_update_or_create_with_invalid_defaults) ... ok 419s test_update_or_create_with_invalid_kwargs (get_or_create.tests.InvalidCreateArgumentsTests.test_update_or_create_with_invalid_kwargs) ... ok 419s test_creation_in_transaction (get_or_create.tests.UpdateOrCreateTransactionTests.test_creation_in_transaction) 419s Objects are selected and updated in a transaction to avoid race ... skipped "Database doesn't support feature(s): has_select_for_update" 419s test_updates_in_transaction (get_or_create.tests.UpdateOrCreateTransactionTests.test_updates_in_transaction) 419s Objects are selected and updated in a transaction to avoid race ... skipped "Database doesn't support feature(s): has_select_for_update" 419s test_validate_after_get_available_name (file_storage.test_base.StorageValidateFileNameTests.test_validate_after_get_available_name) ... ok 419s test_validate_after_internal_save (file_storage.test_base.StorageValidateFileNameTests.test_validate_after_internal_save) ... ok 419s test_validate_before_get_available_name (file_storage.test_base.StorageValidateFileNameTests.test_validate_before_get_available_name) ... ok 419s test_filefield_awss3_storage (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_awss3_storage) 419s Simulate a FileField with an S3 storage which uses keys rather than ... ok 419s test_filefield_dangerous_filename (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_dangerous_filename) ... ok 419s test_filefield_dangerous_filename_dot_segments (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_dangerous_filename_dot_segments) ... ok 419s test_filefield_generate_filename (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_generate_filename) ... ok 419s test_filefield_generate_filename_absolute_path (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_generate_filename_absolute_path) ... ok 419s test_filefield_generate_filename_upload_to_absolute_path (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_generate_filename_upload_to_absolute_path) ... ok 419s test_filefield_generate_filename_upload_to_dangerous_filename (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_generate_filename_upload_to_dangerous_filename) ... ok 419s test_filefield_generate_filename_upload_to_overrides_dangerous_filename (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_generate_filename_upload_to_overrides_dangerous_filename) ... ok 419s test_filefield_generate_filename_with_upload_to (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_filefield_generate_filename_with_upload_to) ... ok 419s test_storage_dangerous_paths (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_storage_dangerous_paths) ... ok 419s test_storage_dangerous_paths_dir_name (file_storage.test_generate_filename.GenerateFilenameStorageTests.test_storage_dangerous_paths_dir_name) ... ok 419s test_deconstruction (file_storage.test_inmemory_storage.InMemoryStorageTests.test_deconstruction) ... ok 419s test_setting_changed (file_storage.test_inmemory_storage.InMemoryStorageTests.test_setting_changed) 419s Properties using settings values as defaults should be updated on ... ok 419s test_base_url (file_storage.tests.CustomStorageTests.test_base_url) 419s File storage returns a url even when its base_url is unset or modified. ... ok 419s test_custom_get_available_name (file_storage.tests.CustomStorageTests.test_custom_get_available_name) ... ok 419s test_delete_deletes_directories (file_storage.tests.CustomStorageTests.test_delete_deletes_directories) ... ok 419s test_delete_no_name (file_storage.tests.CustomStorageTests.test_delete_no_name) 419s Calling delete with an empty name should not try to remove the base ... ok 419s test_empty_location (file_storage.tests.CustomStorageTests.test_empty_location) 419s Makes sure an exception is raised if the location is empty ... ok 419s test_file_access_options (file_storage.tests.CustomStorageTests.test_file_access_options) 419s Standard file access options are available, and work as expected. ... ok 419s test_file_chunks_error (file_storage.tests.CustomStorageTests.test_file_chunks_error) 419s Test behavior when file.chunks() is raising an error ... ok 419s test_file_get_accessed_time (file_storage.tests.CustomStorageTests.test_file_get_accessed_time) 419s File storage returns a Datetime object for the last accessed time of ... ok 419s test_file_get_accessed_time_timezone (file_storage.tests.CustomStorageTests.test_file_get_accessed_time_timezone) ... ok 419s test_file_get_created_time (file_storage.tests.CustomStorageTests.test_file_get_created_time) 419s File storage returns a datetime for the creation time of a file. ... ok 419s test_file_get_created_time_timezone (file_storage.tests.CustomStorageTests.test_file_get_created_time_timezone) ... ok 419s test_file_get_modified_time (file_storage.tests.CustomStorageTests.test_file_get_modified_time) 419s File storage returns a datetime for the last modified time of a file. ... ok 419s test_file_get_modified_time_timezone (file_storage.tests.CustomStorageTests.test_file_get_modified_time_timezone) ... ok 419s test_file_methods_pathlib_path (file_storage.tests.CustomStorageTests.test_file_methods_pathlib_path) ... ok 419s test_file_path (file_storage.tests.CustomStorageTests.test_file_path) 419s File storage returns the full path of a file ... ok 419s test_file_save_broken_symlink (file_storage.tests.CustomStorageTests.test_file_save_broken_symlink) 419s A new path is created on save when a broken symlink is supplied. ... ok 419s test_file_save_with_path (file_storage.tests.CustomStorageTests.test_file_save_with_path) 419s Saving a pathname should create intermediate directories as necessary. ... ok 419s test_file_save_without_name (file_storage.tests.CustomStorageTests.test_file_save_without_name) 419s File storage extracts the filename from the content object if no ... ok 419s test_file_storage_preserves_filename_case (file_storage.tests.CustomStorageTests.test_file_storage_preserves_filename_case) 419s The storage backend should preserve case of filenames. ... ok 419s test_file_storage_prevents_directory_traversal (file_storage.tests.CustomStorageTests.test_file_storage_prevents_directory_traversal) 419s File storage prevents directory traversal (files can only be accessed if ... ok 419s test_file_url (file_storage.tests.CustomStorageTests.test_file_url) 419s File storage returns a url to access a given file from the web. ... ok 419s test_listdir (file_storage.tests.CustomStorageTests.test_listdir) 419s File storage returns a tuple containing directories and files. ... ok 419s test_makedirs_race_handling (file_storage.tests.CustomStorageTests.test_makedirs_race_handling) 419s File storage should be robust against directory creation race conditions. ... ok 419s test_remove_race_handling (file_storage.tests.CustomStorageTests.test_remove_race_handling) 419s File storage should be robust against file removal race conditions. ... ok 419s test_save_doesnt_close (file_storage.tests.CustomStorageTests.test_save_doesnt_close) ... ok 419s test_setting_changed (file_storage.tests.CustomStorageTests.test_setting_changed) 419s Properties using settings values as defaults should be updated on ... ok 419s test_base_url (file_storage.tests.DiscardingFalseContentStorageTests.test_base_url) 419s File storage returns a url even when its base_url is unset or modified. ... ok 419s test_custom_storage_discarding_empty_content (file_storage.tests.DiscardingFalseContentStorageTests.test_custom_storage_discarding_empty_content) 419s When Storage.save() wraps a file-like object in File, it should include ... ok 419s test_delete_deletes_directories (file_storage.tests.DiscardingFalseContentStorageTests.test_delete_deletes_directories) ... ok 419s test_delete_no_name (file_storage.tests.DiscardingFalseContentStorageTests.test_delete_no_name) 419s Calling delete with an empty name should not try to remove the base ... ok 419s test_empty_location (file_storage.tests.DiscardingFalseContentStorageTests.test_empty_location) 419s Makes sure an exception is raised if the location is empty ... ok 419s test_file_access_options (file_storage.tests.DiscardingFalseContentStorageTests.test_file_access_options) 419s Standard file access options are available, and work as expected. ... ok 419s test_file_chunks_error (file_storage.tests.DiscardingFalseContentStorageTests.test_file_chunks_error) 419s Test behavior when file.chunks() is raising an error ... ok 419s test_file_get_accessed_time (file_storage.tests.DiscardingFalseContentStorageTests.test_file_get_accessed_time) 419s File storage returns a Datetime object for the last accessed time of ... ok 419s test_file_get_accessed_time_timezone (file_storage.tests.DiscardingFalseContentStorageTests.test_file_get_accessed_time_timezone) ... ok 419s test_file_get_created_time (file_storage.tests.DiscardingFalseContentStorageTests.test_file_get_created_time) 419s File storage returns a datetime for the creation time of a file. ... ok 419s test_file_get_created_time_timezone (file_storage.tests.DiscardingFalseContentStorageTests.test_file_get_created_time_timezone) ... ok 419s test_file_get_modified_time (file_storage.tests.DiscardingFalseContentStorageTests.test_file_get_modified_time) 419s File storage returns a datetime for the last modified time of a file. ... ok 419s test_file_get_modified_time_timezone (file_storage.tests.DiscardingFalseContentStorageTests.test_file_get_modified_time_timezone) ... ok 419s test_file_methods_pathlib_path (file_storage.tests.DiscardingFalseContentStorageTests.test_file_methods_pathlib_path) ... ok 419s test_file_path (file_storage.tests.DiscardingFalseContentStorageTests.test_file_path) 419s File storage returns the full path of a file ... ok 419s test_file_save_broken_symlink (file_storage.tests.DiscardingFalseContentStorageTests.test_file_save_broken_symlink) 419s A new path is created on save when a broken symlink is supplied. ... ok 419s test_file_save_with_path (file_storage.tests.DiscardingFalseContentStorageTests.test_file_save_with_path) 419s Saving a pathname should create intermediate directories as necessary. ... ok 419s test_file_save_without_name (file_storage.tests.DiscardingFalseContentStorageTests.test_file_save_without_name) 419s File storage extracts the filename from the content object if no ... ok 419s test_file_storage_preserves_filename_case (file_storage.tests.DiscardingFalseContentStorageTests.test_file_storage_preserves_filename_case) 419s The storage backend should preserve case of filenames. ... ok 419s test_file_storage_prevents_directory_traversal (file_storage.tests.DiscardingFalseContentStorageTests.test_file_storage_prevents_directory_traversal) 419s File storage prevents directory traversal (files can only be accessed if ... ok 419s test_file_url (file_storage.tests.DiscardingFalseContentStorageTests.test_file_url) 419s File storage returns a url to access a given file from the web. ... ok 419s test_listdir (file_storage.tests.DiscardingFalseContentStorageTests.test_listdir) 419s File storage returns a tuple containing directories and files. ... ok 419s test_makedirs_race_handling (file_storage.tests.DiscardingFalseContentStorageTests.test_makedirs_race_handling) 419s File storage should be robust against directory creation race conditions. ... ok 419s test_remove_race_handling (file_storage.tests.DiscardingFalseContentStorageTests.test_remove_race_handling) 419s File storage should be robust against file removal race conditions. ... ok 419s test_save_doesnt_close (file_storage.tests.DiscardingFalseContentStorageTests.test_save_doesnt_close) ... ok 419s test_setting_changed (file_storage.tests.DiscardingFalseContentStorageTests.test_setting_changed) 419s Properties using settings values as defaults should be updated on ... ok 420s test_callable_base_class_error_raises (file_storage.tests.FieldCallableFileStorageTests.test_callable_base_class_error_raises) ... ok 420s test_callable_class_storage_file_field (file_storage.tests.FieldCallableFileStorageTests.test_callable_class_storage_file_field) ... ok 420s test_callable_function_storage_file_field (file_storage.tests.FieldCallableFileStorageTests.test_callable_function_storage_file_field) ... ok 420s test_callable_storage_file_field_in_model (file_storage.tests.FieldCallableFileStorageTests.test_callable_storage_file_field_in_model) ... ok 420s test_deconstruction (file_storage.tests.FieldCallableFileStorageTests.test_deconstruction) 420s Deconstructing gives the original callable, not the evaluated value. ... ok 420s test_deconstruction_storage_callable_default (file_storage.tests.FieldCallableFileStorageTests.test_deconstruction_storage_callable_default) 420s A callable that returns default_storage is not omitted when ... ok 420s test_file_field_storage_none_uses_default_storage (file_storage.tests.FieldCallableFileStorageTests.test_file_field_storage_none_uses_default_storage) ... ok 420s test_urllib_request_urlopen (file_storage.tests.FileLikeObjectTestCase.test_urllib_request_urlopen) 420s Test the File storage API with a file-like object coming from ... ok 421s test_race_condition (file_storage.tests.FileSaveRaceConditionTest.test_race_condition) ... ok 421s test_directory_with_dot (file_storage.tests.FileStoragePathParsing.test_directory_with_dot) 421s Regression test for #9610. ... ok 421s test_first_character_dot (file_storage.tests.FileStoragePathParsing.test_first_character_dot) 421s File names with a dot as their first character don't have an extension, ... ok 421s test_base_url (file_storage.tests.FileStorageTests.test_base_url) 421s File storage returns a url even when its base_url is unset or modified. ... ok 421s test_delete_deletes_directories (file_storage.tests.FileStorageTests.test_delete_deletes_directories) ... ok 421s test_delete_no_name (file_storage.tests.FileStorageTests.test_delete_no_name) 421s Calling delete with an empty name should not try to remove the base ... ok 421s test_empty_location (file_storage.tests.FileStorageTests.test_empty_location) 421s Makes sure an exception is raised if the location is empty ... ok 421s test_file_access_options (file_storage.tests.FileStorageTests.test_file_access_options) 421s Standard file access options are available, and work as expected. ... ok 421s test_file_chunks_error (file_storage.tests.FileStorageTests.test_file_chunks_error) 421s Test behavior when file.chunks() is raising an error ... ok 421s test_file_get_accessed_time (file_storage.tests.FileStorageTests.test_file_get_accessed_time) 421s File storage returns a Datetime object for the last accessed time of ... ok 421s test_file_get_accessed_time_timezone (file_storage.tests.FileStorageTests.test_file_get_accessed_time_timezone) ... ok 421s test_file_get_created_time (file_storage.tests.FileStorageTests.test_file_get_created_time) 421s File storage returns a datetime for the creation time of a file. ... ok 421s test_file_get_created_time_timezone (file_storage.tests.FileStorageTests.test_file_get_created_time_timezone) ... ok 421s test_file_get_modified_time (file_storage.tests.FileStorageTests.test_file_get_modified_time) 421s File storage returns a datetime for the last modified time of a file. ... ok 421s test_file_get_modified_time_timezone (file_storage.tests.FileStorageTests.test_file_get_modified_time_timezone) ... ok 421s test_file_methods_pathlib_path (file_storage.tests.FileStorageTests.test_file_methods_pathlib_path) ... ok 421s test_file_path (file_storage.tests.FileStorageTests.test_file_path) 421s File storage returns the full path of a file ... ok 421s test_file_save_broken_symlink (file_storage.tests.FileStorageTests.test_file_save_broken_symlink) 421s A new path is created on save when a broken symlink is supplied. ... ok 421s test_file_save_with_path (file_storage.tests.FileStorageTests.test_file_save_with_path) 421s Saving a pathname should create intermediate directories as necessary. ... ok 421s test_file_save_without_name (file_storage.tests.FileStorageTests.test_file_save_without_name) 421s File storage extracts the filename from the content object if no ... ok 421s test_file_storage_preserves_filename_case (file_storage.tests.FileStorageTests.test_file_storage_preserves_filename_case) 421s The storage backend should preserve case of filenames. ... ok 421s test_file_storage_prevents_directory_traversal (file_storage.tests.FileStorageTests.test_file_storage_prevents_directory_traversal) 421s File storage prevents directory traversal (files can only be accessed if ... ok 421s test_file_url (file_storage.tests.FileStorageTests.test_file_url) 421s File storage returns a url to access a given file from the web. ... ok 421s test_listdir (file_storage.tests.FileStorageTests.test_listdir) 421s File storage returns a tuple containing directories and files. ... ok 421s test_makedirs_race_handling (file_storage.tests.FileStorageTests.test_makedirs_race_handling) 421s File storage should be robust against directory creation race conditions. ... ok 421s test_remove_race_handling (file_storage.tests.FileStorageTests.test_remove_race_handling) 421s File storage should be robust against file removal race conditions. ... ok 421s test_save_doesnt_close (file_storage.tests.FileStorageTests.test_save_doesnt_close) ... ok 421s test_setting_changed (file_storage.tests.FileStorageTests.test_setting_changed) 421s Properties using settings values as defaults should be updated on ... ok 421s test_deprecation_warning (file_storage.tests.GetStorageClassTests.test_deprecation_warning) ... ok 421s test_get_filesystem_storage (file_storage.tests.GetStorageClassTests.test_get_filesystem_storage) 421s get_storage_class returns the class for a storage backend name/path. ... ok 421s test_get_invalid_storage_module (file_storage.tests.GetStorageClassTests.test_get_invalid_storage_module) 421s get_storage_class raises an error if the requested import don't exist. ... ok 421s test_get_nonexistent_storage_class (file_storage.tests.GetStorageClassTests.test_get_nonexistent_storage_class) 421s get_storage_class raises an error if the requested class don't exist. ... ok 421s test_get_nonexistent_storage_module (file_storage.tests.GetStorageClassTests.test_get_nonexistent_storage_module) 421s get_storage_class raises an error if the requested module don't exist. ... ok 421s test_base_url (file_storage.tests.OverwritingStorageTests.test_base_url) 421s File storage returns a url even when its base_url is unset or modified. ... ok 421s test_delete_deletes_directories (file_storage.tests.OverwritingStorageTests.test_delete_deletes_directories) ... ok 421s test_delete_no_name (file_storage.tests.OverwritingStorageTests.test_delete_no_name) 421s Calling delete with an empty name should not try to remove the base ... ok 421s test_empty_location (file_storage.tests.OverwritingStorageTests.test_empty_location) 421s Makes sure an exception is raised if the location is empty ... ok 421s test_file_access_options (file_storage.tests.OverwritingStorageTests.test_file_access_options) 421s Standard file access options are available, and work as expected. ... ok 421s test_file_chunks_error (file_storage.tests.OverwritingStorageTests.test_file_chunks_error) 421s Test behavior when file.chunks() is raising an error ... ok 421s test_file_get_accessed_time (file_storage.tests.OverwritingStorageTests.test_file_get_accessed_time) 421s File storage returns a Datetime object for the last accessed time of ... ok 421s test_file_get_accessed_time_timezone (file_storage.tests.OverwritingStorageTests.test_file_get_accessed_time_timezone) ... ok 421s test_file_get_created_time (file_storage.tests.OverwritingStorageTests.test_file_get_created_time) 421s File storage returns a datetime for the creation time of a file. ... ok 421s test_file_get_created_time_timezone (file_storage.tests.OverwritingStorageTests.test_file_get_created_time_timezone) ... ok 421s test_file_get_modified_time (file_storage.tests.OverwritingStorageTests.test_file_get_modified_time) 421s File storage returns a datetime for the last modified time of a file. ... ok 421s test_file_get_modified_time_timezone (file_storage.tests.OverwritingStorageTests.test_file_get_modified_time_timezone) ... ok 421s test_file_methods_pathlib_path (file_storage.tests.OverwritingStorageTests.test_file_methods_pathlib_path) ... ok 421s test_file_path (file_storage.tests.OverwritingStorageTests.test_file_path) 421s File storage returns the full path of a file ... ok 421s test_file_save_broken_symlink (file_storage.tests.OverwritingStorageTests.test_file_save_broken_symlink) 421s A new path is created on save when a broken symlink is supplied. ... ok 421s test_file_save_with_path (file_storage.tests.OverwritingStorageTests.test_file_save_with_path) 421s Saving a pathname should create intermediate directories as necessary. ... ok 421s test_file_save_without_name (file_storage.tests.OverwritingStorageTests.test_file_save_without_name) 421s File storage extracts the filename from the content object if no ... ok 421s test_file_storage_preserves_filename_case (file_storage.tests.OverwritingStorageTests.test_file_storage_preserves_filename_case) 421s The storage backend should preserve case of filenames. ... ok 421s test_file_storage_prevents_directory_traversal (file_storage.tests.OverwritingStorageTests.test_file_storage_prevents_directory_traversal) 421s File storage prevents directory traversal (files can only be accessed if ... ok 421s test_file_url (file_storage.tests.OverwritingStorageTests.test_file_url) 421s File storage returns a url to access a given file from the web. ... ok 421s test_listdir (file_storage.tests.OverwritingStorageTests.test_listdir) 421s File storage returns a tuple containing directories and files. ... ok 421s test_makedirs_race_handling (file_storage.tests.OverwritingStorageTests.test_makedirs_race_handling) 421s File storage should be robust against directory creation race conditions. ... ok 421s test_remove_race_handling (file_storage.tests.OverwritingStorageTests.test_remove_race_handling) 421s File storage should be robust against file removal race conditions. ... ok 421s test_save_doesnt_close (file_storage.tests.OverwritingStorageTests.test_save_doesnt_close) ... ok 421s test_save_overwrite_behavior (file_storage.tests.OverwritingStorageTests.test_save_overwrite_behavior) 421s Saving to same file name twice overwrites the first file. ... ok 421s test_setting_changed (file_storage.tests.OverwritingStorageTests.test_setting_changed) 421s Properties using settings values as defaults should be updated on ... ok 421s test_defaults (file_storage.tests.StorageHandlerTests.test_defaults) ... ok 421s test_nonexistent_alias (file_storage.tests.StorageHandlerTests.test_nonexistent_alias) ... ok 421s test_nonexistent_backend (file_storage.tests.StorageHandlerTests.test_nonexistent_backend) ... ok 421s test_same_instance (file_storage.tests.StorageHandlerTests.test_same_instance) ... ok 421s test_https (servers.test_basehttp.WSGIRequestHandlerTestCase.test_https) ... ok 421s test_log_message (servers.test_basehttp.WSGIRequestHandlerTestCase.test_log_message) ... ok 421s test_no_body_returned_for_head_requests (servers.test_basehttp.WSGIRequestHandlerTestCase.test_no_body_returned_for_head_requests) ... ok 421s test_strips_underscore_headers (servers.test_basehttp.WSGIRequestHandlerTestCase.test_strips_underscore_headers) 421s WSGIRequestHandler ignores headers containing underscores. ... ok 421s test_broken_pipe_errors (servers.test_basehttp.WSGIServerTestCase.test_broken_pipe_errors) 421s WSGIServer handles broken pipe errors. ... ok 421s test_closes_connections (servers.test_liveserverthread.LiveServerThreadTest.test_closes_connections) ... skipped "the sqlite backend's close() method is a no-op when using an in-memory database" 421s test_server_class (servers.test_liveserverthread.LiveServerThreadTest.test_server_class) ... ok 422s test_live_server_url_is_class_property (servers.tests.LiveServerAddress.test_live_server_url_is_class_property) ... ok 422s test_database_writes (servers.tests.LiveServerDatabase.test_database_writes) 422s Data written to the database by a view can be read. ... ok 422s test_fixtures_loaded (servers.tests.LiveServerDatabase.test_fixtures_loaded) 422s Fixtures are properly loaded and visible to the live server thread. ... ok 423s test_in_memory_database_lock (servers.tests.LiveServerInMemoryDatabaseLockTest.test_in_memory_database_lock) 423s With a threaded LiveServer and an in-memory database, an error can ... ok 423s Exception ignored in: 423s Traceback (most recent call last): 423s File "", line 1, in 423s ResourceWarning: unclosed database in 423s Exception ignored in: 423s Traceback (most recent call last): 423s File "", line 1, in 423s ResourceWarning: unclosed database in 423s Exception ignored in: 423s Traceback (most recent call last): 423s File "", line 1, in 423s ResourceWarning: unclosed database in 423s Exception ignored in: 423s Traceback (most recent call last): 423s File "", line 1, in 423s ResourceWarning: unclosed database in 425s test_port_bind (servers.tests.LiveServerPort.test_port_bind) 425s Each LiveServerTestCase binds to a unique port or fails to start a ... ok 425s test_specified_port_bind (servers.tests.LiveServerPort.test_specified_port_bind) 425s LiveServerTestCase.port customizes the server's port. ... ok 425s test_set_up_class (servers.tests.LiveServerTestCaseSetupTest.test_set_up_class) ... ok 425s test_closes_connections (servers.tests.LiveServerTestCloseConnectionTest.test_closes_connections) ... skipped "the sqlite backend's close() method is a no-op when using an in-memory database" 426s test_check_model_instance_from_subview (servers.tests.LiveServerThreadedTests.test_check_model_instance_from_subview) ... ok 426s test_view_calls_subview (servers.tests.LiveServerThreadedTests.test_view_calls_subview) ... ok 427s test_404 (servers.tests.LiveServerViews.test_404) ... ok 427s test_closes_connection_without_content_length (servers.tests.LiveServerViews.test_closes_connection_without_content_length) 427s An HTTP 1.1 server is supposed to support keep-alive. Since our ... ok 427s test_environ (servers.tests.LiveServerViews.test_environ) ... ok 427s test_keep_alive_connection_clears_previous_request_data (servers.tests.LiveServerViews.test_keep_alive_connection_clears_previous_request_data) ... ok 427s test_keep_alive_on_connection_with_content_length (servers.tests.LiveServerViews.test_keep_alive_on_connection_with_content_length) 427s See `test_closes_connection_without_content_length` for details. This ... ok 427s test_media_files (servers.tests.LiveServerViews.test_media_files) ... ok 427s test_no_collectstatic_emulation (servers.tests.LiveServerViews.test_no_collectstatic_emulation) 427s LiveServerTestCase reports a 404 status code when HTTP client ... ok 427s test_protocol (servers.tests.LiveServerViews.test_protocol) 427s Launched server serves with HTTP 1.1. ... ok 427s test_static_files (servers.tests.LiveServerViews.test_static_files) ... ok 427s test_view (servers.tests.LiveServerViews.test_view) ... ok 427s test_closes_connection_with_content_length (servers.tests.SingleThreadLiveServerViews.test_closes_connection_with_content_length) 427s Contrast to ... ok 427s test_default (responses.test_cookie.DeleteCookieTests.test_default) ... ok 427s test_delete_cookie_samesite (responses.test_cookie.DeleteCookieTests.test_delete_cookie_samesite) ... ok 427s test_delete_cookie_secure_prefix (responses.test_cookie.DeleteCookieTests.test_delete_cookie_secure_prefix) 427s delete_cookie() sets the secure flag if the cookie name starts with ... ok 427s test_delete_cookie_secure_samesite_none (responses.test_cookie.DeleteCookieTests.test_delete_cookie_secure_samesite_none) ... ok 427s test_aware_expiration (responses.test_cookie.SetCookieTests.test_aware_expiration) 427s set_cookie() accepts an aware datetime as expiration time. ... ok 427s test_create_cookie_after_deleting_cookie (responses.test_cookie.SetCookieTests.test_create_cookie_after_deleting_cookie) 427s Setting a cookie after deletion clears the expiry date. ... ok 427s test_far_expiration (responses.test_cookie.SetCookieTests.test_far_expiration) 427s Cookie will expire when a distant expiration time is provided. ... ok 427s test_httponly_cookie (responses.test_cookie.SetCookieTests.test_httponly_cookie) ... ok 427s test_invalid_samesite (responses.test_cookie.SetCookieTests.test_invalid_samesite) ... ok 427s test_max_age_expiration (responses.test_cookie.SetCookieTests.test_max_age_expiration) 427s Cookie will expire if max_age is provided. ... ok 427s test_max_age_int (responses.test_cookie.SetCookieTests.test_max_age_int) ... ok 427s test_max_age_timedelta (responses.test_cookie.SetCookieTests.test_max_age_timedelta) ... ok 427s test_max_age_with_expires (responses.test_cookie.SetCookieTests.test_max_age_with_expires) ... ok 427s test_near_expiration (responses.test_cookie.SetCookieTests.test_near_expiration) 427s Cookie will expire when a near expiration time is provided. ... ok 427s test_samesite (responses.test_cookie.SetCookieTests.test_samesite) ... ok 427s test_unicode_cookie (responses.test_cookie.SetCookieTests.test_unicode_cookie) 427s HttpResponse.set_cookie() works with Unicode data. ... ok 427s test_buffer_explicit_absolute_filename (responses.test_fileresponse.FileResponseTests.test_buffer_explicit_absolute_filename) 427s Headers are set correctly with a buffer when an absolute filename is ... ok 427s test_compressed_response (responses.test_fileresponse.FileResponseTests.test_compressed_response) 427s If compressed responses are served with the uncompressed Content-Type ... ok 427s test_content_disposition_buffer (responses.test_fileresponse.FileResponseTests.test_content_disposition_buffer) ... ok 427s test_content_disposition_buffer_attachment (responses.test_fileresponse.FileResponseTests.test_content_disposition_buffer_attachment) ... ok 427s test_content_disposition_buffer_explicit_filename (responses.test_fileresponse.FileResponseTests.test_content_disposition_buffer_explicit_filename) ... ok 427s test_content_disposition_escaping (responses.test_fileresponse.FileResponseTests.test_content_disposition_escaping) ... ok 427s test_content_disposition_file (responses.test_fileresponse.FileResponseTests.test_content_disposition_file) ... ok 427s test_content_length_buffer (responses.test_fileresponse.FileResponseTests.test_content_length_buffer) ... ok 427s test_content_length_file (responses.test_fileresponse.FileResponseTests.test_content_length_file) ... ok 427s test_content_length_nonzero_starting_position_buffer (responses.test_fileresponse.FileResponseTests.test_content_length_nonzero_starting_position_buffer) ... ok 427s test_content_length_nonzero_starting_position_file (responses.test_fileresponse.FileResponseTests.test_content_length_nonzero_starting_position_file) ... ok 427s test_content_length_nonzero_starting_position_file_seekable_no_tell (responses.test_fileresponse.FileResponseTests.test_content_length_nonzero_starting_position_file_seekable_no_tell) ... ok 427s test_content_type_buffer (responses.test_fileresponse.FileResponseTests.test_content_type_buffer) ... ok 427s test_content_type_buffer_explicit (responses.test_fileresponse.FileResponseTests.test_content_type_buffer_explicit) ... ok 427s test_content_type_buffer_explicit_default (responses.test_fileresponse.FileResponseTests.test_content_type_buffer_explicit_default) ... ok 427s test_content_type_buffer_named (responses.test_fileresponse.FileResponseTests.test_content_type_buffer_named) ... ok 427s test_content_type_file (responses.test_fileresponse.FileResponseTests.test_content_type_file) ... ok 427s test_file_from_named_pipe_response (responses.test_fileresponse.FileResponseTests.test_file_from_named_pipe_response) ... ok 427s test_repr (responses.test_fileresponse.FileResponseTests.test_repr) ... ok 427s test_response_buffer (responses.test_fileresponse.FileResponseTests.test_response_buffer) ... ok 427s test_response_nonzero_starting_position (responses.test_fileresponse.FileResponseTests.test_response_nonzero_starting_position) ... ok 427s test_unicode_attachment (responses.test_fileresponse.FileResponseTests.test_unicode_attachment) ... ok 427s test_closed (responses.tests.HttpResponseBaseTests.test_closed) ... ok 427s test_setdefault (responses.tests.HttpResponseBaseTests.test_setdefault) 427s HttpResponseBase.setdefault() should not change an existing header ... ok 427s test_tell (responses.tests.HttpResponseBaseTests.test_tell) ... ok 427s test_write (responses.tests.HttpResponseBaseTests.test_write) ... ok 427s test_change_status_code (responses.tests.HttpResponseTests.test_change_status_code) ... ok 427s test_charset_detection (responses.tests.HttpResponseTests.test_charset_detection) 427s HttpResponse should parse charset from content_type. ... ok 427s test_generator_cache (responses.tests.HttpResponseTests.test_generator_cache) ... ok 427s test_invalid_status_code (responses.tests.HttpResponseTests.test_invalid_status_code) ... ok 427s test_reason_phrase (responses.tests.HttpResponseTests.test_reason_phrase) ... ok 427s test_repr (responses.tests.HttpResponseTests.test_repr) ... ok 427s test_repr_no_content_type (responses.tests.HttpResponseTests.test_repr_no_content_type) ... ok 427s test_response_content_charset (responses.tests.HttpResponseTests.test_response_content_charset) 427s HttpResponse should encode based on charset. ... ok 427s test_status_code (responses.tests.HttpResponseTests.test_status_code) ... ok 427s test_valid_status_code_string (responses.tests.HttpResponseTests.test_valid_status_code_string) ... ok 427s test_wrap_textiowrapper (responses.tests.HttpResponseTests.test_wrap_textiowrapper) ... ok 427s test_delete (sites_tests.tests.RequestSiteTests.test_delete) ... ok 427s test_init_attributes (sites_tests.tests.RequestSiteTests.test_init_attributes) ... ok 427s test_save (sites_tests.tests.RequestSiteTests.test_save) ... ok 427s test_str (sites_tests.tests.RequestSiteTests.test_str) ... ok 427s test_repr (serializers.test_deserializedobject.TestDeserializedObjectTests.test_repr) ... ok 427s test_lazy_string_encoding (serializers.test_json.DjangoJSONEncoderTests.test_lazy_string_encoding) ... ok 427s test_timedelta (serializers.test_json.DjangoJSONEncoderTests.test_timedelta) ... ok 429s test_forward_refs (serializers.test_json.JsonSerializerTransactionTestCase.test_forward_refs) 429s Objects ids can be referenced before they are ... ok 429s test_forward_refs (serializers.test_jsonl.JsonSerializerTransactionTestCase.test_forward_refs) 429s Objects ids can be referenced before they are ... ok 429s test_forward_refs (serializers.test_xml.XmlSerializerTransactionTestCase.test_forward_refs) 429s Objects ids can be referenced before they are ... ok 429s test_deserializer_pyyaml_error_message (serializers.test_yaml.NoYamlSerializerTestCase.test_deserializer_pyyaml_error_message) 429s Using yaml deserializer without pyyaml raises ImportError ... ok 429s test_dumpdata_pyyaml_error_message (serializers.test_yaml.NoYamlSerializerTestCase.test_dumpdata_pyyaml_error_message) 429s Calling dumpdata produces an error when yaml package missing ... ok 429s test_serializer_pyyaml_error_message (serializers.test_yaml.NoYamlSerializerTestCase.test_serializer_pyyaml_error_message) 429s Using yaml serializer without pyyaml raises ImportError ... ok 429s test_forward_refs (serializers.test_yaml.YamlSerializerTransactionTestCase.test_forward_refs) 429s Objects ids can be referenced before they are ... ok 429s test_serializer_loads_dumps (serializers.tests.PickleSerializerTests.test_serializer_loads_dumps) ... ok 429s test_serializer_protocol (serializers.tests.PickleSerializerTests.test_serializer_protocol) ... ok 429s test_serializer_warning (serializers.tests.PickleSerializerTests.test_serializer_warning) ... ok 429s test_stream_class (serializers.tests.SerializerAPITests.test_stream_class) ... ok 429s test_builtin_serializers (serializers.tests.SerializerRegistrationTests.test_builtin_serializers) 429s Requesting a list of serializer formats populates the registry ... ok 429s test_get_unknown_deserializer (serializers.tests.SerializerRegistrationTests.test_get_unknown_deserializer) ... ok 429s test_get_unknown_serializer (serializers.tests.SerializerRegistrationTests.test_get_unknown_serializer) 429s #15889: get_serializer('nonsense') raises a SerializerDoesNotExist ... ok 429s test_register (serializers.tests.SerializerRegistrationTests.test_register) 429s Registering a new serializer populates the full registry. Refs #14823 ... ok 429s test_unregister (serializers.tests.SerializerRegistrationTests.test_unregister) 429s Unregistering a serializer doesn't cause the registry to be ... ok 429s test_unregister_unknown_serializer (serializers.tests.SerializerRegistrationTests.test_unregister_unknown_serializer) ... ok 429s test_health_checks_disabled (backends.base.test_base.ConnectionHealthChecksTests.test_health_checks_disabled) ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 429s test_health_checks_enabled (backends.base.test_base.ConnectionHealthChecksTests.test_health_checks_enabled) ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 429s test_health_checks_enabled_errors_occurred (backends.base.test_base.ConnectionHealthChecksTests.test_health_checks_enabled_errors_occurred) ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 429s test_set_autocommit_health_checks_enabled (backends.base.test_base.ConnectionHealthChecksTests.test_set_autocommit_health_checks_enabled) ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 429s test_commit_debug_log (backends.base.test_base.DatabaseWrapperLoggingTests.test_commit_debug_log) ... ok 429s test_no_logs_without_debug (backends.base.test_base.DatabaseWrapperLoggingTests.test_no_logs_without_debug) ... ok 429s test_rollback_debug_log (backends.base.test_base.DatabaseWrapperLoggingTests.test_rollback_debug_log) ... ok 429s test_check_database_version_supported_with_none_as_database_version (backends.base.test_base.DatabaseWrapperTests.test_check_database_version_supported_with_none_as_database_version) ... ok 429s test_get_database_version (backends.base.test_base.DatabaseWrapperTests.test_get_database_version) ... ok 429s test_initialization_class_attributes (backends.base.test_base.DatabaseWrapperTests.test_initialization_class_attributes) 429s The "initialization" class attributes like client_class and ... ok 429s test_initialization_display_name (backends.base.test_base.DatabaseWrapperTests.test_initialization_display_name) ... ok 429s test_repr (backends.base.test_base.DatabaseWrapperTests.test_repr) ... ok 429s test_runshell_use_environ (backends.base.test_client.SimpleDatabaseClientTests.test_runshell_use_environ) ... ok 429s test_settings_to_cmd_args_env (backends.base.test_client.SimpleDatabaseClientTests.test_settings_to_cmd_args_env) ... ok 429s test_mark_expected_failures_and_skips_call (backends.base.test_creation.TestDbCreationTests.test_mark_expected_failures_and_skips_call) 429s mark_expected_failures_and_skips() isn't called unless ... ok 429s test_migrate_test_setting_false (backends.base.test_creation.TestDbCreationTests.test_migrate_test_setting_false) ... ok 429s test_migrate_test_setting_false_ensure_schema (backends.base.test_creation.TestDbCreationTests.test_migrate_test_setting_false_ensure_schema) ... ok 429s test_migrate_test_setting_true (backends.base.test_creation.TestDbCreationTests.test_migrate_test_setting_true) ... ok 429s test_custom_test_name (backends.base.test_creation.TestDbSignatureTests.test_custom_test_name) ... ok 429s test_custom_test_name_with_test_prefix (backends.base.test_creation.TestDbSignatureTests.test_custom_test_name_with_test_prefix) ... ok 429s test_default_name (backends.base.test_creation.TestDbSignatureTests.test_default_name) ... ok 430s test_circular_reference (backends.base.test_creation.TestDeserializeDbFromString.test_circular_reference) ... ok 430s test_circular_reference_with_natural_key (backends.base.test_creation.TestDeserializeDbFromString.test_circular_reference_with_natural_key) ... ok 430s test_self_reference (backends.base.test_creation.TestDeserializeDbFromString.test_self_reference) ... ok 430s test_serialize_db_to_string_base_manager (backends.base.test_creation.TestDeserializeDbFromString.test_serialize_db_to_string_base_manager) ... ok 430s test_mark_expected_failures_and_skips (backends.base.test_creation.TestMarkTests.test_mark_expected_failures_and_skips) ... ok 430s test_nonexistent_feature (backends.base.test_features.TestDatabaseFeatures.test_nonexistent_feature) ... ok 430s test_get_constraints (backends.base.test_introspection.SimpleDatabaseIntrospectionTests.test_get_constraints) ... ok 430s test_get_relations (backends.base.test_introspection.SimpleDatabaseIntrospectionTests.test_get_relations) ... ok 430s test_get_sequences (backends.base.test_introspection.SimpleDatabaseIntrospectionTests.test_get_sequences) ... ok 430s test_get_table_description (backends.base.test_introspection.SimpleDatabaseIntrospectionTests.test_get_table_description) ... ok 430s test_get_table_list (backends.base.test_introspection.SimpleDatabaseIntrospectionTests.test_get_table_list) ... ok 430s test_adapt_datetimefield_value_expression (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_datetimefield_value_expression) ... ok 430s test_adapt_datetimefield_value_none (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_datetimefield_value_none) ... ok 430s test_adapt_timefield_value (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_timefield_value) ... ok 430s test_adapt_timefield_value_expression (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_timefield_value_expression) ... ok 430s test_adapt_timefield_value_none (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_timefield_value_none) ... ok 430s test_adapt_timefield_value_unaware (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_timefield_value_unaware) ... ok 430s test_adapt_unknown_value_date (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_unknown_value_date) ... ok 430s test_adapt_unknown_value_decimal (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_unknown_value_decimal) ... ok 430s test_adapt_unknown_value_time (backends.base.test_operations.SimpleDatabaseOperationTests.test_adapt_unknown_value_time) ... ok 430s test_date_extract_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_date_extract_sql) ... ok 430s test_date_trunc_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_date_trunc_sql) ... ok 430s test_datetime_cast_date_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_datetime_cast_date_sql) ... ok 430s test_datetime_cast_time_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_datetime_cast_time_sql) ... ok 430s test_datetime_extract_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_datetime_extract_sql) ... ok 430s test_datetime_trunc_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_datetime_trunc_sql) ... ok 430s test_deferrable_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_deferrable_sql) ... ok 430s test_end_transaction_rollback (backends.base.test_operations.SimpleDatabaseOperationTests.test_end_transaction_rollback) ... ok 430s test_format_for_duration_arithmetic (backends.base.test_operations.SimpleDatabaseOperationTests.test_format_for_duration_arithmetic) ... ok 430s test_no_limit_value (backends.base.test_operations.SimpleDatabaseOperationTests.test_no_limit_value) ... ok 430s test_pk_default_value (backends.base.test_operations.SimpleDatabaseOperationTests.test_pk_default_value) ... ok 430s test_quote_name (backends.base.test_operations.SimpleDatabaseOperationTests.test_quote_name) ... ok 430s test_regex_lookup (backends.base.test_operations.SimpleDatabaseOperationTests.test_regex_lookup) ... ok 430s test_sequence_reset_by_name_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_sequence_reset_by_name_sql) ... ok 430s test_set_time_zone_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_set_time_zone_sql) ... ok 430s test_sql_flush (backends.base.test_operations.SimpleDatabaseOperationTests.test_sql_flush) ... ok 430s test_tablespace_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_tablespace_sql) ... ok 430s test_time_extract_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_time_extract_sql) ... ok 430s test_time_trunc_sql (backends.base.test_operations.SimpleDatabaseOperationTests.test_time_trunc_sql) ... ok 430s test_execute_sql_flush_statements (backends.base.test_operations.SqlFlushTests.test_execute_sql_flush_statements) ... ok 430s test_sql_flush_no_tables (backends.base.test_operations.SqlFlushTests.test_sql_flush_no_tables) ... ok 430s test_effective_default_callable (backends.base.test_schema.SchemaEditorTests.test_effective_default_callable) 430s SchemaEditor.effective_default() shouldn't call callable defaults. ... ok 430s test_clone_test_db_database_exists (backends.mysql.test_creation.DatabaseCreationTests.test_clone_test_db_database_exists) ... skipped 'MySQL tests' 430s test_clone_test_db_options_ordering (backends.mysql.test_creation.DatabaseCreationTests.test_clone_test_db_options_ordering) ... skipped 'MySQL tests' 430s test_create_test_db_database_exists (backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_database_exists) ... skipped 'MySQL tests' 430s test_create_test_db_unexpected_error (backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error) ... skipped 'MySQL tests' 430s test_sql_flush (backends.mysql.test_operations.MySQLOperationsTests.test_sql_flush) ... skipped 'MySQL tests.' 430s test_sql_flush_sequences (backends.mysql.test_operations.MySQLOperationsTests.test_sql_flush_sequences) ... skipped 'MySQL tests.' 430s test_get_sequences (backends.oracle.test_introspection.DatabaseSequenceTests.test_get_sequences) ... skipped 'Oracle tests' 430s test_get_sequences_manually_created_index (backends.oracle.test_introspection.DatabaseSequenceTests.test_get_sequences_manually_created_index) ... skipped 'Oracle tests' 430s test_bulk_batch_size (backends.oracle.test_operations.OperationsTests.test_bulk_batch_size) ... skipped 'Oracle tests' 430s test_sequence_name_truncation (backends.oracle.test_operations.OperationsTests.test_sequence_name_truncation) ... skipped 'Oracle tests' 430s test_sql_flush (backends.oracle.test_operations.OperationsTests.test_sql_flush) ... skipped 'Oracle tests' 430s test_sql_flush_allow_cascade (backends.oracle.test_operations.OperationsTests.test_sql_flush_allow_cascade) ... skipped 'Oracle tests' 430s test_sql_flush_sequences (backends.oracle.test_operations.OperationsTests.test_sql_flush_sequences) ... skipped 'Oracle tests' 430s test_sql_flush_sequences_allow_cascade (backends.oracle.test_operations.OperationsTests.test_sql_flush_sequences_allow_cascade) ... skipped 'Oracle tests' 430s test_hidden_no_data_found_exception (backends.oracle.tests.TransactionalTests.test_hidden_no_data_found_exception) ... skipped 'Oracle tests' 430s test_password_with_at_sign (backends.oracle.tests.TransactionalTests.test_password_with_at_sign) ... skipped 'Oracle tests' 430s test_create_test_db (backends.postgresql.test_creation.DatabaseCreationTests.test_create_test_db) ... skipped 'PostgreSQL tests' 430s test_sql_table_creation_raises_with_collation (backends.postgresql.test_creation.DatabaseCreationTests.test_sql_table_creation_raises_with_collation) ... skipped 'PostgreSQL tests' 430s test_sql_table_creation_suffix_with_encoding (backends.postgresql.test_creation.DatabaseCreationTests.test_sql_table_creation_suffix_with_encoding) ... skipped 'PostgreSQL tests' 430s test_sql_table_creation_suffix_with_encoding_and_template (backends.postgresql.test_creation.DatabaseCreationTests.test_sql_table_creation_suffix_with_encoding_and_template) ... skipped 'PostgreSQL tests' 430s test_sql_table_creation_suffix_with_none_settings (backends.postgresql.test_creation.DatabaseCreationTests.test_sql_table_creation_suffix_with_none_settings) ... skipped 'PostgreSQL tests' 430s test_sql_table_creation_suffix_with_template (backends.postgresql.test_creation.DatabaseCreationTests.test_sql_table_creation_suffix_with_template) ... skipped 'PostgreSQL tests' 430s test_sql_flush (backends.postgresql.test_operations.PostgreSQLOperationsTests.test_sql_flush) ... skipped 'PostgreSQL tests.' 430s test_sql_flush_allow_cascade (backends.postgresql.test_operations.PostgreSQLOperationsTests.test_sql_flush_allow_cascade) ... skipped 'PostgreSQL tests.' 430s test_sql_flush_sequences (backends.postgresql.test_operations.PostgreSQLOperationsTests.test_sql_flush_sequences) ... skipped 'PostgreSQL tests.' 430s test_sql_flush_sequences_allow_cascade (backends.postgresql.test_operations.PostgreSQLOperationsTests.test_sql_flush_sequences_allow_cascade) ... skipped 'PostgreSQL tests.' 430s test_custom_test_name (backends.sqlite.test_creation.TestDbSignatureTests.test_custom_test_name) ... ok 430s test_get_test_db_clone_settings_name (backends.sqlite.test_creation.TestDbSignatureTests.test_get_test_db_clone_settings_name) ... ok 430s test_get_test_db_clone_settings_not_supported (backends.sqlite.test_creation.TestDbSignatureTests.test_get_test_db_clone_settings_not_supported) ... ok 430s test_sqlite_date_trunc (backends.sqlite.test_functions.FunctionTests.test_sqlite_date_trunc) ... ok 430s test_sqlite_datetime_trunc (backends.sqlite.test_functions.FunctionTests.test_sqlite_datetime_trunc) ... ok 430s test_sqlite_time_trunc (backends.sqlite.test_functions.FunctionTests.test_sqlite_time_trunc) ... ok 430s test_autoincrement (backends.sqlite.tests.SchemaTests.test_autoincrement) 430s auto_increment fields are created with the AUTOINCREMENT keyword ... ok 430s test_constraint_checks_disabled_atomic_allowed (backends.sqlite.tests.SchemaTests.test_constraint_checks_disabled_atomic_allowed) 430s SQLite schema editor is usable within an outer transaction as long as ... ok 430s test_disable_constraint_checking_failure_disallowed (backends.sqlite.tests.SchemaTests.test_disable_constraint_checking_failure_disallowed) 430s SQLite schema editor is not usable within an outer transaction if ... ok 430s test_field_rename_inside_atomic_block (backends.sqlite.tests.SchemaTests.test_field_rename_inside_atomic_block) 430s NotImplementedError is raised when a model field rename is attempted ... skipped 'Database has feature(s) supports_atomic_references_rename' 430s test_table_rename_inside_atomic_block (backends.sqlite.tests.SchemaTests.test_table_rename_inside_atomic_block) 430s NotImplementedError is raised when a table rename is attempted inside ... skipped 'Database has feature(s) supports_atomic_references_rename' 430s test_database_sharing_in_threads (backends.sqlite.tests.ThreadSharing.test_database_sharing_in_threads) ... ok 430s test_references_column (backends.test_ddl_references.ColumnsTests.test_references_column) ... ok 430s test_references_table (backends.test_ddl_references.ColumnsTests.test_references_table) ... ok 430s test_rename_column_references (backends.test_ddl_references.ColumnsTests.test_rename_column_references) ... ok 430s test_rename_table_references (backends.test_ddl_references.ColumnsTests.test_rename_table_references) ... ok 430s test_repr (backends.test_ddl_references.ColumnsTests.test_repr) ... ok 430s test_str (backends.test_ddl_references.ColumnsTests.test_str) ... ok 430s test_references_column (backends.test_ddl_references.ExpressionsTests.test_references_column) ... ok 430s test_references_table (backends.test_ddl_references.ExpressionsTests.test_references_table) ... ok 430s test_rename_column_references (backends.test_ddl_references.ExpressionsTests.test_rename_column_references) ... ok 430s test_rename_table_references (backends.test_ddl_references.ExpressionsTests.test_rename_table_references) ... ok 430s test_rename_table_references_without_alias (backends.test_ddl_references.ExpressionsTests.test_rename_table_references_without_alias) ... ok 430s test_str (backends.test_ddl_references.ExpressionsTests.test_str) ... ok 430s test_references_column (backends.test_ddl_references.ForeignKeyNameTests.test_references_column) ... ok 430s test_references_table (backends.test_ddl_references.ForeignKeyNameTests.test_references_table) ... ok 430s test_rename_column_references (backends.test_ddl_references.ForeignKeyNameTests.test_rename_column_references) ... ok 430s test_rename_table_references (backends.test_ddl_references.ForeignKeyNameTests.test_rename_table_references) ... ok 430s test_repr (backends.test_ddl_references.ForeignKeyNameTests.test_repr) ... ok 430s test_str (backends.test_ddl_references.ForeignKeyNameTests.test_str) ... ok 430s test_references_column (backends.test_ddl_references.IndexNameTests.test_references_column) ... ok 430s test_references_table (backends.test_ddl_references.IndexNameTests.test_references_table) ... ok 430s test_rename_column_references (backends.test_ddl_references.IndexNameTests.test_rename_column_references) ... ok 430s test_rename_table_references (backends.test_ddl_references.IndexNameTests.test_rename_table_references) ... ok 430s test_repr (backends.test_ddl_references.IndexNameTests.test_repr) ... ok 430s test_str (backends.test_ddl_references.IndexNameTests.test_str) ... ok 430s test_references_column (backends.test_ddl_references.StatementTests.test_references_column) ... ok 430s test_references_table (backends.test_ddl_references.StatementTests.test_references_table) ... ok 430s test_rename_column_references (backends.test_ddl_references.StatementTests.test_rename_column_references) ... ok 430s test_rename_table_references (backends.test_ddl_references.StatementTests.test_rename_table_references) ... ok 430s test_repr (backends.test_ddl_references.StatementTests.test_repr) ... ok 430s test_str (backends.test_ddl_references.StatementTests.test_str) ... ok 430s test_references_table (backends.test_ddl_references.TableTests.test_references_table) ... ok 430s test_rename_table_references (backends.test_ddl_references.TableTests.test_rename_table_references) ... ok 430s test_repr (backends.test_ddl_references.TableTests.test_repr) ... ok 430s test_str (backends.test_ddl_references.TableTests.test_str) ... ok 431s test_callproc_kparams (backends.test_utils.CursorWrapperTests.test_callproc_kparams) ... skipped "Database doesn't support feature(s): create_test_procedure_with_int_param_sql, supports_callproc_kwargs" 431s test_callproc_with_int_params (backends.test_utils.CursorWrapperTests.test_callproc_with_int_params) ... skipped "Database doesn't support feature(s): create_test_procedure_with_int_param_sql" 431s test_callproc_without_params (backends.test_utils.CursorWrapperTests.test_callproc_without_params) ... skipped "Database doesn't support feature(s): create_test_procedure_without_params_sql" 431s test_unsupported_callproc_kparams_raises_error (backends.test_utils.CursorWrapperTests.test_unsupported_callproc_kparams_raises_error) ... ok 431s test_format_number (backends.test_utils.TestUtils.test_format_number) ... ok 431s test_split_identifier (backends.test_utils.TestUtils.test_split_identifier) ... ok 431s test_split_tzname_delta (backends.test_utils.TestUtils.test_split_tzname_delta) ... ok 431s test_truncate_name (backends.test_utils.TestUtils.test_truncate_name) ... ok 431s test_cached_db_features (backends.tests.BackendTestCase.test_cached_db_features) ... ok 431s test_cursor_contextmanager (backends.tests.BackendTestCase.test_cursor_contextmanager) 431s Cursors can be used as a context manager ... ok 431s test_cursor_contextmanager_closing (backends.tests.BackendTestCase.test_cursor_contextmanager_closing) ... skipped 'Psycopg specific cursor.closed attribute needed' 431s test_cursor_execute_with_pyformat (backends.tests.BackendTestCase.test_cursor_execute_with_pyformat) ... ok 431s test_cursor_executemany (backends.tests.BackendTestCase.test_cursor_executemany) ... ok 431s test_cursor_executemany_with_empty_params_list (backends.tests.BackendTestCase.test_cursor_executemany_with_empty_params_list) ... ok 431s test_cursor_executemany_with_iterator (backends.tests.BackendTestCase.test_cursor_executemany_with_iterator) ... ok 431s test_cursor_executemany_with_pyformat (backends.tests.BackendTestCase.test_cursor_executemany_with_pyformat) ... ok 431s test_cursor_executemany_with_pyformat_iterator (backends.tests.BackendTestCase.test_cursor_executemany_with_pyformat_iterator) ... ok 431s test_database_operations_helper_class (backends.tests.BackendTestCase.test_database_operations_helper_class) ... ok 431s test_database_operations_init (backends.tests.BackendTestCase.test_database_operations_init) 431s DatabaseOperations initialization doesn't query the database. ... ok 431s test_duplicate_table_error (backends.tests.BackendTestCase.test_duplicate_table_error) 431s Creating an existing table returns a DatabaseError ... ok 431s test_is_usable_after_database_disconnects (backends.tests.BackendTestCase.test_is_usable_after_database_disconnects) 431s is_usable() doesn't crash when the database disconnects (#21553). ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 431s test_queries (backends.tests.BackendTestCase.test_queries) 431s Test the documented API of connection.queries. ... ok 431s test_queries_bare_where (backends.tests.BackendTestCase.test_queries_bare_where) ... ok 431s test_queries_limit (backends.tests.BackendTestCase.test_queries_limit) 431s The backend doesn't store an unlimited number of queries (#12581). ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 431s test_queries_logger (backends.tests.BackendTestCase.test_queries_logger) ... ok 431s test_timezone_none_use_tz_false (backends.tests.BackendTestCase.test_timezone_none_use_tz_false) ... ok 431s test_unicode_fetches (backends.tests.BackendTestCase.test_unicode_fetches) ... ok 431s test_unicode_password (backends.tests.BackendTestCase.test_unicode_password) ... ok 431s test_signal (backends.tests.ConnectionCreatedSignalTest.test_signal) ... skipped "Database doesn't support feature(s): test_db_allows_multiple_connections" 431s test_check_constraints (backends.tests.FkConstraintsTests.test_check_constraints) 431s Constraint checks should raise an IntegrityError when bad data is in the DB. ... ok 431s test_check_constraints_sql_keywords (backends.tests.FkConstraintsTests.test_check_constraints_sql_keywords) ... ok 431s test_disable_constraint_checks_context_manager (backends.tests.FkConstraintsTests.test_disable_constraint_checks_context_manager) 431s When constraint checks are disabled (using context manager), should be ... ok 431s test_disable_constraint_checks_manually (backends.tests.FkConstraintsTests.test_disable_constraint_checks_manually) 431s When constraint checks are disabled, should be able to write bad data ... ok 431s test_integrity_checks_on_creation (backends.tests.FkConstraintsTests.test_integrity_checks_on_creation) 431s Try to create a model instance that violates a FK constraint. If it ... ok 431s test_integrity_checks_on_update (backends.tests.FkConstraintsTests.test_integrity_checks_on_update) 431s Try to update a model instance introducing a FK constraint violation. ... ok 431s test_sequence_name_length_limits_create (backends.tests.LongNameTest.test_sequence_name_length_limits_create) 431s Creation of model with long name and long pk name doesn't error. ... ok 431s test_sequence_name_length_limits_flush (backends.tests.LongNameTest.test_sequence_name_length_limits_flush) 431s Sequence resetting as part of a flush with model with long name and ... ok 431s test_sequence_name_length_limits_m2m (backends.tests.LongNameTest.test_sequence_name_length_limits_m2m) 431s An m2m save of a model with a long name and a long m2m field name ... ok 431s test_closing_non_shared_connections (backends.tests.ThreadTests.test_closing_non_shared_connections) 431s A connection that is not explicitly shareable cannot be closed by ... ok 431s test_connections_thread_local (backends.tests.ThreadTests.test_connections_thread_local) 431s The connections are different for each thread (#17258). ... ok 431s test_default_connection_thread_local (backends.tests.ThreadTests.test_default_connection_thread_local) 431s The default connection (i.e. django.db.connection) is different for ... ok 431s test_pass_connection_between_threads (backends.tests.ThreadTests.test_pass_connection_between_threads) 431s A connection can be passed from one thread to the other (#17258). ... ok 431s test_thread_sharing_count (backends.tests.ThreadTests.test_thread_sharing_count) ... ok 431s test_cooperative_multiple_inheritance (forms_tests.field_tests.test_base.BasicFieldsTests.test_cooperative_multiple_inheritance) ... ok 431s test_field_deepcopies_widget_instance (forms_tests.field_tests.test_base.BasicFieldsTests.test_field_deepcopies_widget_instance) ... ok 431s test_field_sets_widget_is_required (forms_tests.field_tests.test_base.BasicFieldsTests.test_field_sets_widget_is_required) ... ok 431s test_disabled_field_has_changed_always_false (forms_tests.field_tests.test_base.DisabledFieldTests.test_disabled_field_has_changed_always_false) ... ok 431s test_boolean_picklable (forms_tests.field_tests.test_booleanfield.BooleanFieldTest.test_boolean_picklable) ... ok 431s test_booleanfield_changed (forms_tests.field_tests.test_booleanfield.BooleanFieldTest.test_booleanfield_changed) ... ok 431s test_booleanfield_clean_1 (forms_tests.field_tests.test_booleanfield.BooleanFieldTest.test_booleanfield_clean_1) ... ok 431s test_booleanfield_clean_2 (forms_tests.field_tests.test_booleanfield.BooleanFieldTest.test_booleanfield_clean_2) ... ok 431s test_disabled_has_changed (forms_tests.field_tests.test_booleanfield.BooleanFieldTest.test_disabled_has_changed) ... ok 431s test_charfield_1 (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_1) ... ok 431s test_charfield_2 (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_2) ... ok 431s test_charfield_3 (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_3) ... ok 431s test_charfield_4 (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_4) ... ok 431s test_charfield_5 (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_5) ... ok 431s test_charfield_disabled (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_disabled) ... ok 431s test_charfield_length_not_int (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_length_not_int) 431s Setting min_length or max_length to something that is not a number ... ok 431s test_charfield_strip (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_strip) 431s Values have whitespace stripped but not if strip=False. ... ok 431s test_charfield_widget_attrs (forms_tests.field_tests.test_charfield.CharFieldTest.test_charfield_widget_attrs) 431s CharField.widget_attrs() always returns a dictionary and includes ... ok 431s test_clean_non_string (forms_tests.field_tests.test_charfield.CharFieldTest.test_clean_non_string) 431s CharField.clean() calls str(value) before stripping it. ... ok 431s test_null_characters_prohibited (forms_tests.field_tests.test_charfield.CharFieldTest.test_null_characters_prohibited) ... ok 431s test_strip_before_checking_empty (forms_tests.field_tests.test_charfield.CharFieldTest.test_strip_before_checking_empty) 431s A whitespace-only value, ' ', is stripped to an empty string and then ... ok 431s test_choicefield_1 (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_1) ... ok 431s test_choicefield_2 (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_2) ... ok 431s test_choicefield_3 (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_3) ... ok 431s test_choicefield_4 (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_4) ... ok 431s test_choicefield_callable (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_callable) ... ok 431s test_choicefield_callable_may_evaluate_to_different_values (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_callable_may_evaluate_to_different_values) ... ok 431s test_choicefield_choices_default (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_choices_default) ... ok 431s test_choicefield_disabled (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_disabled) ... ok 431s test_choicefield_enumeration (forms_tests.field_tests.test_choicefield.ChoiceFieldTest.test_choicefield_enumeration) ... ok 431s test_combofield_1 (forms_tests.field_tests.test_combofield.ComboFieldTest.test_combofield_1) ... ok 431s test_combofield_2 (forms_tests.field_tests.test_combofield.ComboFieldTest.test_combofield_2) ... ok 431s test_datefield_1 (forms_tests.field_tests.test_datefield.DateFieldTest.test_datefield_1) ... ok 431s test_datefield_2 (forms_tests.field_tests.test_datefield.DateFieldTest.test_datefield_2) ... ok 431s test_datefield_3 (forms_tests.field_tests.test_datefield.DateFieldTest.test_datefield_3) ... ok 431s test_datefield_4 (forms_tests.field_tests.test_datefield.DateFieldTest.test_datefield_4) ... ok 431s test_datefield_5 (forms_tests.field_tests.test_datefield.DateFieldTest.test_datefield_5) ... ok 431s test_datefield_changed (forms_tests.field_tests.test_datefield.DateFieldTest.test_datefield_changed) ... ok 431s test_datefield_strptime (forms_tests.field_tests.test_datefield.DateFieldTest.test_datefield_strptime) 431s field.strptime() doesn't raise a UnicodeEncodeError (#16123) ... ok 431s test_form_field (forms_tests.field_tests.test_datefield.DateFieldTest.test_form_field) ... ok 431s test_form_label_association (forms_tests.field_tests.test_datefield.DateFieldTest.test_form_label_association) ... ok 431s test_l10n_date_changed (forms_tests.field_tests.test_datefield.DateFieldTest.test_l10n_date_changed) 431s DateField.has_changed() with SelectDateWidget works with a localized ... ok 431s test_l10n_invalid_date_in (forms_tests.field_tests.test_datefield.DateFieldTest.test_l10n_invalid_date_in) ... ok 431s test_datetimefield_changed (forms_tests.field_tests.test_datetimefield.DateTimeFieldTest.test_datetimefield_changed) ... ok 431s test_datetimefield_clean (forms_tests.field_tests.test_datetimefield.DateTimeFieldTest.test_datetimefield_clean) ... ok 431s test_datetimefield_clean_input_formats (forms_tests.field_tests.test_datetimefield.DateTimeFieldTest.test_datetimefield_clean_input_formats) ... ok 431s test_datetimefield_clean_invalid (forms_tests.field_tests.test_datetimefield.DateTimeFieldTest.test_datetimefield_clean_invalid) ... ok 431s test_datetimefield_not_required (forms_tests.field_tests.test_datetimefield.DateTimeFieldTest.test_datetimefield_not_required) ... ok 431s test_decimalfield_1 (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_1) ... ok 431s test_decimalfield_2 (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_2) ... ok 431s test_decimalfield_3 (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_3) ... ok 431s test_decimalfield_4 (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_4) ... ok 431s test_decimalfield_5 (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_5) ... ok 431s test_decimalfield_6 (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_6) ... ok 431s test_decimalfield_changed (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_changed) ... ok 431s test_decimalfield_localized (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_localized) 431s A localized DecimalField's widget renders to a text input without ... ok 431s test_decimalfield_scientific (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_scientific) ... ok 431s test_decimalfield_support_decimal_separator (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_support_decimal_separator) ... ok 431s test_decimalfield_support_thousands_separator (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_support_thousands_separator) ... ok 431s test_decimalfield_widget_attrs (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_decimalfield_widget_attrs) ... ok 431s test_enter_a_number_error (forms_tests.field_tests.test_decimalfield.DecimalFieldTest.test_enter_a_number_error) ... ok 432s test_durationfield_clean (forms_tests.field_tests.test_durationfield.DurationFieldTest.test_durationfield_clean) ... ok 432s test_durationfield_clean_not_required (forms_tests.field_tests.test_durationfield.DurationFieldTest.test_durationfield_clean_not_required) ... ok 432s test_durationfield_integer_value (forms_tests.field_tests.test_durationfield.DurationFieldTest.test_durationfield_integer_value) ... ok 432s test_durationfield_prepare_value (forms_tests.field_tests.test_durationfield.DurationFieldTest.test_durationfield_prepare_value) ... ok 432s test_durationfield_render (forms_tests.field_tests.test_durationfield.DurationFieldTest.test_durationfield_render) ... ok 432s test_overflow (forms_tests.field_tests.test_durationfield.DurationFieldTest.test_overflow) ... ok 432s test_overflow_translation (forms_tests.field_tests.test_durationfield.DurationFieldTest.test_overflow_translation) ... ok 432s test_email_regexp_for_performance (forms_tests.field_tests.test_emailfield.EmailFieldTest.test_email_regexp_for_performance) ... ok 432s test_emailfield_1 (forms_tests.field_tests.test_emailfield.EmailFieldTest.test_emailfield_1) ... ok 432s test_emailfield_min_max_length (forms_tests.field_tests.test_emailfield.EmailFieldTest.test_emailfield_min_max_length) ... ok 432s test_emailfield_not_required (forms_tests.field_tests.test_emailfield.EmailFieldTest.test_emailfield_not_required) ... ok 432s test_emailfield_strip_on_none_value (forms_tests.field_tests.test_emailfield.EmailFieldTest.test_emailfield_strip_on_none_value) ... ok 432s test_emailfield_unable_to_set_strip_kwarg (forms_tests.field_tests.test_emailfield.EmailFieldTest.test_emailfield_unable_to_set_strip_kwarg) ... ok 432s test_disabled_has_changed (forms_tests.field_tests.test_filefield.FileFieldTest.test_disabled_has_changed) ... ok 432s test_file_picklable (forms_tests.field_tests.test_filefield.FileFieldTest.test_file_picklable) ... ok 432s test_filefield_1 (forms_tests.field_tests.test_filefield.FileFieldTest.test_filefield_1) ... ok 432s test_filefield_2 (forms_tests.field_tests.test_filefield.FileFieldTest.test_filefield_2) ... ok 432s test_filefield_3 (forms_tests.field_tests.test_filefield.FileFieldTest.test_filefield_3) ... ok 432s test_filefield_changed (forms_tests.field_tests.test_filefield.FileFieldTest.test_filefield_changed) 432s The value of data will more than likely come from request.FILES. The ... ok 432s test_file_multiple (forms_tests.field_tests.test_filefield.MultipleFileFieldTest.test_file_multiple) ... ok 432s test_file_multiple_empty (forms_tests.field_tests.test_filefield.MultipleFileFieldTest.test_file_multiple_empty) ... ok 432s test_file_multiple_validation (forms_tests.field_tests.test_filefield.MultipleFileFieldTest.test_file_multiple_validation) ... ok 432s test_allow_folders (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_allow_folders) ... ok 432s test_clean (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_clean) ... ok 432s test_fix_os_paths (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_fix_os_paths) ... ok 432s test_match (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_match) ... ok 432s test_no_options (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_no_options) ... ok 432s test_nonexistent_path (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_nonexistent_path) ... ok 432s test_recursive (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_recursive) ... ok 432s test_recursive_folders_without_files (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_recursive_folders_without_files) ... ok 432s test_recursive_no_folders_or_files (forms_tests.field_tests.test_filepathfield.FilePathFieldTest.test_recursive_no_folders_or_files) ... ok 432s test_float_field_rendering_passes_client_side_validation (forms_tests.field_tests.test_floatfield.FloatFieldHTMLTest.test_float_field_rendering_passes_client_side_validation) 432s Rendered widget allows non-integer value with the client-side ... skipped 'No browsers specified.' 432s test_decimalfield_support_decimal_separator (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_decimalfield_support_decimal_separator) ... ok 432s test_decimalfield_support_thousands_separator (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_decimalfield_support_thousands_separator) ... ok 432s test_floatfield_1 (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_floatfield_1) ... ok 432s test_floatfield_2 (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_floatfield_2) ... ok 432s test_floatfield_3 (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_floatfield_3) ... ok 432s test_floatfield_4 (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_floatfield_4) ... ok 432s test_floatfield_changed (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_floatfield_changed) ... ok 432s test_floatfield_localized (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_floatfield_localized) 432s A localized FloatField's widget renders to a text input without any ... ok 432s test_floatfield_widget_attrs (forms_tests.field_tests.test_floatfield.FloatFieldTest.test_floatfield_widget_attrs) ... ok 432s test_generic_ipaddress_as_generic (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_as_generic) ... ok 432s test_generic_ipaddress_as_generic_not_required (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_as_generic_not_required) ... ok 432s test_generic_ipaddress_as_ipv4_only (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_as_ipv4_only) ... ok 432s test_generic_ipaddress_as_ipv6_only (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_as_ipv6_only) ... ok 432s test_generic_ipaddress_invalid_arguments (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_invalid_arguments) ... ok 432s test_generic_ipaddress_max_length_custom (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_max_length_custom) ... ok 432s test_generic_ipaddress_max_length_validation_error (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_max_length_validation_error) ... ok 432s test_generic_ipaddress_normalization (forms_tests.field_tests.test_genericipaddressfield.GenericIPAddressFieldTest.test_generic_ipaddress_normalization) ... ok 432s test_corrupted_image (forms_tests.field_tests.test_imagefield.ImageFieldTest.test_corrupted_image) ... ok 432s test_file_extension_validation (forms_tests.field_tests.test_imagefield.ImageFieldTest.test_file_extension_validation) ... ok 432s test_imagefield_annotate_with_bitmap_image_after_clean (forms_tests.field_tests.test_imagefield.ImageFieldTest.test_imagefield_annotate_with_bitmap_image_after_clean) 432s This also tests the situation when Pillow doesn't detect the MIME type ... ok 432s test_imagefield_annotate_with_image_after_clean (forms_tests.field_tests.test_imagefield.ImageFieldTest.test_imagefield_annotate_with_image_after_clean) ... ok 432s test_widget_attrs_accept_false (forms_tests.field_tests.test_imagefield.ImageFieldTest.test_widget_attrs_accept_false) ... ok 432s test_widget_attrs_accept_specified (forms_tests.field_tests.test_imagefield.ImageFieldTest.test_widget_attrs_accept_specified) ... ok 432s test_widget_attrs_default_accept (forms_tests.field_tests.test_imagefield.ImageFieldTest.test_widget_attrs_default_accept) ... ok 432s test_integerfield_1 (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_1) ... ok 432s test_integerfield_2 (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_2) ... ok 432s test_integerfield_3 (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_3) ... ok 432s test_integerfield_4 (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_4) ... ok 432s test_integerfield_5 (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_5) ... ok 432s test_integerfield_6 (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_6) ... ok 432s test_integerfield_big_num (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_big_num) ... ok 432s test_integerfield_float (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_float) ... ok 432s test_integerfield_localized (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_localized) 432s A localized IntegerField's widget renders to a text input without any ... ok 432s test_integerfield_subclass (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_subclass) 432s Class-defined widget is not overwritten by __init__() (#22245). ... ok 432s test_integerfield_unicode_number (forms_tests.field_tests.test_integerfield.IntegerFieldTest.test_integerfield_unicode_number) ... ok 432s test_converted_value (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_converted_value) ... ok 432s test_custom_encoder_decoder (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_custom_encoder_decoder) ... ok 432s test_custom_widget_attribute (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_custom_widget_attribute) 432s The widget can be overridden with an attribute. ... ok 432s test_custom_widget_kwarg (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_custom_widget_kwarg) ... ok 432s test_formfield_disabled (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_formfield_disabled) ... ok 432s test_has_changed (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_has_changed) ... ok 432s test_invalid (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_invalid) ... ok 432s test_prepare_value (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_prepare_value) ... ok 432s test_redisplay_none_input (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_redisplay_none_input) ... ok 432s test_redisplay_wrong_input (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_redisplay_wrong_input) 432s Displaying a bound form (typically due to invalid input). The form ... ok 432s test_valid (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_valid) ... ok 432s test_valid_empty (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_valid_empty) ... ok 432s test_widget (forms_tests.field_tests.test_jsonfield.JSONFieldTest.test_widget) ... ok 432s test_disabled_has_changed (forms_tests.field_tests.test_multiplechoicefield.MultipleChoiceFieldTest.test_disabled_has_changed) ... ok 432s test_multiplechoicefield_1 (forms_tests.field_tests.test_multiplechoicefield.MultipleChoiceFieldTest.test_multiplechoicefield_1) ... ok 432s test_multiplechoicefield_2 (forms_tests.field_tests.test_multiplechoicefield.MultipleChoiceFieldTest.test_multiplechoicefield_2) ... ok 432s test_multiplechoicefield_3 (forms_tests.field_tests.test_multiplechoicefield.MultipleChoiceFieldTest.test_multiplechoicefield_3) ... ok 432s test_multiplechoicefield_changed (forms_tests.field_tests.test_multiplechoicefield.MultipleChoiceFieldTest.test_multiplechoicefield_changed) ... ok 432s test_bad_choice (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_bad_choice) ... ok 432s test_clean (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_clean) ... ok 432s test_clean_disabled_multivalue (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_clean_disabled_multivalue) ... ok 432s test_disabled_has_changed (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_disabled_has_changed) ... ok 432s test_form_as_table (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_form_as_table) ... ok 432s test_form_as_table_data (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_form_as_table_data) ... ok 432s test_form_cleaned_data (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_form_cleaned_data) ... ok 432s test_has_changed_first_widget (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_has_changed_first_widget) 432s Test when the first widget's data has changed. ... ok 432s test_has_changed_last_widget (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_has_changed_last_widget) 432s Test when the last widget's data has changed. This ensures that it is ... ok 432s test_has_changed_no_initial (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_has_changed_no_initial) ... ok 432s test_has_changed_same (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_has_changed_same) ... ok 432s test_no_value (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_no_value) 432s If insufficient data is provided, None is substituted. ... ok 432s test_render_required_attributes (forms_tests.field_tests.test_multivaluefield.MultiValueFieldTest.test_render_required_attributes) ... ok 432s test_nullbooleanfield_2 (forms_tests.field_tests.test_nullbooleanfield.NullBooleanFieldTest.test_nullbooleanfield_2) ... ok 432s test_nullbooleanfield_3 (forms_tests.field_tests.test_nullbooleanfield.NullBooleanFieldTest.test_nullbooleanfield_3) ... ok 432s test_nullbooleanfield_4 (forms_tests.field_tests.test_nullbooleanfield.NullBooleanFieldTest.test_nullbooleanfield_4) ... ok 432s test_nullbooleanfield_changed (forms_tests.field_tests.test_nullbooleanfield.NullBooleanFieldTest.test_nullbooleanfield_changed) ... ok 432s test_nullbooleanfield_clean (forms_tests.field_tests.test_nullbooleanfield.NullBooleanFieldTest.test_nullbooleanfield_clean) ... ok 432s test_change_regex_after_init (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_change_regex_after_init) ... ok 432s test_empty_value (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_empty_value) ... ok 432s test_get_regex (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_get_regex) ... ok 432s test_regexfield_1 (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_regexfield_1) ... ok 432s test_regexfield_2 (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_regexfield_2) ... ok 432s test_regexfield_3 (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_regexfield_3) ... ok 432s test_regexfield_4 (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_regexfield_4) ... ok 432s test_regexfield_strip (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_regexfield_strip) ... ok 432s test_regexfield_unicode_characters (forms_tests.field_tests.test_regexfield.RegexFieldTest.test_regexfield_unicode_characters) ... ok 432s test_empty_value (forms_tests.field_tests.test_slugfield.SlugFieldTest.test_empty_value) ... ok 432s test_slugfield_normalization (forms_tests.field_tests.test_slugfield.SlugFieldTest.test_slugfield_normalization) ... ok 432s test_slugfield_unicode_normalization (forms_tests.field_tests.test_slugfield.SlugFieldTest.test_slugfield_unicode_normalization) ... ok 432s test_form_as_table (forms_tests.field_tests.test_splitdatetimefield.SplitDateTimeFieldTest.test_form_as_table) ... ok 432s test_splitdatetimefield_1 (forms_tests.field_tests.test_splitdatetimefield.SplitDateTimeFieldTest.test_splitdatetimefield_1) ... ok 432s test_splitdatetimefield_2 (forms_tests.field_tests.test_splitdatetimefield.SplitDateTimeFieldTest.test_splitdatetimefield_2) ... ok 432s test_splitdatetimefield_changed (forms_tests.field_tests.test_splitdatetimefield.SplitDateTimeFieldTest.test_splitdatetimefield_changed) ... ok 432s test_timefield_1 (forms_tests.field_tests.test_timefield.TimeFieldTest.test_timefield_1) ... ok 432s test_timefield_2 (forms_tests.field_tests.test_timefield.TimeFieldTest.test_timefield_2) ... ok 432s test_timefield_3 (forms_tests.field_tests.test_timefield.TimeFieldTest.test_timefield_3) ... ok 432s test_timefield_changed (forms_tests.field_tests.test_timefield.TimeFieldTest.test_timefield_changed) ... ok 432s test_typedchoicefield_1 (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_1) ... ok 432s test_typedchoicefield_2 (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_2) ... ok 432s test_typedchoicefield_3 (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_3) ... ok 432s test_typedchoicefield_4 (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_4) ... ok 432s test_typedchoicefield_5 (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_5) ... ok 432s test_typedchoicefield_6 (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_6) ... ok 432s test_typedchoicefield_has_changed (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_has_changed) ... ok 432s test_typedchoicefield_special_coerce (forms_tests.field_tests.test_typedchoicefield.TypedChoiceFieldTest.test_typedchoicefield_special_coerce) 432s A coerce function which results in a value not present in choices ... ok 432s test_typedmultiplechoicefield_1 (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_1) ... ok 432s test_typedmultiplechoicefield_2 (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_2) ... ok 432s test_typedmultiplechoicefield_3 (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_3) ... ok 432s test_typedmultiplechoicefield_4 (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_4) ... ok 432s test_typedmultiplechoicefield_5 (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_5) ... ok 432s test_typedmultiplechoicefield_6 (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_6) ... ok 432s test_typedmultiplechoicefield_7 (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_7) ... ok 432s test_typedmultiplechoicefield_has_changed (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_has_changed) ... ok 432s test_typedmultiplechoicefield_special_coerce (forms_tests.field_tests.test_typedmultiplechoicefield.TypedMultipleChoiceFieldTest.test_typedmultiplechoicefield_special_coerce) 432s A coerce function which results in a value not present in choices ... ok 432s test_urlfield_clean (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_clean) ... ok 432s test_urlfield_clean_invalid (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_clean_invalid) ... ok 432s test_urlfield_clean_not_required (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_clean_not_required) ... ok 432s test_urlfield_clean_required (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_clean_required) ... ok 432s test_urlfield_strip_on_none_value (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_strip_on_none_value) ... ok 432s test_urlfield_unable_to_set_strip_kwarg (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_unable_to_set_strip_kwarg) ... ok 432s test_urlfield_widget (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_widget) ... ok 432s test_urlfield_widget_max_min_length (forms_tests.field_tests.test_urlfield.URLFieldTest.test_urlfield_widget_max_min_length) ... ok 432s test_clean_value_with_dashes (forms_tests.field_tests.test_uuidfield.UUIDFieldTest.test_clean_value_with_dashes) ... ok 432s test_uuidfield_1 (forms_tests.field_tests.test_uuidfield.UUIDFieldTest.test_uuidfield_1) ... ok 432s test_uuidfield_2 (forms_tests.field_tests.test_uuidfield.UUIDFieldTest.test_uuidfield_2) ... ok 432s test_uuidfield_3 (forms_tests.field_tests.test_uuidfield.UUIDFieldTest.test_uuidfield_3) ... ok 432s test_uuidfield_4 (forms_tests.field_tests.test_uuidfield.UUIDFieldTest.test_uuidfield_4) ... ok 432s test_errorlist_override_str (forms_tests.tests.test_deprecation_forms.DeprecatedTests.test_errorlist_override_str) ... ok 432s test_field_name (forms_tests.tests.test_deprecation_forms.DeprecatedTests.test_field_name) 432s #5749 - `field_name` may be used as a key in _html_output(). ... ok 432s test_field_name_with_hidden_input (forms_tests.tests.test_deprecation_forms.DeprecatedTests.test_field_name_with_hidden_input) 432s BaseForm._html_output() should merge all the hidden input fields and ... ok 432s test_field_name_with_hidden_input_and_non_matching_row_ender (forms_tests.tests.test_deprecation_forms.DeprecatedTests.test_field_name_with_hidden_input_and_non_matching_row_ender) 432s BaseForm._html_output() should merge all the hidden input fields and ... ok 432s test_field_with_css_class (forms_tests.tests.test_deprecation_forms.DeprecatedTests.test_field_with_css_class) 432s `css_classes` may be used as a key in _html_output() (class comes ... ok 432s test_field_without_css_classes (forms_tests.tests.test_deprecation_forms.DeprecatedTests.test_field_without_css_classes) 432s `css_classes` may be used as a key in _html_output() (empty classes). ... ok 433s test_deprecation_warning_error_list (forms_tests.tests.test_deprecation_forms.DeprecationTests.test_deprecation_warning_error_list) ... ok 433s test_deprecation_warning_html_output (forms_tests.tests.test_deprecation_forms.DeprecationTests.test_deprecation_warning_html_output) ... ok 433s test_add_auto_field (schema.tests.SchemaTests.test_add_auto_field) ... ok 433s test_add_binaryfield_mediumblob (schema.tests.SchemaTests.test_add_binaryfield_mediumblob) 433s Test adding a custom-sized binary field on MySQL (#24846). ... skipped 'MySQL specific' 433s test_add_datefield_and_datetimefield_use_effective_default (schema.tests.SchemaTests.test_add_datefield_and_datetimefield_use_effective_default) 433s effective_default() should be used for DateField, DateTimeField, and ... ok 433s test_add_db_comment_and_default_charfield (schema.tests.SchemaTests.test_add_db_comment_and_default_charfield) ... skipped "Database doesn't support feature(s): supports_comments" 433s test_add_db_comment_charfield (schema.tests.SchemaTests.test_add_db_comment_charfield) ... skipped "Database doesn't support feature(s): supports_comments" 433s test_add_field (schema.tests.SchemaTests.test_add_field) 433s Tests adding fields to models ... ok 433s test_add_field_binary (schema.tests.SchemaTests.test_add_field_binary) 433s Tests binary fields get a sane default (#22851) ... ok 433s test_add_field_db_collation (schema.tests.SchemaTests.test_add_field_db_collation) ... ok 433s test_add_field_default_dropped (schema.tests.SchemaTests.test_add_field_default_dropped) ... ok 433s test_add_field_default_nullable (schema.tests.SchemaTests.test_add_field_default_nullable) ... ok 433s test_add_field_default_transform (schema.tests.SchemaTests.test_add_field_default_transform) 433s Tests adding fields to models with a default that is not directly ... ok 433s test_add_field_durationfield_with_default (schema.tests.SchemaTests.test_add_field_durationfield_with_default) ... ok 433s test_add_field_o2o_nullable (schema.tests.SchemaTests.test_add_field_o2o_nullable) ... ok 433s test_add_field_remove_field (schema.tests.SchemaTests.test_add_field_remove_field) 433s Adding a field and removing it removes all deferred sql referring to it. ... ok 433s test_add_field_temp_default (schema.tests.SchemaTests.test_add_field_temp_default) 433s Tests adding fields to models with a temporary default ... ok 433s test_add_field_temp_default_boolean (schema.tests.SchemaTests.test_add_field_temp_default_boolean) 433s Tests adding fields to models with a temporary default where ... ok 433s test_add_field_use_effective_default (schema.tests.SchemaTests.test_add_field_use_effective_default) 433s #23987 - effective_default() should be used as the field default when ... ok 433s test_add_foreign_key_long_names (schema.tests.SchemaTests.test_add_foreign_key_long_names) 433s Regression test for #23009. ... ok 433s test_add_foreign_key_quoted_db_table (schema.tests.SchemaTests.test_add_foreign_key_quoted_db_table) ... ok 433s test_add_foreign_object (schema.tests.SchemaTests.test_add_foreign_object) ... ok 433s test_add_indexed_charfield (schema.tests.SchemaTests.test_add_indexed_charfield) ... skipped 'PostgreSQL specific' 433s test_add_inline_fk_index_update_data (schema.tests.SchemaTests.test_add_inline_fk_index_update_data) ... skipped "Database doesn't support feature(s): can_create_inline_fk, allows_multiple_constraints_on_same_fields" 433s test_add_inline_fk_update_data (schema.tests.SchemaTests.test_add_inline_fk_update_data) ... skipped "Database doesn't support feature(s): can_create_inline_fk" 433s test_add_remove_index (schema.tests.SchemaTests.test_add_remove_index) 433s Tests index addition and removal ... ok 433s test_add_textfield_default_nullable (schema.tests.SchemaTests.test_add_textfield_default_nullable) ... ok 433s test_add_textfield_unhashable_default (schema.tests.SchemaTests.test_add_textfield_unhashable_default) ... ok 433s test_add_unique_charfield (schema.tests.SchemaTests.test_add_unique_charfield) ... skipped 'PostgreSQL specific' 433s test_alter (schema.tests.SchemaTests.test_alter) 433s Tests simple altering of fields ... ok 433s test_alter_array_field_decrease_base_field_length (schema.tests.SchemaTests.test_alter_array_field_decrease_base_field_length) ... skipped 'PostgreSQL specific' 433s test_alter_array_field_decrease_nested_base_field_length (schema.tests.SchemaTests.test_alter_array_field_decrease_nested_base_field_length) ... skipped 'PostgreSQL specific' 433s test_alter_auto_field_quoted_db_column (schema.tests.SchemaTests.test_alter_auto_field_quoted_db_column) ... ok 433s test_alter_auto_field_to_char_field (schema.tests.SchemaTests.test_alter_auto_field_to_char_field) ... ok 433s test_alter_auto_field_to_integer_field (schema.tests.SchemaTests.test_alter_auto_field_to_integer_field) ... ok 433s test_alter_autofield_pk_to_bigautofield_pk (schema.tests.SchemaTests.test_alter_autofield_pk_to_bigautofield_pk) ... ok 433s test_alter_autofield_pk_to_smallautofield_pk (schema.tests.SchemaTests.test_alter_autofield_pk_to_smallautofield_pk) ... ok 433s test_alter_char_field_decrease_length (schema.tests.SchemaTests.test_alter_char_field_decrease_length) ... skipped 'PostgreSQL specific' 433s test_alter_charfield_to_null (schema.tests.SchemaTests.test_alter_charfield_to_null) 433s #24307 - Should skip an alter statement on databases with ... ok 433s test_alter_db_comment (schema.tests.SchemaTests.test_alter_db_comment) ... skipped "Database doesn't support feature(s): supports_comments" 433s test_alter_db_comment_foreign_key (schema.tests.SchemaTests.test_alter_db_comment_foreign_key) ... skipped "Database doesn't support feature(s): supports_comments, supports_foreign_keys" 433s test_alter_db_table_case (schema.tests.SchemaTests.test_alter_db_table_case) ... ok 433s test_alter_field_add_db_index_to_charfield_with_unique (schema.tests.SchemaTests.test_alter_field_add_db_index_to_charfield_with_unique) ... skipped 'PostgreSQL specific' 433s test_alter_field_add_index_to_charfield (schema.tests.SchemaTests.test_alter_field_add_index_to_charfield) ... skipped 'PostgreSQL specific' 433s test_alter_field_add_index_to_integerfield (schema.tests.SchemaTests.test_alter_field_add_index_to_integerfield) ... ok 433s test_alter_field_add_index_to_textfield (schema.tests.SchemaTests.test_alter_field_add_index_to_textfield) ... skipped 'PostgreSQL specific' 433s test_alter_field_add_unique_to_charfield (schema.tests.SchemaTests.test_alter_field_add_unique_to_charfield) ... skipped 'PostgreSQL specific' 433s test_alter_field_add_unique_to_charfield_with_db_index (schema.tests.SchemaTests.test_alter_field_add_unique_to_charfield_with_db_index) ... skipped 'PostgreSQL specific' 433s test_alter_field_choices_noop (schema.tests.SchemaTests.test_alter_field_choices_noop) ... ok 433s test_alter_field_db_collation (schema.tests.SchemaTests.test_alter_field_db_collation) ... ok 433s test_alter_field_default_doesnt_perform_queries (schema.tests.SchemaTests.test_alter_field_default_doesnt_perform_queries) 433s No queries are performed if a field default changes and the field's ... skipped 'SQLite naively remakes the table on field alteration.' 433s test_alter_field_default_dropped (schema.tests.SchemaTests.test_alter_field_default_dropped) ... ok 433s test_alter_field_fk_attributes_noop (schema.tests.SchemaTests.test_alter_field_fk_attributes_noop) 433s No queries are performed when changing field attributes that don't ... ok 433s test_alter_field_fk_keeps_index (schema.tests.SchemaTests.test_alter_field_fk_keeps_index) ... ok 433s test_alter_field_fk_to_o2o (schema.tests.SchemaTests.test_alter_field_fk_to_o2o) ... ok 433s test_alter_field_o2o_keeps_unique (schema.tests.SchemaTests.test_alter_field_o2o_keeps_unique) ... ok 433s test_alter_field_o2o_to_fk (schema.tests.SchemaTests.test_alter_field_o2o_to_fk) ... ok 433s test_alter_field_remove_unique_and_db_index_from_charfield (schema.tests.SchemaTests.test_alter_field_remove_unique_and_db_index_from_charfield) ... skipped 'PostgreSQL specific' 433s test_alter_field_swap_unique_and_db_index_with_charfield (schema.tests.SchemaTests.test_alter_field_swap_unique_and_db_index_with_charfield) ... skipped 'PostgreSQL specific' 433s test_alter_field_type_and_db_collation (schema.tests.SchemaTests.test_alter_field_type_and_db_collation) ... ok 433s test_alter_field_type_preserve_comment (schema.tests.SchemaTests.test_alter_field_type_preserve_comment) ... skipped "Database doesn't support feature(s): supports_comments" 433s test_alter_field_type_preserve_db_collation (schema.tests.SchemaTests.test_alter_field_type_preserve_db_collation) ... ok 433s test_alter_field_with_custom_db_type (schema.tests.SchemaTests.test_alter_field_with_custom_db_type) ... skipped 'PostgreSQL specific' 433s test_alter_fk (schema.tests.SchemaTests.test_alter_fk) 433s Tests altering of FKs ... ok 433s test_alter_fk_checks_deferred_constraints (schema.tests.SchemaTests.test_alter_fk_checks_deferred_constraints) 433s #25492 - Altering a foreign key's structure and data in the same ... ok 433s test_alter_fk_to_o2o (schema.tests.SchemaTests.test_alter_fk_to_o2o) 433s #24163 - Tests altering of ForeignKey to OneToOneField ... ok 433s test_alter_implicit_id_to_explicit (schema.tests.SchemaTests.test_alter_implicit_id_to_explicit) 433s Should be able to convert an implicit "id" field to an explicit "id" ... ok 433s test_alter_int_pk_to_autofield_pk (schema.tests.SchemaTests.test_alter_int_pk_to_autofield_pk) 433s Should be able to rename an IntegerField(primary_key=True) to ... ok 433s test_alter_int_pk_to_bigautofield_pk (schema.tests.SchemaTests.test_alter_int_pk_to_bigautofield_pk) 433s Should be able to rename an IntegerField(primary_key=True) to ... ok 433s test_alter_int_pk_to_int_unique (schema.tests.SchemaTests.test_alter_int_pk_to_int_unique) 433s Should be able to rename an IntegerField(primary_key=True) to ... ok 433s test_alter_not_unique_field_to_primary_key (schema.tests.SchemaTests.test_alter_not_unique_field_to_primary_key) ... ok 433s test_alter_null_to_not_null (schema.tests.SchemaTests.test_alter_null_to_not_null) 433s #23609 - Tests handling of default values when altering from NULL to NOT NULL. ... ok 433s test_alter_null_to_not_null_keeping_default (schema.tests.SchemaTests.test_alter_null_to_not_null_keeping_default) 433s #23738 - Can change a nullable field with default to non-nullable ... ok 433s test_alter_null_with_default_value_deferred_constraints (schema.tests.SchemaTests.test_alter_null_with_default_value_deferred_constraints) ... ok 433s test_alter_numeric_field_keep_null_status (schema.tests.SchemaTests.test_alter_numeric_field_keep_null_status) 433s Changing a field type shouldn't affect the not null status. ... ok 433s test_alter_o2o_to_fk (schema.tests.SchemaTests.test_alter_o2o_to_fk) 433s #24163 - Tests altering of OneToOneField to ForeignKey ... ok 433s test_alter_pk_with_self_referential_field (schema.tests.SchemaTests.test_alter_pk_with_self_referential_field) 433s Changing the primary key field name of a model with a self-referential ... ok 433s test_alter_primary_key_db_collation (schema.tests.SchemaTests.test_alter_primary_key_db_collation) ... ok 433s test_alter_primary_key_quoted_db_table (schema.tests.SchemaTests.test_alter_primary_key_quoted_db_table) ... ok 433s test_alter_primary_key_the_same_name (schema.tests.SchemaTests.test_alter_primary_key_the_same_name) ... ok 433s test_alter_serial_auto_field_to_bigautofield (schema.tests.SchemaTests.test_alter_serial_auto_field_to_bigautofield) ... skipped 'PostgreSQL specific' 433s test_alter_smallint_pk_to_smallautofield_pk (schema.tests.SchemaTests.test_alter_smallint_pk_to_smallautofield_pk) 433s Should be able to rename an SmallIntegerField(primary_key=True) to ... ok 433s test_alter_text_field (schema.tests.SchemaTests.test_alter_text_field) ... ok 433s test_alter_text_field_to_date_field (schema.tests.SchemaTests.test_alter_text_field_to_date_field) 433s #25002 - Test conversion of text field to date field. ... ok 433s test_alter_text_field_to_datetime_field (schema.tests.SchemaTests.test_alter_text_field_to_datetime_field) 433s #25002 - Test conversion of text field to datetime field. ... ok 433s test_alter_text_field_to_not_null_with_default_value (schema.tests.SchemaTests.test_alter_text_field_to_not_null_with_default_value) ... ok 433s test_alter_text_field_to_time_field (schema.tests.SchemaTests.test_alter_text_field_to_time_field) 433s #25002 - Test conversion of text field to time field. ... ok 433s test_alter_textfield_to_null (schema.tests.SchemaTests.test_alter_textfield_to_null) 433s #24307 - Should skip an alter statement on databases with ... ok 433s test_alter_textual_field_keep_null_status (schema.tests.SchemaTests.test_alter_textual_field_keep_null_status) 433s Changing a field type shouldn't affect the not null status. ... ok 433s test_alter_textual_field_not_null_to_null (schema.tests.SchemaTests.test_alter_textual_field_not_null_to_null) 433s Nullability for textual fields is preserved on databases that ... skipped "Database doesn't support feature(s): interprets_empty_strings_as_nulls" 433s test_alter_to_fk (schema.tests.SchemaTests.test_alter_to_fk) 433s #24447 - Tests adding a FK constraint for an existing column ... ok 433s test_autofield_to_o2o (schema.tests.SchemaTests.test_autofield_to_o2o) ... ok 433s test_char_field_pk_to_auto_field (schema.tests.SchemaTests.test_char_field_pk_to_auto_field) ... ok 433s test_char_field_with_db_index_to_fk (schema.tests.SchemaTests.test_char_field_with_db_index_to_fk) ... ok 433s test_check_constraint_timedelta_param (schema.tests.SchemaTests.test_check_constraint_timedelta_param) ... ok 433s test_check_constraints (schema.tests.SchemaTests.test_check_constraints) 433s Tests creating/deleting CHECK constraints ... ok 433s test_ci_cs_db_collation (schema.tests.SchemaTests.test_ci_cs_db_collation) ... ok 433s test_composed_check_constraint_with_fk (schema.tests.SchemaTests.test_composed_check_constraint_with_fk) ... ok 433s test_composed_constraint_with_fk (schema.tests.SchemaTests.test_composed_constraint_with_fk) ... ok 433s test_composed_desc_func_index_with_fk (schema.tests.SchemaTests.test_composed_desc_func_index_with_fk) ... ok 433s test_composed_desc_index_with_fk (schema.tests.SchemaTests.test_composed_desc_index_with_fk) ... ok 433s test_composed_func_index_with_fk (schema.tests.SchemaTests.test_composed_func_index_with_fk) ... ok 433s test_composed_func_transform_index_with_fk (schema.tests.SchemaTests.test_composed_func_transform_index_with_fk) ... ok 433s test_composed_index_with_fk (schema.tests.SchemaTests.test_composed_index_with_fk) ... ok 433s test_composite_func_index (schema.tests.SchemaTests.test_composite_func_index) ... ok 433s test_composite_func_index_field_and_expression (schema.tests.SchemaTests.test_composite_func_index_field_and_expression) ... ok 433s test_composite_func_unique_constraint (schema.tests.SchemaTests.test_composite_func_unique_constraint) ... ok 433s test_context_manager_exit (schema.tests.SchemaTests.test_context_manager_exit) 433s Ensures transaction is correctly closed when an error occurs ... ok 433s test_create_index_together (schema.tests.SchemaTests.test_create_index_together) 433s Tests creating models with index_together already defined ... ok 433s test_creation_deletion (schema.tests.SchemaTests.test_creation_deletion) 433s Tries creating a model's table, and then deleting it. ... ok 433s test_creation_deletion_reserved_names (schema.tests.SchemaTests.test_creation_deletion_reserved_names) 433s Tries creating a model's table, and then deleting it when it has a ... ok 433s test_creation_with_db_table_double_quotes (schema.tests.SchemaTests.test_creation_with_db_table_double_quotes) ... skipped 'Oracle specific db_table syntax' 433s test_db_collation_arrayfield (schema.tests.SchemaTests.test_db_collation_arrayfield) ... skipped 'PostgreSQL specific' 433s test_db_collation_charfield (schema.tests.SchemaTests.test_db_collation_charfield) ... ok 433s test_db_collation_textfield (schema.tests.SchemaTests.test_db_collation_textfield) ... ok 433s test_db_comment_table (schema.tests.SchemaTests.test_db_comment_table) ... skipped "Database doesn't support feature(s): supports_comments" 433s test_db_comment_table_unsupported (schema.tests.SchemaTests.test_db_comment_table_unsupported) ... ok 433s test_db_comments_from_abstract_model (schema.tests.SchemaTests.test_db_comments_from_abstract_model) ... skipped "Database doesn't support feature(s): supports_comments, supports_foreign_keys" 433s test_db_table (schema.tests.SchemaTests.test_db_table) 433s Tests renaming of the table ... ok 433s test_fk (schema.tests.SchemaTests.test_fk) 433s Creating tables out of FK order, then repointing, works ... ok 433s test_fk_db_constraint (schema.tests.SchemaTests.test_fk_db_constraint) 433s The db_constraint parameter is respected ... ok 433s test_fk_to_proxy (schema.tests.SchemaTests.test_fk_to_proxy) 433s Creating a FK to a proxy model creates database constraints. ... ok 433s test_foreign_key_index_long_names_regression (schema.tests.SchemaTests.test_foreign_key_index_long_names_regression) 433s Regression test for #21497. ... ok 433s test_func_index (schema.tests.SchemaTests.test_func_index) ... ok 433s test_func_index_calc (schema.tests.SchemaTests.test_func_index_calc) ... ok 433s test_func_index_cast (schema.tests.SchemaTests.test_func_index_cast) ... ok 433s test_func_index_collate (schema.tests.SchemaTests.test_func_index_collate) ... ok 433s test_func_index_collate_f_ordered (schema.tests.SchemaTests.test_func_index_collate_f_ordered) ... ok 433s test_func_index_f (schema.tests.SchemaTests.test_func_index_f) ... ok 433s test_func_index_f_decimalfield (schema.tests.SchemaTests.test_func_index_f_decimalfield) ... ok 433s test_func_index_invalid_topmost_expressions (schema.tests.SchemaTests.test_func_index_invalid_topmost_expressions) ... ok 433s test_func_index_json_key_transform (schema.tests.SchemaTests.test_func_index_json_key_transform) ... ok 433s test_func_index_json_key_transform_cast (schema.tests.SchemaTests.test_func_index_json_key_transform_cast) ... ok 433s test_func_index_lookups (schema.tests.SchemaTests.test_func_index_lookups) ... ok 433s test_func_index_multiple_wrapper_references (schema.tests.SchemaTests.test_func_index_multiple_wrapper_references) ... ok 433s test_func_index_nondeterministic (schema.tests.SchemaTests.test_func_index_nondeterministic) ... ok 433s test_func_index_nonexistent_field (schema.tests.SchemaTests.test_func_index_nonexistent_field) ... ok 433s test_func_index_unsupported (schema.tests.SchemaTests.test_func_index_unsupported) ... skipped 'Database has feature(s) supports_expression_indexes' 433s test_func_unique_constraint (schema.tests.SchemaTests.test_func_unique_constraint) ... ok 433s test_func_unique_constraint_collate (schema.tests.SchemaTests.test_func_unique_constraint_collate) ... ok 433s test_func_unique_constraint_covering (schema.tests.SchemaTests.test_func_unique_constraint_covering) ... skipped "Database doesn't support feature(s): supports_expression_indexes, supports_covering_indexes" 433s test_func_unique_constraint_lookups (schema.tests.SchemaTests.test_func_unique_constraint_lookups) ... ok 433s test_func_unique_constraint_nondeterministic (schema.tests.SchemaTests.test_func_unique_constraint_nondeterministic) ... ok 433s test_func_unique_constraint_nonexistent_field (schema.tests.SchemaTests.test_func_unique_constraint_nonexistent_field) ... ok 433s test_func_unique_constraint_partial (schema.tests.SchemaTests.test_func_unique_constraint_partial) ... ok 433s test_func_unique_constraint_unsupported (schema.tests.SchemaTests.test_func_unique_constraint_unsupported) ... skipped 'Database has feature(s) supports_expression_indexes' 433s test_index_together (schema.tests.SchemaTests.test_index_together) 433s Tests removing and adding index_together constraints on a model. ... ok 433s test_index_together_with_fk (schema.tests.SchemaTests.test_index_together_with_fk) 433s Tests removing and adding index_together constraints that include ... ok 433s test_indexes (schema.tests.SchemaTests.test_indexes) 433s Tests creation/altering of indexes ... ok 433s test_inline_fk (schema.tests.SchemaTests.test_inline_fk) ... skipped "Database doesn't support feature(s): can_create_inline_fk" 433s test_m2m (schema.tests.SchemaTests.test_m2m) ... ok 433s test_m2m_create (schema.tests.SchemaTests.test_m2m_create) ... ok 433s test_m2m_create_custom (schema.tests.SchemaTests.test_m2m_create_custom) ... ok 433s test_m2m_create_inherited (schema.tests.SchemaTests.test_m2m_create_inherited) ... ok 433s test_m2m_create_through (schema.tests.SchemaTests.test_m2m_create_through) ... ok 433s test_m2m_create_through_custom (schema.tests.SchemaTests.test_m2m_create_through_custom) ... ok 433s test_m2m_create_through_inherited (schema.tests.SchemaTests.test_m2m_create_through_inherited) ... ok 433s test_m2m_custom (schema.tests.SchemaTests.test_m2m_custom) ... ok 433s test_m2m_db_constraint (schema.tests.SchemaTests.test_m2m_db_constraint) ... ok 433s test_m2m_db_constraint_custom (schema.tests.SchemaTests.test_m2m_db_constraint_custom) ... ok 433s test_m2m_db_constraint_inherited (schema.tests.SchemaTests.test_m2m_db_constraint_inherited) ... ok 433s test_m2m_inherited (schema.tests.SchemaTests.test_m2m_inherited) ... ok 433s test_m2m_rename_field_in_target_model (schema.tests.SchemaTests.test_m2m_rename_field_in_target_model) ... ok 433s test_m2m_repoint (schema.tests.SchemaTests.test_m2m_repoint) ... ok 433s test_m2m_repoint_custom (schema.tests.SchemaTests.test_m2m_repoint_custom) ... ok 433s test_m2m_repoint_inherited (schema.tests.SchemaTests.test_m2m_repoint_inherited) ... ok 433s test_m2m_through_alter (schema.tests.SchemaTests.test_m2m_through_alter) ... ok 433s test_m2m_through_alter_custom (schema.tests.SchemaTests.test_m2m_through_alter_custom) ... ok 433s test_m2m_through_alter_inherited (schema.tests.SchemaTests.test_m2m_through_alter_inherited) ... ok 433s test_m2m_through_remove (schema.tests.SchemaTests.test_m2m_through_remove) ... ok 433s test_namespaced_db_table_create_index_name (schema.tests.SchemaTests.test_namespaced_db_table_create_index_name) 433s Table names are stripped of their namespace/schema before being used to ... ok 433s test_namespaced_db_table_foreign_key_reference (schema.tests.SchemaTests.test_namespaced_db_table_foreign_key_reference) ... skipped 'PostgreSQL specific db_table syntax.' 433s test_no_db_constraint_added_during_primary_key_change (schema.tests.SchemaTests.test_no_db_constraint_added_during_primary_key_change) 433s When a primary key that's pointed to by a ForeignKey with ... ok 433s test_order_index (schema.tests.SchemaTests.test_order_index) 433s Indexes defined with ordering (ASC/DESC) defined on column ... ok 433s test_primary_key (schema.tests.SchemaTests.test_primary_key) 433s Tests altering of the primary key ... ok 433s test_referenced_field_without_constraint_rename_inside_atomic_block (schema.tests.SchemaTests.test_referenced_field_without_constraint_rename_inside_atomic_block) 433s Foreign keys without database level constraint don't prevent the field ... ok 433s test_referenced_table_without_constraint_rename_inside_atomic_block (schema.tests.SchemaTests.test_referenced_table_without_constraint_rename_inside_atomic_block) 433s Foreign keys without database level constraint don't prevent the table ... ok 433s test_relation_to_deterministic_collation_charfield (schema.tests.SchemaTests.test_relation_to_deterministic_collation_charfield) ... skipped 'PostgreSQL specific' 433s test_remove_constraints_capital_letters (schema.tests.SchemaTests.test_remove_constraints_capital_letters) 433s #23065 - Constraint names must be quoted if they contain capital letters. ... ok 433s test_remove_db_index_doesnt_remove_custom_indexes (schema.tests.SchemaTests.test_remove_db_index_doesnt_remove_custom_indexes) 433s Changing db_index to False doesn't remove indexes from Meta.indexes. ... ok 433s test_remove_field (schema.tests.SchemaTests.test_remove_field) ... ok 433s test_remove_field_check_does_not_remove_meta_constraints (schema.tests.SchemaTests.test_remove_field_check_does_not_remove_meta_constraints) ... ok 433s test_remove_field_unique_does_not_remove_meta_constraints (schema.tests.SchemaTests.test_remove_field_unique_does_not_remove_meta_constraints) ... ok 433s test_remove_ignored_unique_constraint_not_create_fk_index (schema.tests.SchemaTests.test_remove_ignored_unique_constraint_not_create_fk_index) ... ok 433s test_remove_index_together_does_not_remove_meta_indexes (schema.tests.SchemaTests.test_remove_index_together_does_not_remove_meta_indexes) ... ok 433s test_remove_indexed_field (schema.tests.SchemaTests.test_remove_indexed_field) ... ok 433s test_remove_unique_together_does_not_remove_meta_constraints (schema.tests.SchemaTests.test_remove_unique_together_does_not_remove_meta_constraints) ... ok 433s test_rename (schema.tests.SchemaTests.test_rename) 433s Tests simple altering of fields ... ok 433s test_rename_column_renames_deferred_sql_references (schema.tests.SchemaTests.test_rename_column_renames_deferred_sql_references) ... skipped 'SQLite naively remakes the table on field alteration.' 433s test_rename_field_with_check_to_truncated_name (schema.tests.SchemaTests.test_rename_field_with_check_to_truncated_name) ... ok 433s test_rename_keep_null_status (schema.tests.SchemaTests.test_rename_keep_null_status) 433s Renaming a field shouldn't affect the not null status. ... ok 433s test_rename_referenced_field (schema.tests.SchemaTests.test_rename_referenced_field) ... ok 433s test_rename_table_renames_deferred_sql_references (schema.tests.SchemaTests.test_rename_table_renames_deferred_sql_references) ... ok 433s test_text_field_with_db_index (schema.tests.SchemaTests.test_text_field_with_db_index) ... ok 433s test_text_field_with_db_index_to_fk (schema.tests.SchemaTests.test_text_field_with_db_index_to_fk) ... ok 433s test_unique (schema.tests.SchemaTests.test_unique) 433s Tests removing and adding unique constraints to a single column. ... ok 433s test_unique_and_reverse_m2m (schema.tests.SchemaTests.test_unique_and_reverse_m2m) 433s AlterField can modify a unique field when there's a reverse M2M ... skipped 'SQLite naively remakes the table on field alteration.' 433s test_unique_constraint (schema.tests.SchemaTests.test_unique_constraint) ... ok 433s test_unique_constraint_field_and_expression (schema.tests.SchemaTests.test_unique_constraint_field_and_expression) ... ok 433s test_unique_name_quoting (schema.tests.SchemaTests.test_unique_name_quoting) ... ok 433s test_unique_no_unnecessary_fk_drops (schema.tests.SchemaTests.test_unique_no_unnecessary_fk_drops) 433s If AlterField isn't selective about dropping foreign key constraints ... skipped 'SQLite naively remakes the table on field alteration.' 433s test_unique_together (schema.tests.SchemaTests.test_unique_together) 433s Tests removing and adding unique_together constraints on a model. ... ok 433s test_unique_together_with_fk (schema.tests.SchemaTests.test_unique_together_with_fk) 433s Tests removing and adding unique_together constraints that include ... ok 433s test_unique_together_with_fk_with_existing_index (schema.tests.SchemaTests.test_unique_together_with_fk_with_existing_index) 433s Tests removing and adding unique_together constraints that include ... ok 433s test_unique_with_collation_charfield (schema.tests.SchemaTests.test_unique_with_collation_charfield) ... skipped 'PostgreSQL specific' 433s test_unique_with_deterministic_collation_charfield (schema.tests.SchemaTests.test_unique_with_deterministic_collation_charfield) ... skipped 'PostgreSQL specific' 433s test_unsupported_transactional_ddl_disallowed (schema.tests.SchemaTests.test_unsupported_transactional_ddl_disallowed) ... skipped 'Database has feature(s) can_rollback_ddl' 433s test_booleanfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_booleanfield) ... ok 433s test_charfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_charfield) ... ok 433s test_choicefield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_choicefield) ... ok 433s test_datefield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_datefield) ... ok 433s test_datetimefield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_datetimefield) ... ok 433s test_decimalfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_decimalfield) ... ok 433s test_emailfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_emailfield) ... ok 433s test_error_messages_escaping (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_error_messages_escaping) ... ok 433s test_filefield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_filefield) ... ok 433s test_floatfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_floatfield) ... ok 433s test_generic_ipaddressfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_generic_ipaddressfield) ... ok 433s test_integerfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_integerfield) ... ok 433s test_multiplechoicefield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_multiplechoicefield) ... ok 433s test_regexfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_regexfield) ... ok 433s test_splitdatetimefield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_splitdatetimefield) ... ok 433s test_subclassing_errorlist (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_subclassing_errorlist) ... ok 433s test_timefield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_timefield) ... ok 433s test_urlfield (forms_tests.tests.test_error_messages.FormsErrorMessagesTestCase.test_urlfield) ... ok 433s test_warning (forms_tests.tests.test_forms.DeprecationTests.test_warning) ... ok 433s test_accessing_clean (forms_tests.tests.test_forms.FormsTestCase.test_accessing_clean) ... ok 433s test_auto_id (forms_tests.tests.test_forms.FormsTestCase.test_auto_id) ... ok 433s test_auto_id_false (forms_tests.tests.test_forms.FormsTestCase.test_auto_id_false) ... ok 433s test_auto_id_on_form_and_field (forms_tests.tests.test_forms.FormsTestCase.test_auto_id_on_form_and_field) ... ok 433s test_auto_id_true (forms_tests.tests.test_forms.FormsTestCase.test_auto_id_true) ... ok 433s test_baseform_repr (forms_tests.tests.test_forms.FormsTestCase.test_baseform_repr) 433s BaseForm.__repr__() should contain some basic information about the ... ok 433s test_baseform_repr_dont_trigger_validation (forms_tests.tests.test_forms.FormsTestCase.test_baseform_repr_dont_trigger_validation) 433s BaseForm.__repr__() shouldn't trigger the form validation. ... ok 433s test_boundfield_bool (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_bool) 433s BoundField without any choices (subwidgets) evaluates to True. ... ok 433s test_boundfield_css_classes (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_css_classes) ... ok 433s test_boundfield_empty_label (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_empty_label) ... ok 433s test_boundfield_id_for_label (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_id_for_label) ... ok 433s test_boundfield_id_for_label_override_by_attrs (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_id_for_label_override_by_attrs) 433s If an id is provided in `Widget.attrs`, it overrides the generated ID, ... ok 433s test_boundfield_initial_called_once (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_initial_called_once) 433s Multiple calls to BoundField().value() in an unbound form should return ... ok 433s test_boundfield_invalid_index (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_invalid_index) ... ok 433s test_boundfield_label_tag (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_label_tag) ... ok 433s test_boundfield_label_tag_custom_widget_id_for_label (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_label_tag_custom_widget_id_for_label) ... ok 433s test_boundfield_label_tag_no_id (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_label_tag_no_id) 433s If a widget has no id, label_tag() and legend_tag() return the text ... ok 433s test_boundfield_slice (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_slice) ... ok 433s test_boundfield_subwidget_id_for_label (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_subwidget_id_for_label) 433s If auto_id is provided when initializing the form, the generated ID in ... ok 433s test_boundfield_value_disabled_callable_initial (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_value_disabled_callable_initial) ... ok 433s test_boundfield_values (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_values) ... ok 433s test_boundfield_widget_type (forms_tests.tests.test_forms.FormsTestCase.test_boundfield_widget_type) ... ok 433s test_callable_initial_data (forms_tests.tests.test_forms.FormsTestCase.test_callable_initial_data) ... ok 433s test_changed_data (forms_tests.tests.test_forms.FormsTestCase.test_changed_data) ... ok 433s test_changing_cleaned_data_in_clean (forms_tests.tests.test_forms.FormsTestCase.test_changing_cleaned_data_in_clean) ... ok 433s test_changing_cleaned_data_nothing_returned (forms_tests.tests.test_forms.FormsTestCase.test_changing_cleaned_data_nothing_returned) ... ok 433s test_checkbox_auto_id (forms_tests.tests.test_forms.FormsTestCase.test_checkbox_auto_id) ... ok 433s test_class_prefix (forms_tests.tests.test_forms.FormsTestCase.test_class_prefix) ... ok 433s test_cleaned_data_only_fields (forms_tests.tests.test_forms.FormsTestCase.test_cleaned_data_only_fields) ... ok 433s test_custom_boundfield (forms_tests.tests.test_forms.FormsTestCase.test_custom_boundfield) ... ok 433s test_custom_empty_values (forms_tests.tests.test_forms.FormsTestCase.test_custom_empty_values) 433s Form fields can customize what is considered as an empty value ... ok 433s test_datetime_changed_data_callable_with_microseconds (forms_tests.tests.test_forms.FormsTestCase.test_datetime_changed_data_callable_with_microseconds) ... ok 433s test_datetime_clean_disabled_callable_initial_bound_field (forms_tests.tests.test_forms.FormsTestCase.test_datetime_clean_disabled_callable_initial_bound_field) 433s The cleaned value for a form with a disabled DateTimeField and callable ... ok 433s test_datetime_clean_disabled_callable_initial_microseconds (forms_tests.tests.test_forms.FormsTestCase.test_datetime_clean_disabled_callable_initial_microseconds) 433s Cleaning a form with a disabled DateTimeField and callable initial ... ok 433s test_dynamic_construction (forms_tests.tests.test_forms.FormsTestCase.test_dynamic_construction) ... ok 433s test_dynamic_initial_data (forms_tests.tests.test_forms.FormsTestCase.test_dynamic_initial_data) ... ok 433s test_empty_data_files_multi_value_dict (forms_tests.tests.test_forms.FormsTestCase.test_empty_data_files_multi_value_dict) ... ok 433s test_empty_dict (forms_tests.tests.test_forms.FormsTestCase.test_empty_dict) ... ok 433s test_empty_permitted (forms_tests.tests.test_forms.FormsTestCase.test_empty_permitted) ... ok 433s test_empty_permitted_and_use_required_attribute (forms_tests.tests.test_forms.FormsTestCase.test_empty_permitted_and_use_required_attribute) ... ok 433s test_empty_querydict_args (forms_tests.tests.test_forms.FormsTestCase.test_empty_querydict_args) ... ok 433s test_error_dict (forms_tests.tests.test_forms.FormsTestCase.test_error_dict) ... ok 433s test_error_dict_as_json_escape_html (forms_tests.tests.test_forms.FormsTestCase.test_error_dict_as_json_escape_html) 433s #21962 - adding html escape flag to ErrorDict ... ok 433s test_error_escaping (forms_tests.tests.test_forms.FormsTestCase.test_error_escaping) ... ok 433s test_error_html_required_html_classes (forms_tests.tests.test_forms.FormsTestCase.test_error_html_required_html_classes) ... ok 433s test_error_list (forms_tests.tests.test_forms.FormsTestCase.test_error_list) ... ok 433s test_error_list_class_has_one_class_specified (forms_tests.tests.test_forms.FormsTestCase.test_error_list_class_has_one_class_specified) ... ok 433s test_error_list_class_not_specified (forms_tests.tests.test_forms.FormsTestCase.test_error_list_class_not_specified) ... ok 433s test_error_list_with_hidden_field_errors_has_correct_class (forms_tests.tests.test_forms.FormsTestCase.test_error_list_with_hidden_field_errors_has_correct_class) ... ok 433s test_error_list_with_non_field_errors_has_correct_class (forms_tests.tests.test_forms.FormsTestCase.test_error_list_with_non_field_errors_has_correct_class) ... ok 433s test_escaping (forms_tests.tests.test_forms.FormsTestCase.test_escaping) ... ok 433s test_explicit_field_order (forms_tests.tests.test_forms.FormsTestCase.test_explicit_field_order) ... ok 433s test_extracting_hidden_and_visible (forms_tests.tests.test_forms.FormsTestCase.test_extracting_hidden_and_visible) ... ok 433s test_field_deep_copy_error_messages (forms_tests.tests.test_forms.FormsTestCase.test_field_deep_copy_error_messages) ... ok 433s test_field_named_data (forms_tests.tests.test_forms.FormsTestCase.test_field_named_data) ... ok 433s test_field_order (forms_tests.tests.test_forms.FormsTestCase.test_field_order) ... ok 433s test_filefield_initial_callable (forms_tests.tests.test_forms.FormsTestCase.test_filefield_initial_callable) ... ok 433s test_filefield_with_fileinput_required (forms_tests.tests.test_forms.FormsTestCase.test_filefield_with_fileinput_required) ... ok 433s test_form (forms_tests.tests.test_forms.FormsTestCase.test_form) ... ok 433s test_form_html_attributes (forms_tests.tests.test_forms.FormsTestCase.test_form_html_attributes) ... ok 433s test_form_with_disabled_fields (forms_tests.tests.test_forms.FormsTestCase.test_form_with_disabled_fields) ... ok 433s test_form_with_iterable_boundfield (forms_tests.tests.test_forms.FormsTestCase.test_form_with_iterable_boundfield) ... ok 433s test_form_with_iterable_boundfield_id (forms_tests.tests.test_forms.FormsTestCase.test_form_with_iterable_boundfield_id) ... ok 433s test_form_with_noniterable_boundfield (forms_tests.tests.test_forms.FormsTestCase.test_form_with_noniterable_boundfield) ... ok 433s test_forms_with_choices (forms_tests.tests.test_forms.FormsTestCase.test_forms_with_choices) ... ok 433s test_forms_with_file_fields (forms_tests.tests.test_forms.FormsTestCase.test_forms_with_file_fields) ... ok 433s test_forms_with_multiple_choice (forms_tests.tests.test_forms.FormsTestCase.test_forms_with_multiple_choice) ... ok 433s test_forms_with_null_boolean (forms_tests.tests.test_forms.FormsTestCase.test_forms_with_null_boolean) ... ok 433s test_forms_with_prefixes (forms_tests.tests.test_forms.FormsTestCase.test_forms_with_prefixes) ... ok 433s test_forms_with_radio (forms_tests.tests.test_forms.FormsTestCase.test_forms_with_radio) ... ok 433s test_get_initial_for_field (forms_tests.tests.test_forms.FormsTestCase.test_get_initial_for_field) ... ok 433s test_has_error (forms_tests.tests.test_forms.FormsTestCase.test_has_error) ... ok 433s test_help_text (forms_tests.tests.test_forms.FormsTestCase.test_help_text) ... ok 433s test_help_text_html_safe (forms_tests.tests.test_forms.FormsTestCase.test_help_text_html_safe) 433s help_text should not be escaped. ... ok 433s test_hidden_data (forms_tests.tests.test_forms.FormsTestCase.test_hidden_data) ... ok 433s test_hidden_initial_gets_id (forms_tests.tests.test_forms.FormsTestCase.test_hidden_initial_gets_id) ... ok 433s test_hidden_widget (forms_tests.tests.test_forms.FormsTestCase.test_hidden_widget) ... ok 433s test_html_output_with_hidden_input_field_errors (forms_tests.tests.test_forms.FormsTestCase.test_html_output_with_hidden_input_field_errors) ... ok 433s test_html_safe (forms_tests.tests.test_forms.FormsTestCase.test_html_safe) ... ok 433s test_id_on_field (forms_tests.tests.test_forms.FormsTestCase.test_id_on_field) ... ok 433s test_initial_data (forms_tests.tests.test_forms.FormsTestCase.test_initial_data) ... ok 433s test_initial_datetime_values (forms_tests.tests.test_forms.FormsTestCase.test_initial_datetime_values) ... ok 433s test_iterable_boundfield_select (forms_tests.tests.test_forms.FormsTestCase.test_iterable_boundfield_select) ... ok 433s test_label_attrs_not_localized (forms_tests.tests.test_forms.FormsTestCase.test_label_attrs_not_localized) ... ok 433s test_label_does_not_include_new_line (forms_tests.tests.test_forms.FormsTestCase.test_label_does_not_include_new_line) ... ok 433s test_label_has_required_css_class (forms_tests.tests.test_forms.FormsTestCase.test_label_has_required_css_class) 433s required_css_class is added to label_tag() and legend_tag() of required ... ok 433s test_label_split_datetime_not_displayed (forms_tests.tests.test_forms.FormsTestCase.test_label_split_datetime_not_displayed) ... ok 433s test_label_suffix (forms_tests.tests.test_forms.FormsTestCase.test_label_suffix) ... ok 433s test_label_suffix_override (forms_tests.tests.test_forms.FormsTestCase.test_label_suffix_override) 433s BoundField label_suffix (if provided) overrides Form label_suffix ... ok 433s test_multipart_encoded_form (forms_tests.tests.test_forms.FormsTestCase.test_multipart_encoded_form) ... ok 433s test_multiple_checkbox_render (forms_tests.tests.test_forms.FormsTestCase.test_multiple_checkbox_render) ... ok 433s test_multiple_choice_checkbox (forms_tests.tests.test_forms.FormsTestCase.test_multiple_choice_checkbox) ... ok 433s test_multiple_choice_list_data (forms_tests.tests.test_forms.FormsTestCase.test_multiple_choice_list_data) ... ok 433s test_multiple_hidden (forms_tests.tests.test_forms.FormsTestCase.test_multiple_hidden) ... ok 433s test_multivalue_deep_copy (forms_tests.tests.test_forms.FormsTestCase.test_multivalue_deep_copy) 433s #19298 -- MultiValueField needs to override the default as it needs ... ok 433s test_multivalue_field_validation (forms_tests.tests.test_forms.FormsTestCase.test_multivalue_field_validation) ... ok 433s test_multivalue_initial_data (forms_tests.tests.test_forms.FormsTestCase.test_multivalue_initial_data) 433s #23674 -- invalid initial data should not break form.changed_data() ... ok 433s test_multivalue_optional_subfields (forms_tests.tests.test_forms.FormsTestCase.test_multivalue_optional_subfields) ... ok 433s test_multivalue_optional_subfields_rendering (forms_tests.tests.test_forms.FormsTestCase.test_multivalue_optional_subfields_rendering) ... ok 433s test_only_hidden_fields (forms_tests.tests.test_forms.FormsTestCase.test_only_hidden_fields) ... ok 433s test_optional_data (forms_tests.tests.test_forms.FormsTestCase.test_optional_data) ... ok 433s test_remove_cached_field (forms_tests.tests.test_forms.FormsTestCase.test_remove_cached_field) ... ok 433s test_specifying_labels (forms_tests.tests.test_forms.FormsTestCase.test_specifying_labels) ... ok 433s test_subclassing_forms (forms_tests.tests.test_forms.FormsTestCase.test_subclassing_forms) ... ok 433s test_unbound_form (forms_tests.tests.test_forms.FormsTestCase.test_unbound_form) ... ok 433s test_unicode_values (forms_tests.tests.test_forms.FormsTestCase.test_unicode_values) ... ok 433s test_update_error_dict (forms_tests.tests.test_forms.FormsTestCase.test_update_error_dict) ... ok 433s test_use_required_attribute_false (forms_tests.tests.test_forms.FormsTestCase.test_use_required_attribute_false) ... ok 433s test_use_required_attribute_true (forms_tests.tests.test_forms.FormsTestCase.test_use_required_attribute_true) ... ok 433s test_validating_multiple_fields (forms_tests.tests.test_forms.FormsTestCase.test_validating_multiple_fields) ... ok 433s test_validators_independence (forms_tests.tests.test_forms.FormsTestCase.test_validators_independence) 433s The list of form field validators can be modified without polluting ... ok 433s test_various_boolean_values (forms_tests.tests.test_forms.FormsTestCase.test_various_boolean_values) ... ok 433s test_widget_output (forms_tests.tests.test_forms.FormsTestCase.test_widget_output) ... ok 433s test_accessing_clean (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_accessing_clean) ... ok 433s test_auto_id (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_auto_id) ... ok 433s test_auto_id_false (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_auto_id_false) ... ok 433s test_auto_id_on_form_and_field (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_auto_id_on_form_and_field) ... ok 433s test_auto_id_true (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_auto_id_true) ... ok 433s test_baseform_repr (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_baseform_repr) 433s BaseForm.__repr__() should contain some basic information about the ... ok 433s test_baseform_repr_dont_trigger_validation (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_baseform_repr_dont_trigger_validation) 433s BaseForm.__repr__() shouldn't trigger the form validation. ... ok 433s test_boundfield_bool (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_bool) 433s BoundField without any choices (subwidgets) evaluates to True. ... ok 433s test_boundfield_css_classes (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_css_classes) ... ok 433s test_boundfield_empty_label (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_empty_label) ... ok 433s test_boundfield_id_for_label (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_id_for_label) ... ok 433s test_boundfield_id_for_label_override_by_attrs (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_id_for_label_override_by_attrs) 433s If an id is provided in `Widget.attrs`, it overrides the generated ID, ... ok 433s test_boundfield_initial_called_once (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_initial_called_once) 433s Multiple calls to BoundField().value() in an unbound form should return ... ok 433s test_boundfield_invalid_index (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_invalid_index) ... ok 433s test_boundfield_label_tag (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_label_tag) ... ok 433s test_boundfield_label_tag_custom_widget_id_for_label (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_label_tag_custom_widget_id_for_label) ... ok 433s test_boundfield_label_tag_no_id (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_label_tag_no_id) 433s If a widget has no id, label_tag() and legend_tag() return the text ... ok 433s test_boundfield_slice (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_slice) ... ok 433s test_boundfield_subwidget_id_for_label (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_subwidget_id_for_label) 433s If auto_id is provided when initializing the form, the generated ID in ... ok 433s test_boundfield_value_disabled_callable_initial (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_value_disabled_callable_initial) ... ok 433s test_boundfield_values (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_values) ... ok 433s test_boundfield_widget_type (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_boundfield_widget_type) ... ok 433s test_callable_initial_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_callable_initial_data) ... ok 433s test_changed_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_changed_data) ... ok 433s test_changing_cleaned_data_in_clean (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_changing_cleaned_data_in_clean) ... ok 433s test_changing_cleaned_data_nothing_returned (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_changing_cleaned_data_nothing_returned) ... ok 433s test_checkbox_auto_id (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_checkbox_auto_id) ... ok 433s test_class_prefix (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_class_prefix) ... ok 433s test_cleaned_data_only_fields (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_cleaned_data_only_fields) ... ok 433s test_custom_boundfield (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_custom_boundfield) ... ok 433s test_custom_empty_values (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_custom_empty_values) 433s Form fields can customize what is considered as an empty value ... ok 433s test_datetime_changed_data_callable_with_microseconds (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_datetime_changed_data_callable_with_microseconds) ... ok 433s test_datetime_clean_disabled_callable_initial_bound_field (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_datetime_clean_disabled_callable_initial_bound_field) 433s The cleaned value for a form with a disabled DateTimeField and callable ... ok 433s test_datetime_clean_disabled_callable_initial_microseconds (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_datetime_clean_disabled_callable_initial_microseconds) 433s Cleaning a form with a disabled DateTimeField and callable initial ... ok 433s test_dynamic_construction (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_dynamic_construction) ... ok 433s test_dynamic_initial_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_dynamic_initial_data) ... ok 433s test_empty_data_files_multi_value_dict (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_empty_data_files_multi_value_dict) ... ok 433s test_empty_dict (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_empty_dict) ... ok 433s test_empty_permitted (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_empty_permitted) ... ok 433s test_empty_permitted_and_use_required_attribute (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_empty_permitted_and_use_required_attribute) ... ok 433s test_empty_querydict_args (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_empty_querydict_args) ... ok 433s test_error_dict (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_dict) ... ok 433s test_error_dict_as_json_escape_html (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_dict_as_json_escape_html) 433s #21962 - adding html escape flag to ErrorDict ... ok 433s test_error_escaping (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_escaping) ... ok 433s test_error_html_required_html_classes (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_html_required_html_classes) ... ok 433s test_error_list (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_list) ... ok 433s test_error_list_class_has_one_class_specified (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_list_class_has_one_class_specified) ... ok 433s test_error_list_class_not_specified (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_list_class_not_specified) ... ok 433s test_error_list_with_hidden_field_errors_has_correct_class (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_list_with_hidden_field_errors_has_correct_class) ... ok 433s test_error_list_with_non_field_errors_has_correct_class (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_error_list_with_non_field_errors_has_correct_class) ... ok 433s test_escaping (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_escaping) ... ok 433s test_explicit_field_order (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_explicit_field_order) ... ok 433s test_extracting_hidden_and_visible (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_extracting_hidden_and_visible) ... ok 433s test_field_deep_copy_error_messages (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_field_deep_copy_error_messages) ... ok 433s test_field_named_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_field_named_data) ... ok 433s test_field_order (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_field_order) ... ok 433s test_filefield_initial_callable (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_filefield_initial_callable) ... ok 433s test_filefield_with_fileinput_required (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_filefield_with_fileinput_required) ... ok 433s test_form (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_form) ... ok 433s test_form_html_attributes (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_form_html_attributes) ... ok 433s test_form_with_disabled_fields (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_form_with_disabled_fields) ... ok 433s test_form_with_iterable_boundfield (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_form_with_iterable_boundfield) ... ok 433s test_form_with_iterable_boundfield_id (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_form_with_iterable_boundfield_id) ... ok 433s test_form_with_noniterable_boundfield (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_form_with_noniterable_boundfield) ... ok 433s test_forms_with_choices (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_forms_with_choices) ... ok 433s test_forms_with_file_fields (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_forms_with_file_fields) ... ok 433s test_forms_with_multiple_choice (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_forms_with_multiple_choice) ... ok 433s test_forms_with_null_boolean (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_forms_with_null_boolean) ... ok 433s test_forms_with_prefixes (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_forms_with_prefixes) ... ok 433s test_forms_with_radio (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_forms_with_radio) ... ok 433s test_get_initial_for_field (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_get_initial_for_field) ... ok 433s test_has_error (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_has_error) ... ok 433s test_help_text (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_help_text) ... ok 433s test_help_text_html_safe (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_help_text_html_safe) 433s help_text should not be escaped. ... ok 433s test_hidden_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_hidden_data) ... ok 433s test_hidden_initial_gets_id (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_hidden_initial_gets_id) ... ok 433s test_hidden_widget (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_hidden_widget) ... ok 433s test_html_output_with_hidden_input_field_errors (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_html_output_with_hidden_input_field_errors) ... ok 433s test_html_safe (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_html_safe) ... ok 433s test_id_on_field (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_id_on_field) ... ok 433s test_initial_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_initial_data) ... ok 433s test_initial_datetime_values (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_initial_datetime_values) ... ok 433s test_iterable_boundfield_select (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_iterable_boundfield_select) ... ok 433s test_label_attrs_not_localized (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_label_attrs_not_localized) ... ok 433s test_label_does_not_include_new_line (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_label_does_not_include_new_line) ... ok 433s test_label_has_required_css_class (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_label_has_required_css_class) 433s required_css_class is added to label_tag() and legend_tag() of required ... ok 433s test_label_split_datetime_not_displayed (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_label_split_datetime_not_displayed) ... ok 433s test_label_suffix (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_label_suffix) ... ok 433s test_label_suffix_override (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_label_suffix_override) 433s BoundField label_suffix (if provided) overrides Form label_suffix ... ok 433s test_multipart_encoded_form (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multipart_encoded_form) ... ok 433s test_multiple_checkbox_render (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multiple_checkbox_render) ... ok 433s test_multiple_choice_checkbox (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multiple_choice_checkbox) ... ok 433s test_multiple_choice_list_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multiple_choice_list_data) ... ok 433s test_multiple_hidden (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multiple_hidden) ... ok 433s test_multivalue_deep_copy (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multivalue_deep_copy) 433s #19298 -- MultiValueField needs to override the default as it needs ... ok 433s test_multivalue_field_validation (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multivalue_field_validation) ... ok 433s test_multivalue_initial_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multivalue_initial_data) 433s #23674 -- invalid initial data should not break form.changed_data() ... ok 433s test_multivalue_optional_subfields (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multivalue_optional_subfields) ... ok 433s test_multivalue_optional_subfields_rendering (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_multivalue_optional_subfields_rendering) ... ok 433s test_only_hidden_fields (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_only_hidden_fields) ... ok 433s test_optional_data (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_optional_data) ... ok 433s test_remove_cached_field (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_remove_cached_field) ... ok 433s test_specifying_labels (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_specifying_labels) ... ok 433s test_subclassing_forms (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_subclassing_forms) ... ok 433s test_unbound_form (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_unbound_form) ... ok 433s test_unicode_values (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_unicode_values) ... ok 433s test_update_error_dict (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_update_error_dict) ... ok 433s test_use_required_attribute_false (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_use_required_attribute_false) ... ok 433s test_use_required_attribute_true (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_use_required_attribute_true) ... ok 433s test_validating_multiple_fields (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_validating_multiple_fields) ... ok 433s test_validators_independence (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_validators_independence) 433s The list of form field validators can be modified without polluting ... ok 433s test_various_boolean_values (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_various_boolean_values) ... ok 433s test_widget_output (forms_tests.tests.test_forms.Jinja2FormsTestCase.test_widget_output) ... ok 433s test_custom_renderer_template_name (forms_tests.tests.test_forms.OverrideTests.test_custom_renderer_template_name) ... ok 433s test_cyclic_context_boundfield_render (forms_tests.tests.test_forms.OverrideTests.test_cyclic_context_boundfield_render) ... ok 433s test_errorlist_override (forms_tests.tests.test_forms.OverrideTests.test_errorlist_override) ... ok 433s test_legend_tag (forms_tests.tests.test_forms.OverrideTests.test_legend_tag) ... ok 433s test_per_form_template_name (forms_tests.tests.test_forms.OverrideTests.test_per_form_template_name) ... ok 433s test_attribute_class (forms_tests.tests.test_forms.RendererTests.test_attribute_class) ... ok 433s test_attribute_instance (forms_tests.tests.test_forms.RendererTests.test_attribute_instance) ... ok 433s test_attribute_override (forms_tests.tests.test_forms.RendererTests.test_attribute_override) ... ok 433s test_default (forms_tests.tests.test_forms.RendererTests.test_default) ... ok 433s test_kwarg_class (forms_tests.tests.test_forms.RendererTests.test_kwarg_class) ... ok 433s test_kwarg_instance (forms_tests.tests.test_forms.RendererTests.test_kwarg_instance) ... ok 433s test_invalid (forms_tests.tests.test_formsets.AllValidTests.test_invalid) 433s all_valid() validates all forms, even when some are invalid. ... ok 433s test_valid (forms_tests.tests.test_formsets.AllValidTests.test_valid) ... ok 433s Exception ignored in: 433s Traceback (most recent call last): 433s File "/usr/lib/python3/dist-packages/django/utils/functional.py", line 241, in 433s if any( 433s ResourceWarning: unclosed database in 433s Exception ignored in: 433s Traceback (most recent call last): 433s File "/usr/lib/python3/dist-packages/django/utils/functional.py", line 241, in 433s if any( 433s ResourceWarning: unclosed database in 433s Exception ignored in: 433s Traceback (most recent call last): 433s File "/usr/lib/python3/dist-packages/django/utils/functional.py", line 241, in 433s if any( 433s ResourceWarning: unclosed database in 433s test_no_management_form_warning (forms_tests.tests.test_formsets.DeprecationTests.test_no_management_form_warning) 433s Management forms are already rendered with the new div template. ... ok 433s test_warning (forms_tests.tests.test_formsets.DeprecationTests.test_warning) ... ok 433s test_basic_processing_in_view (forms_tests.tests.test_forms.TemplateTests.test_basic_processing_in_view) ... ok 433s test_iterate_checkboxes (forms_tests.tests.test_forms.TemplateTests.test_iterate_checkboxes) ... ok 433s test_iterate_radios (forms_tests.tests.test_forms.TemplateTests.test_iterate_radios) ... ok 433s test_templates_with_forms (forms_tests.tests.test_forms.TemplateTests.test_templates_with_forms) ... ok 433s test_as_div (forms_tests.tests.test_formsets.FormsetAsTagTests.test_as_div) ... ok 433s test_as_p (forms_tests.tests.test_formsets.FormsetAsTagTests.test_as_p) ... ok 433s test_as_table (forms_tests.tests.test_formsets.FormsetAsTagTests.test_as_table) ... ok 433s test_as_ul (forms_tests.tests.test_formsets.FormsetAsTagTests.test_as_ul) ... ok 434s test_absolute_max (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_absolute_max) ... ok 434s test_absolute_max_invalid (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_absolute_max_invalid) ... ok 434s test_absolute_max_with_max_num (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_absolute_max_with_max_num) ... ok 434s test_basic_formset (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_basic_formset) 434s A FormSet constructor takes the same arguments as Form. Create a ... ok 434s test_blank_form_unfilled (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_blank_form_unfilled) 434s A form that's displayed as blank may be submitted as blank. ... ok 434s test_can_delete_extra_formset_forms (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_can_delete_extra_formset_forms) ... ok 434s test_clean_hook (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_clean_hook) 434s FormSets have a clean() hook for doing extra validation that isn't tied ... ok 434s test_custom_renderer (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_custom_renderer) 434s A custom renderer passed to a formset_factory() is passed to all forms ... ok 434s test_default_absolute_max (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_default_absolute_max) ... ok 434s test_delete_prefilled_data (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_delete_prefilled_data) 434s Deleting prefilled data is an error. Removing data from form fields ... ok 434s test_disable_delete_extra_formset_forms (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_disable_delete_extra_formset_forms) ... ok 434s test_displaying_more_than_one_blank_form (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_displaying_more_than_one_blank_form) 434s More than 1 empty form can be displayed using formset_factory's ... ok 434s test_empty_ordered_fields (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_empty_ordered_fields) 434s Ordering fields are allowed to be left blank. If they are left blank, ... ok 434s test_empty_permitted_ignored_empty_form (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_empty_permitted_ignored_empty_form) ... ok 434s test_form_kwargs_empty_form (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_form_kwargs_empty_form) ... ok 434s test_form_kwargs_formset (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_form_kwargs_formset) 434s Custom kwargs set on the formset instance are passed to the ... ok 434s test_form_kwargs_formset_dynamic (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_form_kwargs_formset_dynamic) 434s Form kwargs can be passed dynamically in a formset. ... ok 434s test_formset_calls_forms_is_valid (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_calls_forms_is_valid) 434s Formsets call is_valid() on each form. ... ok 434s test_formset_error_class (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_error_class) 434s Formset's forms use the formset's error_class. ... ok 434s test_formset_has_changed (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_has_changed) 434s FormSet.has_changed() is True if any data is passed to its forms, even ... ok 434s test_formset_initial_data (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_initial_data) 434s A FormSet can be prefilled with existing data by providing a list of ... ok 434s test_formset_iteration (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_iteration) 434s Formset instances are iterable. ... ok 434s test_formset_nonzero (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_nonzero) 434s A formsets without any forms evaluates as True. ... ok 434s test_formset_splitdatetimefield (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_splitdatetimefield) 434s Formset works with SplitDateTimeField(initial=datetime.datetime.now). ... ok 434s test_formset_total_error_count (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_total_error_count) 434s A valid formset should have 0 total errors. ... ok 434s test_formset_total_error_count_with_non_form_errors (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_total_error_count_with_non_form_errors) ... ok 434s test_formset_validate_max_flag (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validate_max_flag) 434s If validate_max is set and max_num is less than TOTAL_FORMS in the ... ok 434s test_formset_validate_max_flag_custom_error (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validate_max_flag_custom_error) ... ok 434s test_formset_validate_min_excludes_empty_forms (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validate_min_excludes_empty_forms) ... ok 434s test_formset_validate_min_flag (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validate_min_flag) 434s If validate_min is set and min_num is more than TOTAL_FORMS in the ... ok 434s test_formset_validate_min_flag_custom_formatted_error (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validate_min_flag_custom_formatted_error) ... ok 434s test_formset_validate_min_unchanged_forms (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validate_min_unchanged_forms) 434s min_num validation doesn't consider unchanged forms with initial data ... ok 434s test_formset_validation (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validation) ... ok 434s test_formset_validation_count (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_validation_count) 434s A formset's ManagementForm is validated once per FormSet.is_valid() ... ok 434s test_formset_with_deletion (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_with_deletion) 434s formset_factory's can_delete argument adds a boolean "delete" field to ... ok 434s test_formset_with_deletion_custom_widget (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_with_deletion_custom_widget) ... ok 434s test_formset_with_deletion_invalid_deleted_form (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_with_deletion_invalid_deleted_form) 434s deleted_forms works on a valid formset even if a deleted form would ... ok 434s test_formset_with_deletion_remove_deletion_flag (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_with_deletion_remove_deletion_flag) 434s If a form is filled with something and can_delete is also checked, that ... ok 434s test_formset_with_ordering_and_deletion (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formset_with_ordering_and_deletion) 434s FormSets with ordering + deletion. ... ok 434s test_formsets_with_ordering (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formsets_with_ordering) 434s formset_factory's can_order argument adds an integer field to each ... ok 434s test_formsets_with_ordering_custom_widget (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_formsets_with_ordering_custom_widget) ... ok 434s test_hard_limit_on_instantiated_forms (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_hard_limit_on_instantiated_forms) 434s A formset has a hard limit on the number of forms instantiated. ... ok 434s test_html_safe (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_html_safe) ... ok 434s test_increase_hard_limit (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_increase_hard_limit) 434s Can increase the built-in forms limit via a higher max_num. ... ok 434s test_invalid_deleted_form_with_ordering (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_invalid_deleted_form_with_ordering) 434s Can get ordered_forms from a valid formset even if a deleted form ... ok 434s test_limited_max_forms_two (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_limited_max_forms_two) ... ok 434s test_limiting_extra_lest_than_max_num (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_limiting_extra_lest_than_max_num) 434s max_num has no effect when extra is less than max_num. ... ok 434s test_limiting_max_forms (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_limiting_max_forms) 434s Limiting the maximum number of forms with max_num. ... ok 434s test_management_form_field_names (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_management_form_field_names) 434s The management form class has field names matching the constants. ... ok 434s test_management_form_prefix (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_management_form_prefix) 434s The management form has the correct prefix. ... ok 434s test_max_num_with_initial_data (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_max_num_with_initial_data) ... ok 434s test_max_num_zero (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_max_num_zero) 434s If max_num is 0 then no form is rendered at all, regardless of extra, ... ok 434s test_max_num_zero_with_initial (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_max_num_zero_with_initial) ... ok 434s test_min_num_displaying_more_than_one_blank_form (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_min_num_displaying_more_than_one_blank_form) 434s More than 1 empty form can also be displayed using formset_factory's ... ok 434s test_min_num_displaying_more_than_one_blank_form_with_zero_extra (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_min_num_displaying_more_than_one_blank_form_with_zero_extra) 434s More than 1 empty form can be displayed using min_num. ... ok 434s test_more_initial_data (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_more_initial_data) 434s The extra argument works when the formset is pre-filled with initial ... ok 434s test_more_initial_form_result_in_one (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_more_initial_form_result_in_one) 434s One form from initial and extra=3 with max_num=2 results in the one ... ok 434s test_more_initial_than_max_num (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_more_initial_than_max_num) 434s More initial forms than max_num results in all initial forms being ... ok 434s test_non_form_errors (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_non_form_errors) ... ok 434s test_non_form_errors_run_full_clean (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_non_form_errors_run_full_clean) 434s If non_form_errors() is called without calling is_valid() first, ... ok 434s test_ordering_blank_fieldsets (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_ordering_blank_fieldsets) 434s Ordering works with blank fieldsets. ... ok 434s test_repr (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_repr) ... ok 434s test_repr_do_not_trigger_validation (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_repr_do_not_trigger_validation) ... ok 434s test_second_form_partially_filled (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_second_form_partially_filled) 434s If at least one field is filled out on a blank form, it will be ... ok 434s test_second_form_partially_filled_2 (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_second_form_partially_filled_2) 434s A partially completed form is invalid. ... ok 434s test_single_form_completed (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_single_form_completed) 434s Just one form may be completed. ... ok 434s test_template_name_can_be_overridden (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_template_name_can_be_overridden) ... ok 434s test_template_name_uses_renderer_value (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_template_name_uses_renderer_value) ... ok 434s test_validate_max_ignores_forms_marked_for_deletion (forms_tests.tests.test_formsets.FormsFormsetTestCase.test_validate_max_ignores_forms_marked_for_deletion) ... ok 434s test_as_div (forms_tests.tests.test_formsets.Jinja2FormsetAsTagTests.test_as_div) ... ok 434s test_as_p (forms_tests.tests.test_formsets.Jinja2FormsetAsTagTests.test_as_p) ... ok 434s test_as_table (forms_tests.tests.test_formsets.Jinja2FormsetAsTagTests.test_as_table) ... ok 434s test_as_ul (forms_tests.tests.test_formsets.Jinja2FormsetAsTagTests.test_as_ul) ... ok 434s test_absolute_max (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_absolute_max) ... ok 434s test_absolute_max_invalid (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_absolute_max_invalid) ... ok 434s test_absolute_max_with_max_num (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_absolute_max_with_max_num) ... ok 434s test_basic_formset (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_basic_formset) 434s A FormSet constructor takes the same arguments as Form. Create a ... ok 434s test_blank_form_unfilled (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_blank_form_unfilled) 434s A form that's displayed as blank may be submitted as blank. ... ok 434s test_can_delete_extra_formset_forms (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_can_delete_extra_formset_forms) ... ok 434s test_clean_hook (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_clean_hook) 434s FormSets have a clean() hook for doing extra validation that isn't tied ... ok 434s test_custom_renderer (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_custom_renderer) 434s A custom renderer passed to a formset_factory() is passed to all forms ... ok 434s test_default_absolute_max (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_default_absolute_max) ... ok 434s test_delete_prefilled_data (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_delete_prefilled_data) 434s Deleting prefilled data is an error. Removing data from form fields ... ok 434s test_disable_delete_extra_formset_forms (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_disable_delete_extra_formset_forms) ... ok 434s test_displaying_more_than_one_blank_form (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_displaying_more_than_one_blank_form) 434s More than 1 empty form can be displayed using formset_factory's ... ok 434s test_empty_ordered_fields (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_empty_ordered_fields) 434s Ordering fields are allowed to be left blank. If they are left blank, ... ok 434s test_empty_permitted_ignored_empty_form (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_empty_permitted_ignored_empty_form) ... ok 434s test_form_kwargs_empty_form (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_form_kwargs_empty_form) ... ok 434s test_form_kwargs_formset (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_form_kwargs_formset) 434s Custom kwargs set on the formset instance are passed to the ... ok 434s test_form_kwargs_formset_dynamic (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_form_kwargs_formset_dynamic) 434s Form kwargs can be passed dynamically in a formset. ... ok 434s test_formset_calls_forms_is_valid (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_calls_forms_is_valid) 434s Formsets call is_valid() on each form. ... ok 434s test_formset_error_class (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_error_class) 434s Formset's forms use the formset's error_class. ... ok 434s test_formset_has_changed (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_has_changed) 434s FormSet.has_changed() is True if any data is passed to its forms, even ... ok 434s test_formset_initial_data (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_initial_data) 434s A FormSet can be prefilled with existing data by providing a list of ... ok 434s test_formset_iteration (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_iteration) 434s Formset instances are iterable. ... ok 434s test_formset_nonzero (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_nonzero) 434s A formsets without any forms evaluates as True. ... ok 434s test_formset_splitdatetimefield (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_splitdatetimefield) 434s Formset works with SplitDateTimeField(initial=datetime.datetime.now). ... ok 434s test_formset_total_error_count (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_total_error_count) 434s A valid formset should have 0 total errors. ... ok 434s test_formset_total_error_count_with_non_form_errors (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_total_error_count_with_non_form_errors) ... ok 434s test_formset_validate_max_flag (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validate_max_flag) 434s If validate_max is set and max_num is less than TOTAL_FORMS in the ... ok 434s test_formset_validate_max_flag_custom_error (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validate_max_flag_custom_error) ... ok 434s test_formset_validate_min_excludes_empty_forms (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validate_min_excludes_empty_forms) ... ok 434s test_formset_validate_min_flag (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validate_min_flag) 434s If validate_min is set and min_num is more than TOTAL_FORMS in the ... ok 434s test_formset_validate_min_flag_custom_formatted_error (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validate_min_flag_custom_formatted_error) ... ok 434s test_formset_validate_min_unchanged_forms (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validate_min_unchanged_forms) 434s min_num validation doesn't consider unchanged forms with initial data ... ok 434s test_formset_validation (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validation) ... ok 434s test_formset_validation_count (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_validation_count) 434s A formset's ManagementForm is validated once per FormSet.is_valid() ... ok 434s test_formset_with_deletion (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_with_deletion) 434s formset_factory's can_delete argument adds a boolean "delete" field to ... ok 434s test_formset_with_deletion_custom_widget (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_with_deletion_custom_widget) ... ok 434s test_formset_with_deletion_invalid_deleted_form (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_with_deletion_invalid_deleted_form) 434s deleted_forms works on a valid formset even if a deleted form would ... ok 434s test_formset_with_deletion_remove_deletion_flag (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_with_deletion_remove_deletion_flag) 434s If a form is filled with something and can_delete is also checked, that ... ok 434s test_formset_with_ordering_and_deletion (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formset_with_ordering_and_deletion) 434s FormSets with ordering + deletion. ... ok 434s test_formsets_with_ordering (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formsets_with_ordering) 434s formset_factory's can_order argument adds an integer field to each ... ok 434s test_formsets_with_ordering_custom_widget (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_formsets_with_ordering_custom_widget) ... ok 434s test_hard_limit_on_instantiated_forms (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_hard_limit_on_instantiated_forms) 434s A formset has a hard limit on the number of forms instantiated. ... ok 434s test_html_safe (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_html_safe) ... ok 434s test_increase_hard_limit (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_increase_hard_limit) 434s Can increase the built-in forms limit via a higher max_num. ... ok 434s test_invalid_deleted_form_with_ordering (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_invalid_deleted_form_with_ordering) 434s Can get ordered_forms from a valid formset even if a deleted form ... ok 434s test_limited_max_forms_two (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_limited_max_forms_two) ... ok 434s test_limiting_extra_lest_than_max_num (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_limiting_extra_lest_than_max_num) 434s max_num has no effect when extra is less than max_num. ... ok 434s test_limiting_max_forms (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_limiting_max_forms) 434s Limiting the maximum number of forms with max_num. ... ok 434s test_management_form_field_names (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_management_form_field_names) 434s The management form class has field names matching the constants. ... ok 434s test_management_form_prefix (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_management_form_prefix) 434s The management form has the correct prefix. ... ok 434s test_max_num_with_initial_data (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_max_num_with_initial_data) ... ok 434s test_max_num_zero (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_max_num_zero) 434s If max_num is 0 then no form is rendered at all, regardless of extra, ... ok 434s test_max_num_zero_with_initial (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_max_num_zero_with_initial) ... ok 434s test_min_num_displaying_more_than_one_blank_form (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_min_num_displaying_more_than_one_blank_form) 434s More than 1 empty form can also be displayed using formset_factory's ... ok 434s test_min_num_displaying_more_than_one_blank_form_with_zero_extra (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_min_num_displaying_more_than_one_blank_form_with_zero_extra) 434s More than 1 empty form can be displayed using min_num. ... ok 434s test_more_initial_data (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_more_initial_data) 434s The extra argument works when the formset is pre-filled with initial ... ok 434s test_more_initial_form_result_in_one (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_more_initial_form_result_in_one) 434s One form from initial and extra=3 with max_num=2 results in the one ... ok 434s test_more_initial_than_max_num (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_more_initial_than_max_num) 434s More initial forms than max_num results in all initial forms being ... ok 434s test_non_form_errors (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_non_form_errors) ... ok 434s test_non_form_errors_run_full_clean (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_non_form_errors_run_full_clean) 434s If non_form_errors() is called without calling is_valid() first, ... ok 434s test_ordering_blank_fieldsets (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_ordering_blank_fieldsets) 434s Ordering works with blank fieldsets. ... ok 434s test_repr (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_repr) ... ok 434s test_repr_do_not_trigger_validation (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_repr_do_not_trigger_validation) ... ok 434s test_second_form_partially_filled (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_second_form_partially_filled) 434s If at least one field is filled out on a blank form, it will be ... ok 434s test_second_form_partially_filled_2 (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_second_form_partially_filled_2) 434s A partially completed form is invalid. ... ok 434s test_single_form_completed (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_single_form_completed) 434s Just one form may be completed. ... ok 434s test_template_name_can_be_overridden (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_template_name_can_be_overridden) ... ok 434s test_template_name_uses_renderer_value (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_template_name_uses_renderer_value) ... ok 434s test_validate_max_ignores_forms_marked_for_deletion (forms_tests.tests.test_formsets.Jinja2FormsFormsetTestCase.test_validate_max_ignores_forms_marked_for_deletion) ... ok 434s test_empty_formset_is_multipart (forms_tests.tests.test_formsets.TestEmptyFormSet.test_empty_formset_is_multipart) 434s is_multipart() works with an empty formset. ... ok 434s test_empty_formset_is_valid (forms_tests.tests.test_formsets.TestEmptyFormSet.test_empty_formset_is_valid) 434s An empty formset still calls clean() ... ok 434s test_empty_formset_media (forms_tests.tests.test_formsets.TestEmptyFormSet.test_empty_formset_media) 434s Media is available on empty formset. ... ok 434s test_customize_management_form_error (forms_tests.tests.test_formsets.TestIsBoundBehavior.test_customize_management_form_error) ... ok 434s test_empty_forms_are_unbound (forms_tests.tests.test_formsets.TestIsBoundBehavior.test_empty_forms_are_unbound) ... ok 434s test_form_errors_are_caught_by_formset (forms_tests.tests.test_formsets.TestIsBoundBehavior.test_form_errors_are_caught_by_formset) ... ok 434s test_management_form_invalid_data (forms_tests.tests.test_formsets.TestIsBoundBehavior.test_management_form_invalid_data) ... ok 434s test_no_data_error (forms_tests.tests.test_formsets.TestIsBoundBehavior.test_no_data_error) ... ok 434s test_with_management_data_attrs_work_fine (forms_tests.tests.test_formsets.TestIsBoundBehavior.test_with_management_data_attrs_work_fine) ... ok 434s test_lazy_labels (forms_tests.tests.test_i18n.FormsI18nTests.test_lazy_labels) ... ok 434s test_non_ascii_choices (forms_tests.tests.test_i18n.FormsI18nTests.test_non_ascii_choices) ... ok 434s test_non_ascii_label (forms_tests.tests.test_i18n.FormsI18nTests.test_non_ascii_label) ... ok 434s test_select_translated_text (forms_tests.tests.test_i18n.FormsI18nTests.test_select_translated_text) ... ok 434s test_lazy_labels (forms_tests.tests.test_i18n.Jinja2FormsI18nTests.test_lazy_labels) ... ok 434s test_non_ascii_choices (forms_tests.tests.test_i18n.Jinja2FormsI18nTests.test_non_ascii_choices) ... ok 434s test_non_ascii_label (forms_tests.tests.test_i18n.Jinja2FormsI18nTests.test_non_ascii_label) ... ok 434s test_select_translated_text (forms_tests.tests.test_i18n.Jinja2FormsI18nTests.test_select_translated_text) ... ok 434s test_dateField (forms_tests.tests.test_input_formats.LocalizedDateTests.test_dateField) 434s DateFields can parse dates in the default format ... ok 434s test_dateField_with_inputformat (forms_tests.tests.test_input_formats.LocalizedDateTests.test_dateField_with_inputformat) 434s DateFields with manually specified input formats can accept those formats ... ok 434s test_localized_dateField (forms_tests.tests.test_input_formats.LocalizedDateTests.test_localized_dateField) 434s Localized DateFields act as unlocalized widgets ... ok 434s test_localized_dateField_with_inputformat (forms_tests.tests.test_input_formats.LocalizedDateTests.test_localized_dateField_with_inputformat) 434s Localized DateFields with manually specified input formats can accept ... ok 434s test_dateTimeField (forms_tests.tests.test_input_formats.LocalizedDateTimeTests.test_dateTimeField) 434s DateTimeFields can parse dates in the default format ... ok 434s test_dateTimeField_with_inputformat (forms_tests.tests.test_input_formats.LocalizedDateTimeTests.test_dateTimeField_with_inputformat) 434s DateTimeFields with manually specified input formats can accept those formats ... ok 434s test_localized_dateTimeField (forms_tests.tests.test_input_formats.LocalizedDateTimeTests.test_localized_dateTimeField) 434s Localized DateTimeFields act as unlocalized widgets ... ok 434s test_localized_dateTimeField_with_inputformat (forms_tests.tests.test_input_formats.LocalizedDateTimeTests.test_localized_dateTimeField_with_inputformat) 434s Localized DateTimeFields with manually specified input formats can ... ok 434s test_localized_timeField (forms_tests.tests.test_input_formats.LocalizedTimeTests.test_localized_timeField) 434s Localized TimeFields act as unlocalized widgets ... ok 434s test_localized_timeField_with_inputformat (forms_tests.tests.test_input_formats.LocalizedTimeTests.test_localized_timeField_with_inputformat) 434s Localized TimeFields with manually specified input formats can accept ... ok 434s test_timeField (forms_tests.tests.test_input_formats.LocalizedTimeTests.test_timeField) 434s TimeFields can parse dates in the default format ... ok 434s test_timeField_with_inputformat (forms_tests.tests.test_input_formats.LocalizedTimeTests.test_timeField_with_inputformat) 434s TimeFields with manually specified input formats can accept those formats ... ok 434s test_dateField (forms_tests.tests.test_input_formats.SimpleDateFormatTests.test_dateField) 434s DateFields can parse dates in the default format ... ok 434s test_dateField_with_inputformat (forms_tests.tests.test_input_formats.SimpleDateFormatTests.test_dateField_with_inputformat) 434s DateFields with manually specified input formats can accept those formats ... ok 434s test_localized_dateField (forms_tests.tests.test_input_formats.SimpleDateFormatTests.test_localized_dateField) 434s Localized DateFields in a non-localized environment act as unlocalized widgets ... ok 434s test_localized_dateField_with_inputformat (forms_tests.tests.test_input_formats.SimpleDateFormatTests.test_localized_dateField_with_inputformat) 434s Localized DateFields with manually specified input formats can accept ... ok 434s test_dateTimeField (forms_tests.tests.test_input_formats.SimpleDateTimeFormatTests.test_dateTimeField) 434s DateTimeFields can parse dates in the default format ... ok 434s test_dateTimeField_with_inputformat (forms_tests.tests.test_input_formats.SimpleDateTimeFormatTests.test_dateTimeField_with_inputformat) 434s DateTimeFields with manually specified input formats can accept those formats ... ok 434s test_localized_dateTimeField (forms_tests.tests.test_input_formats.SimpleDateTimeFormatTests.test_localized_dateTimeField) 434s Localized DateTimeFields in a non-localized environment act as ... ok 434s test_localized_dateTimeField_with_inputformat (forms_tests.tests.test_input_formats.SimpleDateTimeFormatTests.test_localized_dateTimeField_with_inputformat) 434s Localized DateTimeFields with manually specified input formats can ... ok 434s test_localized_timeField (forms_tests.tests.test_input_formats.SimpleTimeFormatTests.test_localized_timeField) 434s Localized TimeFields in a non-localized environment act as unlocalized widgets ... ok 434s test_localized_timeField_with_inputformat (forms_tests.tests.test_input_formats.SimpleTimeFormatTests.test_localized_timeField_with_inputformat) 434s Localized TimeFields with manually specified input formats can accept ... ok 434s test_timeField (forms_tests.tests.test_input_formats.SimpleTimeFormatTests.test_timeField) 434s TimeFields can parse dates in the default format ... ok 434s test_timeField_with_inputformat (forms_tests.tests.test_input_formats.SimpleTimeFormatTests.test_timeField_with_inputformat) 434s TimeFields with manually specified input formats can accept those formats ... ok 434s test_combine_media (forms_tests.tests.test_media.FormsMediaObjectTestCase.test_combine_media) ... ok 434s test_construction (forms_tests.tests.test_media.FormsMediaObjectTestCase.test_construction) ... ok 434s test_media_deduplication (forms_tests.tests.test_media.FormsMediaObjectTestCase.test_media_deduplication) ... ok 434s test_simplest_class (forms_tests.tests.test_media.FormsMediaObjectTestCase.test_simplest_class) ... ok 434s test_add_css_deduplication (forms_tests.tests.test_media.FormsMediaTestCase.test_add_css_deduplication) ... ok 434s test_add_empty (forms_tests.tests.test_media.FormsMediaTestCase.test_add_empty) ... ok 434s test_add_js_deduplication (forms_tests.tests.test_media.FormsMediaTestCase.test_add_js_deduplication) ... ok 434s test_combine_media (forms_tests.tests.test_media.FormsMediaTestCase.test_combine_media) ... ok 434s test_construction (forms_tests.tests.test_media.FormsMediaTestCase.test_construction) ... ok 434s test_form_media (forms_tests.tests.test_media.FormsMediaTestCase.test_form_media) ... ok 434s test_html_safe (forms_tests.tests.test_media.FormsMediaTestCase.test_html_safe) ... ok 434s test_media_deduplication (forms_tests.tests.test_media.FormsMediaTestCase.test_media_deduplication) ... ok 434s test_media_dsl (forms_tests.tests.test_media.FormsMediaTestCase.test_media_dsl) ... ok 434s test_media_inheritance (forms_tests.tests.test_media.FormsMediaTestCase.test_media_inheritance) ... ok 434s test_media_inheritance_extends (forms_tests.tests.test_media.FormsMediaTestCase.test_media_inheritance_extends) ... ok 434s test_media_inheritance_from_property (forms_tests.tests.test_media.FormsMediaTestCase.test_media_inheritance_from_property) ... ok 434s test_media_inheritance_single_type (forms_tests.tests.test_media.FormsMediaTestCase.test_media_inheritance_single_type) ... ok 434s test_media_property (forms_tests.tests.test_media.FormsMediaTestCase.test_media_property) ... ok 434s test_media_property_parent_references (forms_tests.tests.test_media.FormsMediaTestCase.test_media_property_parent_references) ... ok 434s test_merge (forms_tests.tests.test_media.FormsMediaTestCase.test_merge) ... ok 434s test_merge_css_three_way (forms_tests.tests.test_media.FormsMediaTestCase.test_merge_css_three_way) ... ok 434s test_merge_js_three_way (forms_tests.tests.test_media.FormsMediaTestCase.test_merge_js_three_way) 434s The relative order of scripts is preserved in a three-way merge. ... ok 434s test_merge_js_three_way2 (forms_tests.tests.test_media.FormsMediaTestCase.test_merge_js_three_way2) ... ok 434s test_merge_warning (forms_tests.tests.test_media.FormsMediaTestCase.test_merge_warning) ... ok 434s test_multi_media (forms_tests.tests.test_media.FormsMediaTestCase.test_multi_media) ... ok 434s test_multi_widget (forms_tests.tests.test_media.FormsMediaTestCase.test_multi_widget) ... ok 434s test_get_renderer (forms_tests.tests.test_renderers.BaseTemplateRendererTests.test_get_renderer) ... ok 434s test_installed_apps_template_found (forms_tests.tests.test_renderers.DjangoTemplatesTests.test_installed_apps_template_found) 434s Can find a custom template in INSTALLED_APPS. ... ok 434s test_installed_apps_template_found (forms_tests.tests.test_renderers.Jinja2Tests.test_installed_apps_template_found) 434s Can find a custom template in INSTALLED_APPS. ... ok 434s test_error_dict_copy (forms_tests.tests.test_utils.FormsUtilsTestCase.test_error_dict_copy) ... ok 434s test_error_dict_html_safe (forms_tests.tests.test_utils.FormsUtilsTestCase.test_error_dict_html_safe) ... ok 434s test_error_dict_is_dict (forms_tests.tests.test_utils.FormsUtilsTestCase.test_error_dict_is_dict) ... ok 434s test_error_dict_is_json_serializable (forms_tests.tests.test_utils.FormsUtilsTestCase.test_error_dict_is_json_serializable) ... ok 434s test_error_list_html_safe (forms_tests.tests.test_utils.FormsUtilsTestCase.test_error_list_html_safe) ... ok 434s test_flatatt (forms_tests.tests.test_utils.FormsUtilsTestCase.test_flatatt) ... ok 434s test_flatatt_no_side_effects (forms_tests.tests.test_utils.FormsUtilsTestCase.test_flatatt_no_side_effects) 434s flatatt() does not modify the dict passed in. ... ok 434s test_validation_error (forms_tests.tests.test_utils.FormsUtilsTestCase.test_validation_error) ... ok 434s test_installed_apps_template_found (forms_tests.tests.test_renderers.TemplatesSettingTests.test_installed_apps_template_found) 434s Can find a custom template in INSTALLED_APPS. ... ok 434s test_textarea_trailing_newlines (forms_tests.tests.test_widgets.LiveWidgetTests.test_textarea_trailing_newlines) 434s A roundtrip on a ModelForm doesn't alter the TextField value ... skipped 'No browsers specified.' 434s test_fieldset (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_fieldset) ... ok 434s test_get_context_does_not_mutate_attrs (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_get_context_does_not_mutate_attrs) ... ok 434s test_render_check_exception (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_check_exception) 434s Calling check_test() shouldn't swallow exceptions (#17888). ... ok 434s test_render_check_test (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_check_test) 434s You can pass 'check_test' to the constructor. This is a callable that ... ok 434s test_render_empty (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_empty) ... ok 434s test_render_false (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_false) ... ok 434s test_render_int (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_int) 434s Integers are handled by value, not as booleans (#17114). ... ok 434s test_render_none (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_none) ... ok 434s test_render_true (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_true) ... ok 434s test_render_value (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_render_value) 434s Using any value that's not in ('', None, False, True) will check the ... ok 434s test_value_from_datadict (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_value_from_datadict) 434s The CheckboxInput widget will return False if the key is not found in ... ok 434s test_value_from_datadict_string_int (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_value_from_datadict_string_int) ... ok 434s test_value_omitted_from_data (forms_tests.widget_tests.test_checkboxinput.CheckboxInputTest.test_value_omitted_from_data) ... ok 434s test_invalid_loading_order (forms_tests.tests.tests.RelatedModelFormTests.test_invalid_loading_order) 434s Test for issue 10405 ... ok 434s test_valid_loading_order (forms_tests.tests.tests.RelatedModelFormTests.test_valid_loading_order) 434s Test for issue 10405 ... ok 434s test_doesnt_localize_input_value (forms_tests.widget_tests.test_checkboxselectmultiple.CheckboxSelectMultipleTest.test_doesnt_localize_input_value) ... ok 434s test_fieldset (forms_tests.widget_tests.test_checkboxselectmultiple.CheckboxSelectMultipleTest.test_fieldset) ... ok 434s test_label (forms_tests.widget_tests.test_checkboxselectmultiple.CheckboxSelectMultipleTest.test_label) 434s CheckboxSelectMultiple doesn't contain 'for="field_0"' in the