Your message dated Tue, 03 Feb 2026 23:10:23 +0000
with message-id <[email protected]>
and subject line Bug#1123190: fixed in python-argh 0.31.3-2
has caused the Debian Bug report #1123190,
regarding python-argh: FTBFS: dh_auto_test: error: pybuild --test --test-pytest 
-i python{version} -p "3.14 3.13" returned exit code 13
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.)


-- 
1123190: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1123190
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-argh
Version: 0.31.3-1
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202512/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:python-argh, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
dh binary --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
   dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:131: Building wheel for python3.14 with "build" 
module
I: pybuild base:317: python3.14 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_argh  
* Building wheel...
Successfully built argh-0.31.3-py3-none-any.whl
I: pybuild plugin_pyproject:155: Unpacking wheel built for python3.14 with 
"installer" module
I: pybuild plugin_pyproject:131: Building wheel for python3.13 with "build" 
module
I: pybuild base:317: python3.13 -m build --skip-dependency-check --no-isolation 
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_argh  
* Building wheel...
Successfully built argh-0.31.3-py3-none-any.whl
I: pybuild plugin_pyproject:155: Unpacking wheel built for python3.13 with 
"installer" module
   dh_auto_test -O--buildsystem=pybuild
I: pybuild base:317: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_argh/build; 
python3.14 -m pytest tests
============================= test session starts ==============================
platform linux -- Python 3.14.2, pytest-9.0.2, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_argh/build
configfile: pyproject.toml
collected 170 items

tests/test_assembling.py ......................................          [ 22%]
tests/test_completion.py ...                                             [ 24%]
tests/test_decorators.py ......                                          [ 27%]
tests/test_dispatching.py ........                                       [ 32%]
tests/test_dto.py ....                                                   [ 34%]
tests/test_integration.py ...........................................F.. [ 61%]
.........                                                                [ 67%]
tests/test_interaction.py .....                                          [ 70%]
tests/test_mapping_policies.py ..........................                [ 85%]
tests/test_regressions.py .............                                  [ 92%]
tests/test_typing_hints.py ........                                      [ 97%]
tests/test_utils.py ....                                                 [100%]

=================================== FAILURES ===================================
__________________________________ test_prog ___________________________________

capsys = <_pytest.capture.CaptureFixture object at 0x7f8e35f5f8c0>

    def test_prog(capsys: pytest.CaptureFixture[str]):
        "Program name propagates from sys.argv[0]"
    
        def cmd(*, foo=1):
            return foo
    
        parser = DebugArghParser()
        parser.add_commands([cmd])
    
        usage = get_usage_string()
    
        assert run(parser, "-h", exit=True) == 0
        captured = capsys.readouterr()
>       assert captured.out.startswith(usage)
E       AssertionError: assert False
E        +  where False = <built-in method startswith of str object at 
0x7f8e35b399b0>('usage: __main__.py [-h] {cmd} ...\n\n')
E        +    where <built-in method startswith of str object at 
0x7f8e35b399b0> = 'usage: python3.14 -m pytest [-h] {cmd} ...\n\npositional 
arguments:\n  {cmd}\n    cmd\n\noptions:\n  -h, --help  show this help message 
and exit\n'.startswith
E        +      where 'usage: python3.14 -m pytest [-h] {cmd} ...\n\npositional 
arguments:\n  {cmd}\n    cmd\n\noptions:\n  -h, --help  show this help message 
and exit\n' = CaptureResult(out='usage: python3.14 -m pytest [-h] {cmd} 
...\n\npositional arguments:\n  {cmd}\n    cmd\n\noptions:\n  -h, --help  show 
this help message and exit\n', err='').out

tests/test_integration.py:815: AssertionError
=============================== warnings summary ===============================
tests/test_dispatching.py::test_dispatch_command_two_stage
  /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_argh/build/argh/dispatching.py:168: 
DeprecationWarning: The argument `namespace` in `dispatch()` is deprecated. It 
will be removed in the next minor version after v0.31.
    warnings.warn(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_integration.py::test_prog - AssertionError: assert False
=================== 1 failed, 169 passed, 1 warning in 0.29s ===================
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_argh/build; python3.14 -m pytest tests
I: pybuild base:317: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_argh/build; 
python3.13 -m pytest tests
============================= test session starts ==============================
platform linux -- Python 3.13.11, pytest-9.0.2, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_argh/build
configfile: pyproject.toml
collected 170 items

tests/test_assembling.py ......................................          [ 22%]
tests/test_completion.py ...                                             [ 24%]
tests/test_decorators.py ......                                          [ 27%]
tests/test_dispatching.py ........                                       [ 32%]
tests/test_dto.py ....                                                   [ 34%]
tests/test_integration.py .............................................. [ 61%]
.........                                                                [ 67%]
tests/test_interaction.py .....                                          [ 70%]
tests/test_mapping_policies.py ..........................                [ 85%]
tests/test_regressions.py .............                                  [ 92%]
tests/test_typing_hints.py ........                                      [ 97%]
tests/test_utils.py ....                                                 [100%]

=============================== warnings summary ===============================
tests/test_dispatching.py::test_dispatch_command_two_stage
  /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_argh/build/argh/dispatching.py:168: 
DeprecationWarning: The argument `namespace` in `dispatch()` is deprecated. It 
will be removed in the next minor version after v0.31.
    warnings.warn(

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
======================== 170 passed, 1 warning in 0.28s ========================
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.14 
3.13" returned exit code 13
make: *** [debian/rules:13: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: python-argh
Source-Version: 0.31.3-2
Done: Colin Watson <[email protected]>

We believe that the bug you reported is fixed in the latest version of
python-argh, 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.
Colin Watson <[email protected]> (supplier of updated python-argh 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, 03 Feb 2026 22:23:28 +0000
Source: python-argh
Architecture: source
Version: 0.31.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Colin Watson <[email protected]>
Closes: 1123190
Changes:
 python-argh (0.31.3-2) unstable; urgency=medium
 .
   * Team upload.
   * Fix tests under Python 3.14 (closes: #1123190).
Checksums-Sha1:
 e5ac085133fe83d93c08ccc99ee4354e2107a689 2343 python-argh_0.31.3-2.dsc
 1e8c86260750e00fa29fe949a60c3db1036dee71 5024 
python-argh_0.31.3-2.debian.tar.xz
 07e54abd0e406cbeefac3c2628d07c95f66be914 142500 python-argh_0.31.3-2.git.tar.xz
 8991602391b412bc631a4bd232c24aefa7a03ac6 17314 
python-argh_0.31.3-2_source.buildinfo
Checksums-Sha256:
 ee8e624cf37f9777d3b6dd44a9a79c022f490c2ea8a5c0139965f882fd62dca8 2343 
python-argh_0.31.3-2.dsc
 54fd255df5312c76f6431cf5416ee73452740a0d79d6a7e3498a7d092c10ed97 5024 
python-argh_0.31.3-2.debian.tar.xz
 4fbe5455b393019a425b4afd934400c9211aea179de332ba995c09455d3ee435 142500 
python-argh_0.31.3-2.git.tar.xz
 db87b11dd34825093751647529087350e1f9379f89770732c509283b426c6f7e 17314 
python-argh_0.31.3-2_source.buildinfo
Files:
 728bcb3a15b3b6e570a765dfadf68db6 2343 python optional python-argh_0.31.3-2.dsc
 a66201da9847d408846d79d5472ffab0 5024 python optional 
python-argh_0.31.3-2.debian.tar.xz
 ec4db0458d4bb5ac079a9d2ba441dc6a 142500 python optional 
python-argh_0.31.3-2.git.tar.xz
 7b865345b3773304936ea37da5f27f04 17314 python optional 
python-argh_0.31.3-2_source.buildinfo
Git-Tag-Info: tag=451c1137fd35cf0e8ef03609ea5f3af73d20bba3 
fp=ac0a4ff12611b6fccf01c111393587d97d86500b
Git-Tag-Tagger: Colin Watson <[email protected]>

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

iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmmCdcAACgkQYG0ITkaD
wHkfPA//V8zooK9JTfAkRepS+OEfCQl5vYojVc5GJ289nnV2OsQGJzFbK0u3e5IB
iaHzUc9vRDucBBggTINoSc7XxzR9r58cnaf5nxxGzZJjHrUT+snUE2VRfxQskj4I
BPxLm1VqCAnvnoq2cl/2WnlahVlmkzPaaEfKo0k68zs2fZbrg5BUg6MIL4RL6WwI
2YqT9rPW4OSAIopr4ldQ7AkoGoruhXmRTQbQpUJtrbF5E75fKbtA8ED07/5iPFrk
fsVjyqltjT4ldr1rkb1+5olNYrRjlXjyK4ISLkKLmF7YKDZkEeCQTva9IQLAT9M7
13d7QOvh8U3qHu6uTktTT/XoBBCv0DzMckTxLY40O9qAiMUG2DOtdfm8GcwG6jyk
QbdwI7AagralAC8m0pQKkmtVm2ti6fc2YTqPkHEsAVGWLgxG+xD3GrcOB3AheE9N
9LhyETg9UJayl+crBF2xonGT2mqDlbOH/6o2FFfvH9aMPeDdnio9a0yQILE6rdRH
W71SrFwDhGGOm9XxC6lZABYgWrfx8weLFuTg+gdJRLXDgcv0PR2KLphGCOGDBCa/
CTWMXZWNSk6phKaZoF8X8/Zcc0vQAcO/jRy2I80H4b2jqHpKL/eJL3r2ddUkVBNe
m9Jq9ZOOeXCUU1PbsC3VQ7fBY4qnoPgz9yR/TuXTaHxQkHiYZJ8=
=5OXU
-----END PGP SIGNATURE-----

Attachment: pgpRntpRf9hNa.pgp
Description: PGP signature


--- End Message ---

Reply via email to