Your message dated Mon, 28 Nov 2022 14:55:28 +0000
with message-id <e1ozfxc-003pul...@fasolo.debian.org>
and subject line Bug#1024909: fixed in django-rich 1.4.0-4
has caused the Debian Bug report #1024909,
regarding django-rich: (autopkgtest) needs update for python3.11: 
AssertionError: message changed
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.)


-- 
1024909: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1024909
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: django-rich
Version: 1.4.0-3
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 django-rich 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
django-rich            from testing    1.4.0-3
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/d/django-rich/28726228/log.gz

=================================== FAILURES =================================== _____________________ TestRunnerTests.test_does_not_exist ______________________

self = <tests.test_test.TestRunnerTests testMethod=test_does_not_exist>

    def test_does_not_exist(self):
        result = self.run_test("does_not_exist")
        assert result.returncode == 1
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[:6] == [
                "E",
                "─" * 80,
"ERROR: does_not_exist (unittest.loader._FailedTest.does_not_exist)",
                "─" * 80,
"ImportError: Failed to import test module: does_not_exist",
                "Traceback (most recent call last):",
            ]
E AssertionError: assert ['E', '──────... call last):'] == ['E', '──────... call last):'] E At index 2 diff: 'ERROR: does_not_exist (unittest.loader._FailedTest)' != 'ERROR: does_not_exist (unittest.loader._FailedTest.does_not_exist)'
E             Full diff:
E               [
E                'E',
E '────────────────────────────────────────────────────────────────────────────────', E - 'ERROR: does_not_exist (unittest.loader._FailedTest.does_not_exist)', E ? ---------------... E E ...Full output truncated (6 lines hidden), use '-vv' to show

tests/test_test.py:100: AssertionError
______________________ TestRunnerTests.test_error_normal _______________________

self = <tests.test_test.TestRunnerTests testMethod=test_error_normal>

    def test_error_normal(self):
        result = self.run_test(f"{__name__}.ExampleTests.test_error")
        assert result.returncode == 1
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:4] == [
                "E",
                "─" * 80,
"ERROR: test_error (tests.test_test.ExampleTests.test_error)",
            ]
E AssertionError: assert ['E', '──────...xampleTests)'] == ['E', '──────....test_error)'] E At index 2 diff: 'ERROR: test_error (tests.test_test.ExampleTests)' != 'ERROR: test_error (tests.test_test.ExampleTests.test_error)'
E             Full diff:
E               [
E                'E',
E '────────────────────────────────────────────────────────────────────────────────', E - 'ERROR: test_error (tests.test_test.ExampleTests.test_error)', E ? -----------... E E ...Full output truncated (3 lines hidden), use '-vv' to show

tests/test_test.py:171: AssertionError
_______________________ TestRunnerTests.test_error_quiet _______________________

self = <tests.test_test.TestRunnerTests testMethod=test_error_quiet>

    def test_error_quiet(self):
result = self.run_test("-v", "0", f"{__name__}.ExampleTests.test_error")
        assert result.returncode == 1
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[:2] == [
                "─" * 80,
"ERROR: test_error (tests.test_test.ExampleTests.test_error)",
            ]
E AssertionError: assert ['───────────...xampleTests)'] == ['───────────....test_error)'] E At index 1 diff: 'ERROR: test_error (tests.test_test.ExampleTests)' != 'ERROR: test_error (tests.test_test.ExampleTests.test_error)'
E             Full diff:
E               [
E '────────────────────────────────────────────────────────────────────────────────', E - 'ERROR: test_error (tests.test_test.ExampleTests.test_error)',
E             ?                                                  -----------
E             +  'ERROR: test_error (tests.test_test.ExampleTests)',...
E E ...Full output truncated (2 lines hidden), use '-vv' to show

tests/test_test.py:155: AssertionError
______________________ TestRunnerTests.test_error_verbose ______________________

self = <tests.test_test.TestRunnerTests testMethod=test_error_verbose>

    def test_error_verbose(self):
result = self.run_test("-v", "2", f"{__name__}.ExampleTests.test_error")
        assert result.returncode == 1
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:5] == [
"test_error (tests.test_test.ExampleTests.test_error) ... ERROR",
                "",
                "─" * 80,
"ERROR: test_error (tests.test_test.ExampleTests.test_error)",
            ]
E AssertionError: assert ['test_error ...xampleTests)'] == ['test_error ....test_error)'] E At index 0 diff: 'test_error (tests.test_test.ExampleTests) ... ERROR' != 'test_error (tests.test_test.ExampleTests.test_error) ... ERROR'
E             Full diff:
E               [
E - 'test_error (tests.test_test.ExampleTests.test_error) ... ERROR',
E             ?                                           -----------
E             +  'test_error (tests.test_test.ExampleTests) ... ERROR',
E                '',...
E E ...Full output truncated (6 lines hidden), use '-vv' to show

tests/test_test.py:189: AssertionError
________________ TestRunnerTests.test_expected_failure_verbose _________________

self = <tests.test_test.TestRunnerTests testMethod=test_expected_failure_verbose>

    def test_expected_failure_verbose(self):
        result = self.run_test(
            "-v", "2", f"{__name__}.ExampleTests.test_expected_failure"
        )
        assert result.returncode == 0
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:4] == [
                (
                    "test_expected_failure (tests.test_test.ExampleTests."
                    + "test_expected_failure) ... expected failure"
                ),
                "",
                "-" * 70,
            ]
E AssertionError: assert ['test_expect...------------'] == ['test_expect...------------'] E At index 0 diff: 'test_expected_failure (tests.test_test.ExampleTests) ... expected failure' != 'test_expected_failure (tests.test_test.ExampleTests.test_expected_failure) ... expected failure'
E             Full diff:
E               [
E - 'test_expected_failure (tests.test_test.ExampleTests.test_expected_failure) ' E ? ^^^^^ ^ -- E + 'test_expected_failure (tests.test_test.ExampleTests) ... expected failure', E ? ++ ^^^ ^ +... E E ...Full output truncated (5 lines hidden), use '-vv' to show

tests/test_test.py:317: AssertionError
_____________________ TestRunnerTests.test_failure_normal ______________________

self = <tests.test_test.TestRunnerTests testMethod=test_failure_normal>

    def test_failure_normal(self):
        result = self.run_test(f"{__name__}.ExampleTests.test_failure")
        assert result.returncode == 1
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:4] == [
                "F",
                "─" * 80,
"FAIL: test_failure (tests.test_test.ExampleTests.test_failure)",
            ]
E AssertionError: assert ['F', '──────...xampleTests)'] == ['F', '──────...est_failure)'] E At index 2 diff: 'FAIL: test_failure (tests.test_test.ExampleTests)' != 'FAIL: test_failure (tests.test_test.ExampleTests.test_failure)'
E             Full diff:
E               [
E                'F',
E '────────────────────────────────────────────────────────────────────────────────', E - 'FAIL: test_failure (tests.test_test.ExampleTests.test_failure)', E ? -------------... E E ...Full output truncated (3 lines hidden), use '-vv' to show

tests/test_test.py:225: AssertionError
______________________ TestRunnerTests.test_failure_quiet ______________________

self = <tests.test_test.TestRunnerTests testMethod=test_failure_quiet>

    def test_failure_quiet(self):
result = self.run_test("-v", "0", f"{__name__}.ExampleTests.test_failure")
        assert result.returncode == 1
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[:2] == [
                "─" * 80,
"FAIL: test_failure (tests.test_test.ExampleTests.test_failure)",
            ]
E AssertionError: assert ['───────────...xampleTests)'] == ['───────────...est_failure)'] E At index 1 diff: 'FAIL: test_failure (tests.test_test.ExampleTests)' != 'FAIL: test_failure (tests.test_test.ExampleTests.test_failure)'
E             Full diff:
E               [
E '────────────────────────────────────────────────────────────────────────────────', E - 'FAIL: test_failure (tests.test_test.ExampleTests.test_failure)', E ? -------------
E             +  'FAIL: test_failure (tests.test_test.ExampleTests)',...
E E ...Full output truncated (2 lines hidden), use '-vv' to show

tests/test_test.py:209: AssertionError
_____________________ TestRunnerTests.test_failure_verbose _____________________

self = <tests.test_test.TestRunnerTests testMethod=test_failure_verbose>

    def test_failure_verbose(self):
result = self.run_test("-v", "2", f"{__name__}.ExampleTests.test_failure")
        assert result.returncode == 1
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:5] == [
"test_failure (tests.test_test.ExampleTests.test_failure) ... FAIL",
                "",
                "─" * 80,
"FAIL: test_failure (tests.test_test.ExampleTests.test_failure)",
            ]
E AssertionError: assert ['test_failur...xampleTests)'] == ['test_failur...est_failure)'] E At index 0 diff: 'test_failure (tests.test_test.ExampleTests) ... FAIL' != 'test_failure (tests.test_test.ExampleTests.test_failure) ... FAIL'
E             Full diff:
E               [
E - 'test_failure (tests.test_test.ExampleTests.test_failure) ... FAIL',
E             ?                                             -------------
E             +  'test_failure (tests.test_test.ExampleTests) ... FAIL',
E                '',...
E E ...Full output truncated (6 lines hidden), use '-vv' to show

tests/test_test.py:243: AssertionError
______________________ TestRunnerTests.test_pass_verbose _______________________

self = <tests.test_test.TestRunnerTests testMethod=test_pass_verbose>

    def test_pass_verbose(self):
result = self.run_test("-v", "2", f"{__name__}.ExampleTests.test_pass")
        assert result.returncode == 0
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:4] == [
"test_pass (tests.test_test.ExampleTests.test_pass) ... ok",
                "",
                "-" * 70,
            ]
E AssertionError: assert ['test_pass (...------------'] == ['test_pass (...------------'] E At index 0 diff: 'test_pass (tests.test_test.ExampleTests) ... ok' != 'test_pass (tests.test_test.ExampleTests.test_pass) ... ok'
E             Full diff:
E               [
E - 'test_pass (tests.test_test.ExampleTests.test_pass) ... ok',
E             ?                                          ----------
E             +  'test_pass (tests.test_test.ExampleTests) ... ok',
E                '',...
E E ...Full output truncated (3 lines hidden), use '-vv' to show

tests/test_test.py:138: AssertionError
______________________ TestRunnerTests.test_skip_verbose _______________________

self = <tests.test_test.TestRunnerTests testMethod=test_skip_verbose>

    def test_skip_verbose(self):
result = self.run_test("-v", "2", f"{__name__}.ExampleTests.test_skip")
        assert result.returncode == 0
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:4] == [
                (
"test_skip (tests.test_test.ExampleTests.test_skip) ... "
                    + "skipped 'some reason'"
                ),
                "",
                "-" * 70,
            ]
E assert ["test_skip (...------------'] == ["test_skip (...------------'] E At index 0 diff: "test_skip (tests.test_test.ExampleTests) ... skipped 'some reason'" != "test_skip (tests.test_test.ExampleTests.test_skip) ... skipped 'some reason'"
E             Full diff:
E               [
E - "test_skip (tests.test_test.ExampleTests.test_skip) ... skipped 'some reason'",
E             ?                                          ----------
E + "test_skip (tests.test_test.ExampleTests) ... skipped 'some reason'",
E                '',...
E E ...Full output truncated (3 lines hidden), use '-vv' to show

tests/test_test.py:278: AssertionError
________________ TestRunnerTests.test_unexpected_success_normal ________________

self = <tests.test_test.TestRunnerTests testMethod=test_unexpected_success_normal>

    def test_unexpected_success_normal(self):
result = self.run_test(f"{__name__}.ExampleTests.test_unexpected_success")
            if django.VERSION >= (4, 1):
            assert result.returncode == 1
        else:
            assert result.returncode == 0
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:3] == [
                "u",
                "=" * 70,
            ]
E AssertionError: assert ['u', '------...------------'] == ['u', '======...============'] E At index 1 diff: '----------------------------------------------------------------------' != '======================================================================'
E             Full diff:
E - ['u', '======================================================================'] E + ['u', '----------------------------------------------------------------------']

tests/test_test.py:359: AssertionError
________________ TestRunnerTests.test_unexpected_success_quiet _________________

self = <tests.test_test.TestRunnerTests testMethod=test_unexpected_success_quiet>

    def test_unexpected_success_quiet(self):
        result = self.run_test(
            "-v", "0", f"{__name__}.ExampleTests.test_unexpected_success"
        )
            if django.VERSION >= (4, 1):
            assert result.returncode == 1
        else:
            assert result.returncode == 0
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[:1] == ["=" * 70]
E AssertionError: assert ['-----------...------------'] == ['===========...============'] E At index 0 diff: '----------------------------------------------------------------------' != '======================================================================'
E             Full diff:
E - ['======================================================================'] E + ['----------------------------------------------------------------------']

tests/test_test.py:346: AssertionError
_______________ TestRunnerTests.test_unexpected_success_verbose ________________

self = <tests.test_test.TestRunnerTests testMethod=test_unexpected_success_verbose>

    def test_unexpected_success_verbose(self):
        result = self.run_test(
            "-v", "2", f"{__name__}.ExampleTests.test_unexpected_success"
        )
        if django.VERSION >= (4, 1):
            assert result.returncode == 1
        else:
            assert result.returncode == 0
        lines = result.stderr.splitlines()
        if sys.version_info >= (3, 11):
          assert lines[1:4] == [
                (
"test_unexpected_success (tests.test_test.ExampleTests."
                    + "test_unexpected_success) ... unexpected success"
                ),
                "",
                "=" * 70,
            ]
E AssertionError: assert ['test_unexpe...------------'] == ['test_unexpe...============'] E At index 0 diff: 'test_unexpected_success (tests.test_test.ExampleTests) ... unexpected success' != 'test_unexpected_success (tests.test_test.ExampleTests.test_unexpected_success) ... unexpected success'
E             Full diff:
E               [
E + 'test_unexpected_success (tests.test_test.ExampleTests) ... unexpected '
E             -  'test_unexpected_success '
E - '(tests.test_test.ExampleTests.test_unexpected_success) ... unexpected '
E                'success',...
E E ...Full output truncated (5 lines hidden), use '-vv' to show

tests/test_test.py:379: AssertionError

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: django-rich
Source-Version: 1.4.0-4
Done: Carsten Schoenert <c.schoen...@t-online.de>

We believe that the bug you reported is fixed in the latest version of
django-rich, 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 1024...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Carsten Schoenert <c.schoen...@t-online.de> (supplier of updated django-rich 
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: Mon, 28 Nov 2022 15:03:35 +0100
Source: django-rich
Architecture: source
Version: 1.4.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Carsten Schoenert <c.schoen...@t-online.de>
Closes: 1024909
Changes:
 django-rich (1.4.0-4) unstable; urgency=medium
 .
   * [8cfb68b] Rebuild patch queue from patch-queue branch
     Added patch:
     tests-Drop-various-python-version-handling.patch
     (Closes: #1024909)
   * [a51a659] d/control: Update B-D with additional BuildSpec info
   * [a74e6e5] d/rules: Drop useless setting PYBUILD_SYSTEM=pyproject
Checksums-Sha1:
 58a0cb64e4afc7a9448ce6f27044247ed040a57a 2375 django-rich_1.4.0-4.dsc
 e1a1a684946541c2322e329f74a08bbfa402de89 5260 django-rich_1.4.0-4.debian.tar.xz
 3a8ab4989d2dd9c47abf8c5a4a23312f70816616 7412 
django-rich_1.4.0-4_amd64.buildinfo
Checksums-Sha256:
 11988fc1354778d5124b415b51161f62fd348dad8fa287688731d3c91cf2b05f 2375 
django-rich_1.4.0-4.dsc
 3b0a10ad15d7102a84ad4062862c3eca39a23e3b987f8be5b4600c73a8287f4f 5260 
django-rich_1.4.0-4.debian.tar.xz
 6036441a46dd9c1328dbc9743f96ae3faf5ee4ecd552299d5c9cc63912926f41 7412 
django-rich_1.4.0-4_amd64.buildinfo
Files:
 9d5f2cd2177c951df2707da78fbe26fa 2375 python optional django-rich_1.4.0-4.dsc
 b03bad4fce1f2e5f162aeeb741564713 5260 python optional 
django-rich_1.4.0-4.debian.tar.xz
 c106775f44805872a7a83e92888829db 7412 python optional 
django-rich_1.4.0-4_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEtw38bxNP7PwBHmKqgwFgFCUdHbAFAmOEwJwACgkQgwFgFCUd
HbC5rQ/8DT36tVEhM8UowTkFnuUSyXLG3Gwgvl1aVnFZxFPgAzRHcgCfFPFpE2gi
m3ZQXoKsde1x0eJDp/dA6bD6nx4b7gvc2AYdLxlakn4z0rEMvc3HlZpXYaV9ugfk
v/anG0ytTCQcAjdkLhpzV0McikhEKtEl9GH5lTQsiedDnc+MB7AyHTBSTRZ9zQFC
nflhKqP0F7mgd+uCA1IRRRdMPhjIgqw4VzdYBMxeL0b+lANKA9z8certA9xIZLZg
AJJ87PvR+3QiNjSkQdBbviBAO5PeZAv9vUp5IyQJxHp1TQIvyQmK/8HkCoEJdVZx
UUBbjsieLhNsdtKSa4A2mmXVPjKSV+2Vn+MeTbPA7/9tvjcD9V8YCFwP71HpVCeG
ayl8VO+OGSfY10zg47CB7zT2ytf7NBFmNRu/vtskQJ60HTlMQtyw0moCDD0/xbHx
Ea9hiQqSrR+xkxjq8AVP+OCXcgTW+gCs5FVqXemsUe8udWWjlmMCjQOgkWbD6xZo
gSmVy2mWc0PY3YSh6ornR+VuMKDdUswv4qAfVIjy/LGxyrOhDZkkXcXhMYJek148
8kguhKLUctEoLu/hJlup0U2wDnvc/FI0QNVmNpvYqXKhCCcvG72CYXmo9rc03m5/
JcURp/w3sGPGodY8jAnXr2TLINikNzPaisDxx5DzpXedI4MwLUs=
=TgN7
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to