Your message dated Wed, 22 Nov 2023 16:54:44 +0000
with message-id <[email protected]>
and subject line Bug#1056523: fixed in ros-vcstools 0.1.42-8
has caused the Debian Bug report #1056523,
regarding ros-vcstools 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.)


-- 
1056523: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1056523
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:ros-vcstools
Version: 0.1.42-7
Severity: important
Tags: sid trixie
User: [email protected]
Usertags: python3.12

ros-vcstools's autopkg tests fail with Python 3.12:

[...]
151s I: pybuild base:310: cd /tmp/autopkgtest.NKRejc/autopkgtest_tmp/build; python3.12 -m pytest test 152s ============================= test session starts ==============================
152s platform linux -- Python 3.12.0+, pytest-7.4.3, pluggy-1.3.0
152s rootdir: /tmp/autopkgtest.NKRejc/autopkgtest_tmp/build
152s collected 148 items
152s
152s test/test_base.py ....... [ 4%] 167s test/test_bzr.py FF............FFF.. [ 17%] 167s test/test_code_format.py . [ 18%] 188s test/test_git.py .FF.......................FFFF......FFFFF... [ 47%] 191s test/test_git_subm.py ............ [ 56%] 227s test/test_hg.py FF...........FFF.FFF..FF... [ 74%] 230s test/test_svn.py .FF..........FFF.FF....... [ 91%] 230s test/test_tar.py ......... [ 97%] 230s test/test_vcs_abstraction.py ... [100%]
230s
230s =================================== FAILURES =================================== 230s _________________________ BzrClientTest.testDiffClean __________________________
230s
230s self = <test.test_bzr.BzrClientTest testMethod=testDiffClean>
230s
230s     def testDiffClean(self):
230s         client = BzrClient(self.remote_path)
230s >       self.assertEquals('', client.get_diff())
230s E AttributeError: 'BzrClientTest' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
230s
230s test/test_bzr.py:216: AttributeError
230s ---------------------------- Captured stdout setup -----------------------------
230s Created a standalone tree (format: 2a)
230s adding fixed.txt
230s adding modified.txt
230s adding modified-fs.txt
230s adding deleted.txt
230s adding deleted-fs.txt
230s ---------------------------- Captured stderr setup -----------------------------
230s Committing to: /tmp/tmpth0bymbf/remote/
230s added fixed.txt
230s Committed revision 1.
230s Created tag test_tag.
230s Committing to: /tmp/tmpth0bymbf/remote/
230s added modified-fs.txt
230s added modified.txt
230s Committed revision 2.
230s Committing to: /tmp/tmpth0bymbf/remote/
230s added deleted-fs.txt
230s added deleted.txt
230s Committed revision 3.
230s ________________________ BzrClientTest.testStatusClean _________________________
230s
230s self = <test.test_bzr.BzrClientTest testMethod=testStatusClean>
230s
230s     def testStatusClean(self):
230s         client = BzrClient(self.remote_path)
230s >       self.assertEquals('', client.get_status())
230s E AttributeError: 'BzrClientTest' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
230s
230s test/test_bzr.py:220: AttributeError
230s ____________________ BzrClientLogTest.test_get_log_defaults ____________________
230s
230s self = <test.test_bzr.BzrClientLogTest testMethod=test_get_log_defaults>
230s
230s     def test_get_log_defaults(self):
230s         client = BzrClient(self.local_path)
230s         client.checkout(self.remote_path)
230s         log = client.get_log()
230s >       self.assertEquals(3, len(log))
230s E AttributeError: 'BzrClientLogTest' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
230s
230s test/test_bzr.py:243: AttributeError
230s ---------------------------- Captured stdout setup -----------------------------
230s Created a standalone tree (format: 2a)
230s adding fixed.txt
230s adding modified.txt
230s adding modified-fs.txt
230s adding deleted.txt
230s adding deleted-fs.txt
230s ---------------------------- Captured stderr setup -----------------------------
230s Committing to: /tmp/tmpr09994j0/remote/
230s added fixed.txt
230s Committed revision 1.
230s Created tag test_tag.
230s Committing to: /tmp/tmpr09994j0/remote/
230s added modified-fs.txt
230s added modified.txt
230s Committed revision 2.
230s Committing to: /tmp/tmpr09994j0/remote/
230s added deleted-fs.txt
230s added deleted.txt
230s Committed revision 3.
230s ----------------------------- Captured stderr call -----------------------------
230s ERROR [vcstools] Can't remove /tmp/tmpr09994j0/local[/vcstools]
230s ------------------------------ Captured log call -------------------------------
230s ERROR    vcstools:bzr.py:142 Can't remove /tmp/tmpr09994j0/local
230s _____________________ BzrClientLogTest.test_get_log_limit ______________________
230s
230s self = <test.test_bzr.BzrClientLogTest testMethod=test_get_log_limit>
230s
230s     def test_get_log_limit(self):
230s         client = BzrClient(self.local_path)
230s         client.checkout(self.remote_path)
230s         log = client.get_log(limit=1)
230s >       self.assertEquals(1, len(log))
230s E AttributeError: 'BzrClientLogTest' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
230s
230s test/test_bzr.py:252: AttributeError
230s ______________________ BzrClientLogTest.test_get_log_path ______________________
230s
230s self = <test.test_bzr.BzrClientLogTest testMethod=test_get_log_path>
230s
230s     def test_get_log_path(self):
230s         client = BzrClient(self.local_path)
230s         client.checkout(self.remote_path)
230s         log = client.get_log(relpath='fixed.txt')
230s >       self.assertEquals('initial', log[0]['message'])
230s E AttributeError: 'BzrClientLogTest' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
230s
230s test/test_bzr.py:259: AttributeError
230s _________________________ GitClientTest.testDiffClean __________________________
230s
230s self = <test.test_git.GitClientTest testMethod=testDiffClean>
230s
230s     def testDiffClean(self):
230s         client = GitClient(self.remote_path)
230s >       self.assertEquals('', client.get_diff())
230s E AttributeError: 'GitClientTest' object has no attribute 'assertEquals'. Did you mean: 'assertEqual'?
230s
230s test/test_git.py:485: AttributeError
230s ---------------------------- Captured stdout setup -----------------------------
230s Initialized empty Git repository in /tmp/tmpi0pgcf85/remote/.git/
230s [master (root-commit) aca43cd] initial
230s  Author: Your Name <[email protected]>
230s  1 file changed, 0 insertions(+), 0 deletions(-)
230s  create mode 100644 fixed.txt
230s [master 9b7b28c] initial
230s  Author: Your Name <[email protected]>
230s  2 files changed, 0 insertions(+), 0 deletions(-)
230s  create mode 100644 modified-fs.txt
230s  create mode 100644 modified.txt
230s [master 86d1854] modified
230s  Author: Your Name <[email protected]>
230s  2 files changed, 0 insertions(+), 0 deletions(-)
230s  create mode 100644 deleted-fs.txt
230s  create mode 100644 deleted.txt
230s ---------------------------- Captured stderr setup ----------------------------- 230s hint: Using 'master' as the name for the initial branch. This default branch name 230s hint: is subject to change. To configure the initial branch name to use in all
230s hint: of your new repositories, which will suppress this warning, call:
230s hint:
230s hint:      git config --global init.defaultBranch <name>
230s hint:
230s hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
230s hint: 'development'. The just-created branch can be renamed via this command:
230s hint:
230s hint:      git branch -m <name>

[...]

230s =========================== short test summary info ============================ 230s FAILED test/test_bzr.py::BzrClientTest::testDiffClean - AttributeError: 'BzrC... 230s FAILED test/test_bzr.py::BzrClientTest::testStatusClean - AttributeError: 'Bz... 230s FAILED test/test_bzr.py::BzrClientLogTest::test_get_log_defaults - AttributeE... 230s FAILED test/test_bzr.py::BzrClientLogTest::test_get_log_limit - AttributeErro... 230s FAILED test/test_bzr.py::BzrClientLogTest::test_get_log_path - AttributeError... 230s FAILED test/test_git.py::GitClientTest::testDiffClean - AttributeError: 'GitC... 230s FAILED test/test_git.py::GitClientTest::testStatusClean - AttributeError: 'Gi... 230s FAILED test/test_git.py::GitClientLogTest::test_get_log_defaults - AttributeE... 230s FAILED test/test_git.py::GitClientLogTest::test_get_log_limit - AttributeErro... 230s FAILED test/test_git.py::GitClientLogTest::test_get_log_path - AttributeError... 230s FAILED test/test_git.py::GitClientAffectedFiles::test_get_affected_files - At... 230s FAILED test/test_git.py::GitDiffStatClientTest::testDiff - AttributeError: 'G... 230s FAILED test/test_git.py::GitDiffStatClientTest::testDiffRelpath - AttributeEr... 230s FAILED test/test_git.py::GitDiffStatClientTest::testStatus - AttributeError: ... 230s FAILED test/test_git.py::GitDiffStatClientTest::testStatusRelPath - Attribute... 230s FAILED test/test_git.py::GitDiffStatClientTest::testStatusUntracked - Attribu... 230s FAILED test/test_hg.py::HGClientTest::testDiffClean - AttributeError: 'HGClie... 230s FAILED test/test_hg.py::HGClientTest::testStatusClean - AttributeError: 'HGCl... 230s FAILED test/test_hg.py::HGClientLogTest::test_get_log_defaults - AttributeErr... 230s FAILED test/test_hg.py::HGClientLogTest::test_get_log_limit - AttributeError:... 230s FAILED test/test_hg.py::HGClientLogTest::test_get_log_path - AttributeError: ... 230s FAILED test/test_hg.py::HGDiffStatClientTest::testStatusUntracked - Attribute... 230s FAILED test/test_hg.py::HGDiffStatClientTest::test_diff - AttributeError: 'HG... 230s FAILED test/test_hg.py::HGDiffStatClientTest::test_diff_relpath - AttributeEr... 230s FAILED test/test_hg.py::HGDiffStatClientTest::test_status - AttributeError: '... 230s FAILED test/test_hg.py::HGDiffStatClientTest::test_status_relpath - Attribute... 230s FAILED test/test_svn.py::SvnClientTest::testDiffClean - AttributeError: 'SvnC... 230s FAILED test/test_svn.py::SvnClientTest::testStatusClean - AttributeError: 'Sv... 230s FAILED test/test_svn.py::SvnClientLogTest::test_get_log_defaults - AttributeE... 230s FAILED test/test_svn.py::SvnClientLogTest::test_get_log_limit - AttributeErro... 230s FAILED test/test_svn.py::SvnClientLogTest::test_get_log_path - AttributeError... 230s FAILED test/test_svn.py::SvnDiffStatClientTest::test_diff - AttributeError: '... 230s FAILED test/test_svn.py::SvnDiffStatClientTest::test_diff_relpath - Attribute... 230s =========== 33 failed, 115 passed, 175 warnings in 78.34s (0:01:18) ============
--- End Message ---
--- Begin Message ---
Source: ros-vcstools
Source-Version: 0.1.42-8
Done: Jochen Sprickerhof <[email protected]>

We believe that the bug you reported is fixed in the latest version of
ros-vcstools, 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.
Jochen Sprickerhof <[email protected]> (supplier of updated ros-vcstools 
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: Wed, 22 Nov 2023 17:42:25 +0100
Source: ros-vcstools
Architecture: source
Version: 0.1.42-8
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
<[email protected]>
Changed-By: Jochen Sprickerhof <[email protected]>
Closes: 1056523
Changes:
 ros-vcstools (0.1.42-8) unstable; urgency=medium
 .
   * Fix test assertEqual with Python 3.12 (Closes: #1056523)
   * Replace imp by importlib for Python 3.12
Checksums-Sha1:
 7dea703c918c4569d0c32d4cdcd65b44e53f3bc5 2255 ros-vcstools_0.1.42-8.dsc
 e78c90e08e3c4636641c998d32b5b8a381de394e 7540 
ros-vcstools_0.1.42-8.debian.tar.xz
 266703e0b66cdb88b82d3c1a05e8a3be4847a75a 7782 
ros-vcstools_0.1.42-8_source.buildinfo
Checksums-Sha256:
 4ffbb4d3e44d693fcf2880be8ff9f2ba8fae1d771b623002327bfb14c9f5a3fb 2255 
ros-vcstools_0.1.42-8.dsc
 36850b4833d7687533c2e2d727ab5b99ca8e1b411c7310456045950eb07cf57a 7540 
ros-vcstools_0.1.42-8.debian.tar.xz
 2fb52ef5e38d3d09038598b441ac78021c5f5ce57c5f57cba562d329a272fa04 7782 
ros-vcstools_0.1.42-8_source.buildinfo
Files:
 c5ee7cd95cbae5d956a285ad49ac1542 2255 python optional ros-vcstools_0.1.42-8.dsc
 4698961ae200921657b86651a28e4a0b 7540 python optional 
ros-vcstools_0.1.42-8.debian.tar.xz
 87bd3a9dbca2c8fc5dcc74797bdf371d 7782 python optional 
ros-vcstools_0.1.42-8_source.buildinfo

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

iQIzBAEBCgAdFiEEc7KZy9TurdzAF+h6W//cwljmlDMFAmVeL5sACgkQW//cwljm
lDML6A//Rm1YEdaVWGA/DFxHXcy4ZHa9qoGS8nqX3Z36DQAqYSStVagXEmcLgN0x
Ychbon3UJN1kvwEv7aCkhLv5ifaVRIpq38JHP6ApUqIlu1IZr9IG7Ne7EOPIqGeI
IbH27Z1MSWikEO7LS1YTXL+EGuCBb+Fyfs66sd7tvSU3EN/A0Uegf/Fsi4s09w3I
dhgPLW03zbz9UpVqVpABXN5J6efGCBOGvAzIyhLt19dBxhdTdXVq+CH6hp6ofS+6
dvpWsWO/pNbPamm+XRHKVO5sy/5bRxUB4o1riZetAOfF3XUR7oXSCS/bBd+EPStL
z1ULpLuDu+LA/ybLB8luyQHowsdYGnVAQbbt8u/OLvvklmAZba3dq9w59xx5tWff
XiuAPu/Op5cuwjSQZ4utkD6s5m9USvhZkN6YDn47cPPNKt31vS4hsCnVnAxecGIV
wM0cHXV3FlSoCfQE3nzRf3pMavMSlMthICVVmw1sI+NdARjV5svLeffG9ZpFDEFk
HHK5svst0R++PhuHqt9W39iT5VcC2LY93O5lSz3ZXle47sHfwX+YSFw3zcwW0O8n
fZdpheZmznP16/+X3ufcisE8GJTkdb3Gq0v5QsEG7u3iUTXNDrNzgnRMZi1j1c6v
sw556+2bfCYzGBtvTqYKQh5x18Jdq8YLPc8XWLko0I8IWyDxcqo=
=a9k1
-----END PGP SIGNATURE-----

--- End Message ---
-- 
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers

Reply via email to