Your message dated Sat, 06 Jun 2026 11:50:06 +0000
with message-id <[email protected]>
and subject line Bug#1136872: fixed in python-tx-xmpp 0.14.0-1
has caused the Debian Bug report #1136872,
regarding python-tx-xmpp: FTBFS: E 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 [email protected]
immediately.)
--
1136872: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1136872
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:python-tx-xmpp
Version: 0.13.0-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/202605/
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-tx-xmpp, 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:142: Building wheel for python3.14 with "build"
module
I: pybuild base:385: python3.14 -m build --skip-dependency-check --no-isolation
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_tx_xmpp
* Building wheel...
Successfully built tx_xmpp-0.13.0-py3-none-any.whl
I: pybuild plugin_pyproject:168: Unpacking wheel built for python3.14 with
"installer" module
I: pybuild plugin_pyproject:142: Building wheel for python3.13 with "build"
module
I: pybuild base:385: python3.13 -m build --skip-dependency-check --no-isolation
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_tx_xmpp
* Building wheel...
Successfully built tx_xmpp-0.13.0-py3-none-any.whl
I: pybuild plugin_pyproject:168: Unpacking wheel built for python3.13 with
"installer" module
dh_auto_test -O--buildsystem=pybuild
I: pybuild base:385: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_tx_xmpp/build;
python3.14 -m pytest /<<PKGBUILDDIR>>
============================= test session starts ==============================
platform linux -- Python 3.14.5, pytest-9.0.3, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>
configfile: pyproject.toml
plugins: typeguard-4.4.4, twisted-1.14.3
collected 670 items
../../../tx_xmpp/test/test_client.py .......... [ 1%]
../../../tx_xmpp/test/test_compat.py . [ 1%]
../../../tx_xmpp/test/test_component.py .F............................ [ 6%]
../../../tx_xmpp/test/test_data_form.py ................................ [ 10%]
........................................................................ [ 21%]
... [ 22%]
../../../tx_xmpp/test/test_delay.py .............. [ 24%]
../../../tx_xmpp/test/test_disco.py .................................... [ 29%]
............ [ 31%]
../../../tx_xmpp/test/test_formats.py ... [ 31%]
../../../tx_xmpp/test/test_generic.py .................... [ 34%]
../../../tx_xmpp/test/test_muc.py ...................................... [ 40%]
.............................................. [ 47%]
../../../tx_xmpp/test/test_ping.py .......... [ 48%]
../../../tx_xmpp/test/test_pubsub.py ................................... [ 54%]
........................................................................ [ 64%]
.................................................................. [ 74%]
../../../tx_xmpp/test/test_rsm.py ......................... [ 78%]
../../../tx_xmpp/test/test_server.py ........................... [ 82%]
../../../tx_xmpp/test/test_shim.py ...... [ 83%]
../../../tx_xmpp/test/test_subprotocols.py ............................. [ 87%]
.................. [ 90%]
../../../tx_xmpp/test/test_xmppim.py ................................... [ 95%]
.............................. [100%]
=================================== FAILURES ===================================
__________________ ComponentTest.test_stopServiceNoReconnect ___________________
self = <tx_xmpp.test.test_component.ComponentTest
testMethod=test_stopServiceNoReconnect>
def test_stopServiceNoReconnect(self):
"""
When the service is stopped, no reconnect is attempted.
"""
comp = TestableComponent("example.org", 5347, "test.example.org",
"secret")
# Starting the service initiates a connection attempt.
comp.startService()
connector = comp._connection
# Fail the connection.
connector.connectionFailed(ConnectionRefusedError())
# If the service is stopped before the back-off delay expires,
# no new connection is attempted.
comp.factory.clock.advance(1)
> comp.stopService()
../../../tx_xmpp/test/test_component.py:101:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../../../tx_xmpp/component.py:82: in stopService
self.factory.stopTrying()
/usr/lib/python3/dist-packages/twisted/internet/protocol.py:508: in stopTrying
self.connector.stopConnecting()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <tx_xmpp.test.test_component.FakeConnector instance at 0x7f2796386710
connecting None>
def stopConnecting(self) -> None:
"""Stop attempting to connect."""
if self.state != "connecting":
raise error.NotConnectingError("we're not trying to connect")
> assert self.transport is not None
^^^^^^^^^^^^^^^^^^^^^^^^^^
E AssertionError
/usr/lib/python3/dist-packages/twisted/internet/base.py:1267: AssertionError
=============================== warnings summary ===============================
../../../tx_xmpp/test/test_component.py:43
/<<PKGBUILDDIR>>/tx_xmpp/test/test_component.py:43: PytestCollectionWarning:
cannot collect test class 'TestableComponent' because it has a __init__
constructor (from: tx_xmpp/test/test_component.py)
class TestableComponent(component.Component):
../../../tx_xmpp/test/helpers.py:99
/<<PKGBUILDDIR>>/tx_xmpp/test/helpers.py:99: PytestCollectionWarning: cannot
collect test class 'TestableStreamManager' because it has a __init__
constructor (from: tx_xmpp/test/test_muc.py)
class TestableStreamManager(StreamManager):
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED
../../../tx_xmpp/test/test_component.py::ComponentTest::test_stopServiceNoReconnect
================== 1 failed, 669 passed, 2 warnings in 1.25s ===================
E: pybuild pybuild:485: test: plugin pyproject failed with: exit code=1: cd
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.14_tx_xmpp/build; python3.14 -m pytest
{dir}
I: pybuild base:385: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_tx_xmpp/build;
python3.13 -m pytest /<<PKGBUILDDIR>>
============================= test session starts ==============================
platform linux -- Python 3.13.12, pytest-9.0.3, pluggy-1.6.0
rootdir: /<<PKGBUILDDIR>>
configfile: pyproject.toml
plugins: typeguard-4.4.4, twisted-1.14.3
collected 670 items
../../../tx_xmpp/test/test_client.py .......... [ 1%]
../../../tx_xmpp/test/test_compat.py . [ 1%]
../../../tx_xmpp/test/test_component.py .............................. [ 6%]
../../../tx_xmpp/test/test_data_form.py ................................ [ 10%]
........................................................................ [ 21%]
... [ 22%]
../../../tx_xmpp/test/test_delay.py .............. [ 24%]
../../../tx_xmpp/test/test_disco.py .................................... [ 29%]
............ [ 31%]
../../../tx_xmpp/test/test_formats.py ... [ 31%]
../../../tx_xmpp/test/test_generic.py .................... [ 34%]
../../../tx_xmpp/test/test_muc.py ...................................... [ 40%]
.............................................. [ 47%]
../../../tx_xmpp/test/test_ping.py .......... [ 48%]
../../../tx_xmpp/test/test_pubsub.py ................................... [ 54%]
........................................................................ [ 64%]
.................................................................. [ 74%]
../../../tx_xmpp/test/test_rsm.py ......................... [ 78%]
../../../tx_xmpp/test/test_server.py ........................... [ 82%]
../../../tx_xmpp/test/test_shim.py ...... [ 83%]
../../../tx_xmpp/test/test_subprotocols.py ............................. [ 87%]
.................. [ 90%]
../../../tx_xmpp/test/test_xmppim.py ................................... [ 95%]
.............................. [100%]
=============================== warnings summary ===============================
../../../tx_xmpp/test/test_component.py:43
/<<PKGBUILDDIR>>/tx_xmpp/test/test_component.py:43: PytestCollectionWarning:
cannot collect test class 'TestableComponent' because it has a __init__
constructor (from: tx_xmpp/test/test_component.py)
class TestableComponent(component.Component):
../../../tx_xmpp/test/helpers.py:99
/<<PKGBUILDDIR>>/tx_xmpp/test/helpers.py:99: PytestCollectionWarning: cannot
collect test class 'TestableStreamManager' because it has a __init__
constructor (from: tx_xmpp/test/test_muc.py)
class TestableStreamManager(StreamManager):
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
======================= 670 passed, 2 warnings in 1.20s ========================
dh_auto_test: error: pybuild --test -i python{version} -p "3.14 3.13"
--parallel=2 returned exit code 13
make: *** [debian/rules:8: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess failed with exit
status 2
--------------------------------------------------------------------------------
--- End Message ---
--- Begin Message ---
Source: python-tx-xmpp
Source-Version: 0.14.0-1
Done: Martin <[email protected]>
We believe that the bug you reported is fixed in the latest version of
python-tx-xmpp, 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.
Martin <[email protected]> (supplier of updated python-tx-xmpp 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: Sat, 06 Jun 2026 11:15:46 +0000
Source: python-tx-xmpp
Architecture: source
Version: 0.14.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <[email protected]>
Changed-By: Martin <[email protected]>
Closes: 1136872
Changes:
python-tx-xmpp (0.14.0-1) unstable; urgency=medium
.
* New upstream version
* Skip broken unittest (Closes: #1136872)
Checksums-Sha1:
4bbeb5bf7ad800fde23bf047bd944611acb60630 2508 python-tx-xmpp_0.14.0-1.dsc
cd9533f5f8fed952841243f2b1cfbecdaf667607 101560
python-tx-xmpp_0.14.0.orig.tar.xz
3ac27bba63e86913e92cbeb76e149abe91cef77b 2640
python-tx-xmpp_0.14.0-1.debian.tar.xz
86f8c913eb21be625d8f37bbfc27f0b10b523a0e 232812
python-tx-xmpp_0.14.0-1.git.tar.xz
1063568ccf652d776d611c77322dfda00ba2244f 17520
python-tx-xmpp_0.14.0-1_source.buildinfo
Checksums-Sha256:
bd68318cda05173a7e12bac2f1af3e898a943018352a861e03c9cb2824f8b1df 2508
python-tx-xmpp_0.14.0-1.dsc
d69c9df11fd6664263b8947bc2417df9b0866af6dc028a20ff40f94e1c2914a7 101560
python-tx-xmpp_0.14.0.orig.tar.xz
ec229f7c5213771ee7f80920338a5aa5cd5b8117d6ca74b46d41823ec2ea3c53 2640
python-tx-xmpp_0.14.0-1.debian.tar.xz
d7b798ce35ecb9396672f6d5f355f58ae7f94b09e8ce2aaa77a1cb5a0bfa705c 232812
python-tx-xmpp_0.14.0-1.git.tar.xz
af4b97c6d15dbfc552d38e979b03087b38b37cc7023ad01750c4329ab0dbaa1d 17520
python-tx-xmpp_0.14.0-1_source.buildinfo
Files:
f102ab56f14728745cfb7e6b33e5b4e0 2508 python optional
python-tx-xmpp_0.14.0-1.dsc
8f160330db2ec90b0bc5a1edb5fac252 101560 python optional
python-tx-xmpp_0.14.0.orig.tar.xz
33835a8eb66b0cee99dcdb31a421d953 2640 python optional
python-tx-xmpp_0.14.0-1.debian.tar.xz
3aa8a9061781d4c86af5f539a94407fc 232812 python None
python-tx-xmpp_0.14.0-1.git.tar.xz
7b758b3c4ad8e446d1ae6ba470339646 17520 python optional
python-tx-xmpp_0.14.0-1_source.buildinfo
Git-Tag-Info: tag=544befd49d9a95b6878c4a0ea83d2b43989b2d13
fp=9fdad37b09f913b996aa86adb490e3df337f3213
Git-Tag-Tagger: Martin <[email protected]>
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEN02M5NuW6cvUwJcqYG0ITkaDwHkFAmokBZEACgkQYG0ITkaD
wHn34w//Vgt1va6cCT5lPI7Qf/kp0I+FPZlIX9Z3B54xkkN0mffS5aT0WQlMLqnl
G3SCF3UI4iw7z5zaxFGimUbvbPpQUdigWMB0wINQjZsIg9is7XnquRA01us/a/9f
LoGmSmgauaPmOjXp3wo5HRfiXFDNsGa3LNRT4U5YYifEhk2QOLj9Yj7kvD2G3V/t
ZFGjGzRYiZht/CF3b3tyYCeYdT3udNJvoJYsJ3UP//mOBI/AkECvlhCWzujfFjN+
j+FTEcx7LZajoruQc4pIz2DTBktHGtJeDz1w616S2c1cAJNb93FPPx0OxJ9zeSdc
mulCgnmTTRaJaWmGH3pMNetkS1Sb2pPmoI5LuFdxG5rJaaSZneB039XG1Uu4CxQZ
3d36qOPp1YtHZ3tGRJ4+IfbCdXrwNyorFqDgtSQfgs6wLBYPDt7BiGTOCcOyOImv
Sw2/lVri0yaezwHLLiMACL6grZenHfYK6ec9WxyKpfz1vob7QazaTl3BN7o2B0z9
5azuyrLjd1Ah4XswO+qC5lH1Izasj3y70LZ1DB4yc2Wh1UpCC5Xe2ajg5tjFrhxD
tzgLoAqTJ3ju4Krhz3820fgrUWjdcwmj9fEVaaN4BAbEkryFBYQMJ5w4+RdQUp/M
1fpo5gpELLYMhwhkS10ymBLsoiKFfypVasodTvF25hEMCY6vP4w=
=UEwJ
-----END PGP SIGNATURE-----
pgpJB7M_cSmMA.pgp
Description: PGP signature
--- End Message ---