Your message dated Wed, 07 Dec 2022 20:40:25 +0000 with message-id <e1p31dn-002czm...@fasolo.debian.org> and subject line Bug#1025118: fixed in python-pytest-subtests 0.9.0-1 has caused the Debian Bug report #1025118, regarding python-pytest-subtests: (autopkgtest) needs update for python3.11: AssertionError 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 ow...@bugs.debian.org immediately.) -- 1025118: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1025118 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
--- Begin Message ---Source: python-pytest-subtests Version: 0.8.0-2 Severity: serious Tags: sid bookworm User: debian...@lists.debian.org Usertags: needs-update User: debian-pyt...@lists.debian.org Usertags: python3.11 Control: affects -1 src:python3-defaults Dear maintainer(s),We are in the transition of adding python3.11 as a supported Python version [0]. With a recent upload of python3-defaults the autopkgtest of python-pytest-subtests fails in testing when that autopkgtest is run with the binary packages of python3-defaults from unstable. It passes when run with only packages from testing. In tabular form:pass fail python3-defaults from testing 3.10.6-3 python-pytest-subtests from testing 0.8.0-2 all others from testing from testing I copied some of the output at the bottom of this report.Currently this regression is blocking the migration of python3-defaults to testing [1]. https://docs.python.org/3/whatsnew/3.11.html lists what's new in Python3.11, it may help to identify what needs to be updated.More information about this bug and the reason for filing it can be found on https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation Paul [0] https://bugs.debian.org/1021984 [1] https://qa.debian.org/excuses.php?package=python3-defaults https://ci.debian.net/data/autopkgtest/testing/amd64/p/python-pytest-subtests/28750729/log.gz=================================== FAILURES =================================== ______________ TestSubTest.test_simple_terminal_normal[unittest] _______________self = <test_subtests.TestSubTest object at 0x7f70940cc650>simple_script = local('/tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2/test_simple_terminal_normal.py') testdir = <Testdir local('/tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2')>runner = 'unittest'@pytest.mark.parametrize("runner", ["unittest", "pytest-normal", "pytest-xdist"])def test_simple_terminal_normal(self, simple_script, testdir, runner): if runner == "unittest": result = testdir.run(sys.executable, simple_script)result.stderr.fnmatch_lines([ "FAIL: test_foo (__main__.T) [custom] (i=1)", "AssertionError: 1 != 0", "FAIL: test_foo (__main__.T) [custom] (i=3)", "AssertionError: 1 != 0", "Ran 1 test in *", "FAILED (failures=2)", ] ) E Failed: nomatch: 'FAIL: test_foo (__main__.T) [custom] (i=1)' E and: 'FF'E and: '======================================================================'E and: 'FAIL: test_foo (__main__.T.test_foo) [custom] (i=1)'E and: '----------------------------------------------------------------------'E and: 'Traceback (most recent call last):'E and: ' File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2/test_simple_terminal_normal.py", line 8, in test_foo'E and: ' self.assertEqual(i % 2, 0)' E and: 'AssertionError: 1 != 0' E and: ''E and: '======================================================================'E and: 'FAIL: test_foo (__main__.T.test_foo) [custom] (i=3)'E and: '----------------------------------------------------------------------'E and: 'Traceback (most recent call last):'E and: ' File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2/test_simple_terminal_normal.py", line 8, in test_foo'E and: ' self.assertEqual(i % 2, 0)' E and: 'AssertionError: 1 != 0' E and: ''E and: '----------------------------------------------------------------------'E and: 'Ran 1 test in 0.001s' E and: '' E and: 'FAILED (failures=2)' E remains unmatched: 'FAIL: test_foo (__main__.T) [custom] (i=1)'/tmp/autopkgtest-lxc.agke3g8v/downtmp/autopkgtest_tmp/tests/test_subtests.py:142: Failed ----------------------------- Captured stdout call ----------------------------- running: /usr/bin/python3.11 /tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2/test_simple_terminal_normal.pyin: /tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2----------------------------- Captured stderr call -----------------------------FF ====================================================================== FAIL: test_foo (__main__.T.test_foo) [custom] (i=1) ---------------------------------------------------------------------- Traceback (most recent call last):File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2/test_simple_terminal_normal.py", line 8, in test_fooself.assertEqual(i % 2, 0) AssertionError: 1 != 0 ====================================================================== FAIL: test_foo (__main__.T.test_foo) [custom] (i=3) ---------------------------------------------------------------------- Traceback (most recent call last):File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_normal2/test_simple_terminal_normal.py", line 8, in test_fooself.assertEqual(i % 2, 0) AssertionError: 1 != 0 ---------------------------------------------------------------------- Ran 1 test in 0.001s FAILED (failures=2)______________ TestSubTest.test_simple_terminal_verbose[unittest] ______________self = <test_subtests.TestSubTest object at 0x7f7094100450>simple_script = local('/tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2/test_simple_terminal_verbose.py') testdir = <Testdir local('/tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2')>runner = 'unittest'@pytest.mark.parametrize("runner", ["unittest", "pytest-normal", "pytest-xdist"])def test_simple_terminal_verbose(self, simple_script, testdir, runner): if runner == "unittest": result = testdir.run(sys.executable, simple_script, "-v")result.stderr.fnmatch_lines([ "test_foo (__main__.T) ... ", "FAIL: test_foo (__main__.T) [custom] (i=1)", "AssertionError: 1 != 0", "FAIL: test_foo (__main__.T) [custom] (i=3)", "AssertionError: 1 != 0", "Ran 1 test in *", "FAILED (failures=2)", ] ) E Failed: nomatch: 'test_foo (__main__.T) ... ' E and: 'test_foo (__main__.T.test_foo) ... 'E and: ' test_foo (__main__.T.test_foo) [custom] (i=1) ... FAIL' E and: ' test_foo (__main__.T.test_foo) [custom] (i=3) ... FAIL'E and: ''E and: '======================================================================'E and: 'FAIL: test_foo (__main__.T.test_foo) [custom] (i=1)'E and: '----------------------------------------------------------------------'E and: 'Traceback (most recent call last):'E and: ' File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2/test_simple_terminal_verbose.py", line 8, in test_foo'E and: ' self.assertEqual(i % 2, 0)' E and: 'AssertionError: 1 != 0' E and: ''E and: '======================================================================'E and: 'FAIL: test_foo (__main__.T.test_foo) [custom] (i=3)'E and: '----------------------------------------------------------------------'E and: 'Traceback (most recent call last):'E and: ' File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2/test_simple_terminal_verbose.py", line 8, in test_foo'E and: ' self.assertEqual(i % 2, 0)' E and: 'AssertionError: 1 != 0' E and: ''E and: '----------------------------------------------------------------------'E and: 'Ran 1 test in 0.001s' E and: '' E and: 'FAILED (failures=2)' E remains unmatched: 'test_foo (__main__.T) ... '/tmp/autopkgtest-lxc.agke3g8v/downtmp/autopkgtest_tmp/tests/test_subtests.py:176: Failed ----------------------------- Captured stdout call ----------------------------- running: /usr/bin/python3.11 /tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2/test_simple_terminal_verbose.py -vin: /tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2----------------------------- Captured stderr call ----------------------------- test_foo (__main__.T.test_foo) ... test_foo (__main__.T.test_foo) [custom] (i=1) ... FAILtest_foo (__main__.T.test_foo) [custom] (i=3) ... FAIL ====================================================================== FAIL: test_foo (__main__.T.test_foo) [custom] (i=1) ---------------------------------------------------------------------- Traceback (most recent call last):File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2/test_simple_terminal_verbose.py", line 8, in test_fooself.assertEqual(i % 2, 0) AssertionError: 1 != 0 ====================================================================== FAIL: test_foo (__main__.T.test_foo) [custom] (i=3) ---------------------------------------------------------------------- Traceback (most recent call last):File "/tmp/pytest-of-debci/pytest-0/test_simple_terminal_verbose2/test_simple_terminal_verbose.py", line 8, in test_fooself.assertEqual(i % 2, 0) AssertionError: 1 != 0 ---------------------------------------------------------------------- Ran 1 test in 0.001s FAILED (failures=2)=========================== short test summary info ============================ FAILED tests/test_subtests.py::TestSubTest::test_simple_terminal_normal[unittest] FAILED tests/test_subtests.py::TestSubTest::test_simple_terminal_verbose[unittest] =================== 2 failed, 19 passed, 5 xfailed in 2.44s ====================autopkgtest [00:14:54]: test upstreamOpenPGP_signature
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---Source: python-pytest-subtests Source-Version: 0.9.0-1 Done: Scott Talbert <s...@techie.net> We believe that the bug you reported is fixed in the latest version of python-pytest-subtests, 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 1025...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Scott Talbert <s...@techie.net> (supplier of updated python-pytest-subtests 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 ftpmas...@ftp-master.debian.org) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Wed, 07 Dec 2022 15:06:28 -0500 Source: python-pytest-subtests Architecture: source Version: 0.9.0-1 Distribution: unstable Urgency: medium Maintainer: Debian Python Team <team+pyt...@tracker.debian.org> Changed-By: Scott Talbert <s...@techie.net> Closes: 1025118 Changes: python-pytest-subtests (0.9.0-1) unstable; urgency=medium . * Team upload. * Update to new upstream release 0.9.0 (Closes: #1025118) Checksums-Sha1: c0feee014a99264dccf5c797058b0438569dec35 2290 python-pytest-subtests_0.9.0-1.dsc cc7f97d38d867b9b759109f47f72b2c9a30dbdb1 9840 python-pytest-subtests_0.9.0.orig.tar.gz f5d6b383b04eeada276ea384ab4104499114481a 2944 python-pytest-subtests_0.9.0-1.debian.tar.xz b36b551cd5b43ee9dc84f8e7b96dca983469f33c 7395 python-pytest-subtests_0.9.0-1_amd64.buildinfo Checksums-Sha256: c5772ea4de4a72046415395f53d45ba4b98b7150cc3e7fb8042624af70f727fc 2290 python-pytest-subtests_0.9.0-1.dsc 64d3c7560aaea976b7304c019b205fa091a02f1055c03ef511e39dbccc07c629 9840 python-pytest-subtests_0.9.0.orig.tar.gz ea735df44de070f1cf44aa2671f2e63389d73954e46488487eb3e6afa2d4e280 2944 python-pytest-subtests_0.9.0-1.debian.tar.xz 6119fbdb016f57a9c5df6dfea224eb41e6bbab86db9c38cefe4b5d245ff8388a 7395 python-pytest-subtests_0.9.0-1_amd64.buildinfo Files: 35703990f3ebef8ac1f7c1d39fccc16d 2290 python optional python-pytest-subtests_0.9.0-1.dsc 73ea0842389a2bf787698d6c92b82b4a 9840 python optional python-pytest-subtests_0.9.0.orig.tar.gz 346c5ffa52c8ef274dbb4da7d298113f 2944 python optional python-pytest-subtests_0.9.0-1.debian.tar.xz fd084bd0c71ae25a67c953ed88b9e3f4 7395 python optional python-pytest-subtests_0.9.0-1_amd64.buildinfo -----BEGIN PGP SIGNATURE----- iQJDBAEBCgAtFiEEbnQ09Yl9Q7F/zVe3U9W8ZLUjeKIFAmOQ8rMPHHN3dEB0ZWNo aWUubmV0AAoJEFPVvGS1I3iiRosP/0CMeP7MIJYXiyUxHCQo/gjDv67qU5g99zvY Rue7XWP2iAHHzXtyXiZHY1JUifxjfn6BIyTpHV3vEE/7KnhF2g795NXD6o5v9JMQ DN8VJIVZLX+cwC+BcZq2F1V+eIo6xcuXGxnNkrbnvIGiB9kCDEIhF14X/AleVAFj DeXE+x0n8aVBdVsvNRfiO2PFlDcJYW6rL9xuA6I3ZA6/GYp01T2VRTLZXvJh4YoZ fJ8lE8rCBB2Gk8aDla/ZaedeGG7efS6SC0U1WiFEMD/i4zu9ONpOxPpKIINymVg5 i25TYgvMtXAEf3+52PLUNiRkHkF0oDQe9c/3X/ieyNK9V8rm75FkboA2Z/y6RBmK 9suDrdd61NFivvbJeYACdRoJBXAw2bmJlpj6wXLMIaPMJ3oNAe1uUbzcUa4PqEbM Z70Ws4Zj+KaaFSPSVN1Gl0i1lc/snJAQiqgtsxgSFnUXS1z7P69lbspad6OtJyTG gg/NUuLP3BXv0xAftfL0yPe/XGiOfEAjzeVea7j/Tfrr51U7nysNKkVc3JG31nB4 NqXjSJ1nIIlnyFiBZff6tdRwOz6NMJrUKNpp79XygQZC3aNHAeVVm7Bns7D41TxK eS2v3U6lx8H7HS0nA519JJhrPJu8TG/I3Mw3PRkPeiVTHyVGed2HkP+MBMyreueF 3HazQq4W =ldYx -----END PGP SIGNATURE-----
--- End Message ---