Your message dated Tue, 12 Dec 2023 20:55:06 +0000
with message-id <[email protected]>
and subject line Bug#1056507: fixed in python-testfixtures 7.2.2-2
has caused the Debian Bug report #1056507,
regarding python-testfixtures autopkg tests fail with Python 3.12
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1056507: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1056507
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-testfixtures
Version: 7.2.2-1
Severity: important
Tags: sid trixie
User: [email protected]
Usertags: python3.12
python-testfixtures autopkg tests fail with Python 3.12:
[...]
233s =================================== FAILURES
===================================
233s ______________ TempDirectoryTests.test_as_path_relative_sequence
_______________
233s
233s self = <testfixtures.tests.test_tempdirectory.TempDirectoryTests
testMethod=test_as_path_relative_sequence>
233s
233s def test_as_path_relative_sequence(self):
233s with TempDirectory(encoding='ascii') as d:
233s > compare(d.as_path(('foo', 'bar')),
expected=Path(d.path) / 'foo' / 'bar', strict=True)
233s E AssertionError: PosixPath not as expected:
233s E
233s E attributes differ:
233s E '_raw_paths': ['/tmp/tmpmv5f4rio', 'foo', 'bar']
(expected) != ['/tmp/tmpmv5f4rio/foo/bar'] (actual)
233s E
233s E While comparing ._raw_paths: sequence not as expected:
233s E
233s E same:
233s E []
233s E
233s E expected:
233s E ['/tmp/tmpmv5f4rio', 'foo', 'bar']
233s E
233s E actual:
233s E ['/tmp/tmpmv5f4rio/foo/bar']
233s E
233s E While comparing ._raw_paths[0]:
233s E '/tmp/tmpmv5f4rio' (expected)
233s E !=
233s E '/tmp/tmpmv5f4rio/foo/bar' (actual)
233s
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_tempdirectory.py:313:
AssertionError
233s _______________ TempDirectoryTests.test_as_path_relative_string
________________
233s
233s self = <testfixtures.tests.test_tempdirectory.TempDirectoryTests
testMethod=test_as_path_relative_string>
233s
233s def test_as_path_relative_string(self):
233s with TempDirectory(encoding='ascii') as d:
233s > compare(d.as_path('foo/bar'), expected=Path(d.path) /
'foo' / 'bar', strict=True)
233s E AssertionError: PosixPath not as expected:
233s E
233s E attributes differ:
233s E '_raw_paths': ['/tmp/tmpzu22wvdh', 'foo', 'bar']
(expected) != ['/tmp/tmpzu22wvdh/foo/bar'] (actual)
233s E
233s E While comparing ._raw_paths: sequence not as expected:
233s E
233s E same:
233s E []
233s E
233s E expected:
233s E ['/tmp/tmpzu22wvdh', 'foo', 'bar']
233s E
233s E actual:
233s E ['/tmp/tmpzu22wvdh/foo/bar']
233s E
233s E While comparing ._raw_paths[0]:
233s E '/tmp/tmpzu22wvdh' (expected)
233s E !=
233s E '/tmp/tmpzu22wvdh/foo/bar' (actual)
233s
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_tempdirectory.py:309:
AssertionError
233s =============================== warnings summary
===============================
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:710
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:710:
SyntaxWarning: invalid escape sequence '\('
233s "\(1, 2, 3\) \(<(class|type) 'tuple'>\) \(expected\) != "
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:712
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:712:
SyntaxWarning: invalid escape sequence '\('
233s "\(<(class|type) 'generator'>\) \(actual\)"
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:748
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:748:
SyntaxWarning: invalid escape sequence '\('
233s "range\(1, 4\) \(<(class|type) 'x?range'>\) != "
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:750
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_compare.py:750:
SyntaxWarning: invalid escape sequence '\('
233s "\(<(class|type) 'generator'>\)"
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:10
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:10:
SyntaxWarning: invalid escape sequence '\d'
233s self.assertTrue('on 40220' == S('on \d+'))
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:13
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:13:
SyntaxWarning: invalid escape sequence '\d'
233s self.assertFalse('on xxx' == S('on \d+'))
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:16
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:16:
SyntaxWarning: invalid escape sequence '\d'
233s self.assertFalse('on 40220' != S('on \d+'))
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:19
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:19:
SyntaxWarning: invalid escape sequence '\d'
233s self.assertTrue('on xxx' != S('on \d+'))
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:25
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:25:
SyntaxWarning: invalid escape sequence '\d'
233s 1, 2, S('on \d+')
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:29
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:29:
SyntaxWarning: invalid escape sequence '\d'
233s self.assertFalse(40220 == S('on \d+'))
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:33
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:33:
SyntaxWarning: invalid escape sequence '\d'
233s repr(S('on \d+')))
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:37
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_stringcomparison.py:37:
SyntaxWarning: invalid escape sequence '\d'
233s str(S('on \d+')))
233s
233s
../../../usr/lib/python3/dist-packages/testfixtures/tests/test_twisted.py:90
233s
/usr/lib/python3/dist-packages/testfixtures/tests/test_twisted.py:90:
SyntaxWarning: invalid escape sequence '\d'
233s (INFO, S('Sent FOO, length \d+')),
233s
233s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
233s =========================== short test summary info
============================
233s FAILED
tests/test_tempdirectory.py::TempDirectoryTests::test_as_path_relative_sequence
233s FAILED
tests/test_tempdirectory.py::TempDirectoryTests::test_as_path_relative_string
233s ================== 2 failed, 901 passed, 13 warnings in 2.38s
==================
--- End Message ---
--- Begin Message ---
Source: python-testfixtures
Source-Version: 7.2.2-2
Done: Andrey Rakhmatullin <[email protected]>
We believe that the bug you reported is fixed in the latest version of
python-testfixtures, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Andrey Rakhmatullin <[email protected]> (supplier of updated python-testfixtures
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Tue, 12 Dec 2023 23:39:16 +0400
Source: python-testfixtures
Architecture: source
Version: 7.2.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Andrey Rakhmatullin <[email protected]>
Closes: 1056507 1058356
Changes:
python-testfixtures (7.2.2-2) unstable; urgency=medium
.
* Team upload.
* Fix tests on Python 3.12 (Closes: #1056507, 1058356).
Checksums-Sha1:
16576ab3b69adab2e1b576103047b52611ab80e5 2833 python-testfixtures_7.2.2-2.dsc
983461011e959e762f4616c4f0b3fb59847c5f69 8432
python-testfixtures_7.2.2-2.debian.tar.xz
a0710b0bf515e4507c9e55b798c6ac2aa2cf5ede 9300
python-testfixtures_7.2.2-2_amd64.buildinfo
Checksums-Sha256:
f4838958750fc427f7f1a8e395624f3cb796eb3f75844f019331edb1776b7871 2833
python-testfixtures_7.2.2-2.dsc
9fc95e936e5f746addee88ebba8cb7e94306369c1f11597333b25bd75736b1bc 8432
python-testfixtures_7.2.2-2.debian.tar.xz
6ee3333b4fa4d5ec56a9e553dafebc1627c6f76c2c3ccea70d8984b3c3d9fa02 9300
python-testfixtures_7.2.2-2_amd64.buildinfo
Files:
1d6049d70667dcb0afd24c2ff9aad663 2833 python optional
python-testfixtures_7.2.2-2.dsc
b11375c1b43f18c963f584aa20733644 8432 python optional
python-testfixtures_7.2.2-2.debian.tar.xz
2708c2c932806b5dd6569e7307a5b360 9300 python optional
python-testfixtures_7.2.2-2_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEtf6ieDcfC1EgtGkao+OWn23e7IYFAmV4t/YACgkQo+OWn23e
7IaAmQ//bwCuv0I9vbaiUfll0YvE2ZTiJH9axjQzmiW/Yl5uPQeIqh+dheMAR3DP
hByD0aSHV7vwlG4SXgA5JMxZMUwjz3bjM9jU3nTj4U80E/YkW5vhrfzpHy2X4PWe
vnn8rGsrdPv4kZ2i+dqVVRGV7p/2/azYbzp5GKfRTw09yQTImMPDk0UjyXGdXs6W
iavPIy/wsdcDKZqCfqQANoZpOIbqymRpeQOme1eRvWflOesnrSAIcHb0vXKUVjqD
S71zeR1V/KZN/BT4h/c3xazptz2nVjiPOszp/O0KlqTO6TDS/Fq8BJi4IiOUTO6A
txb2JWL1jERskP5NZOf1ygmNjei05MSGp6iPimlm5oMScEsImGmN2gbYrxUv8ro9
B7+TRLtMJV4qpW+Q70T5U4VbDxgoVvqt7LMRMG3KzLd4Wq0NMuhP+hu3Jb/kxtiv
9XNcRcRs7rFBTFvHubskOf1T72GrLEqbxQEAGjTVVXYdQnK+Rb2fjQXXOYfGg6B1
YcfJoWNwVON4B19FUjonB3Yrd03dXrdjtcDw9Qk4cAp9goJfoCOrZTfNGsHfEaX+
p19BXv35WVpWvnqjnqzoMC7hd9QkrTmzDu6D3FjQb3epzZbHZSGWSIyAQ+DteKwy
W1nb7pAD4tq0cPzbIN/tNa1zJi5dQk8DYUxZrq0r3rssIJaZ3q4=
=NOHZ
-----END PGP SIGNATURE-----
--- End Message ---