Your message dated Sat, 12 Aug 2023 10:05:01 -0300
with message-id <ZNeDfXKEg8EWhIlj@novelo>
and subject line Re: Bug#1042934: pytango autopkg tests fail on amd64 in 
unstable
has caused the Debian Bug report #1042934,
regarding pytango autopkg tests fail on amd64 in unstable
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.)


-- 
1042934: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1042934
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:pytango
Version: 9.3.6-2.1
Severity: serious
Tags: sid trixie

https://ci.debian.net/data/autopkgtest/testing/amd64/p/pytango/36334683/log.gz

[...]
155s =================================== FAILURES =================================== 155s ___________________ test_subscribe_data_ready_event[Futures] ___________________
155s event_device = EventDevice(test/nodb/eventdevice)
155s
155s     def test_subscribe_data_ready_event(event_device):
155s         results_data_ready_event = []
155s
155s         def callback_data_ready(evt):
155s             results_data_ready_event.append(evt.ctr)
155s
155s         # Subscribe to data ready event
155s         eid_data_ready = event_device.subscribe_event(
155s             "attr", EventType.DATA_READY_EVENT, callback_data_ready, 
wait=True)
155s         assert eid_data_ready == 1
155s         # Trigger an event
155s         event_device.command_inout("send_data_ready_event", wait=True)
155s         # Wait for tango event
155s         retries = 20
155s         for _ in range(retries):
155s             event_device.read_attribute("state", wait=True)
155s             if len(results_data_ready_event):
155s                 break
155s             time.sleep(0.05)
155s         # Test the event values
155s >       assert results_data_ready_event == [2]
155s E       assert [] == [2]
155s E         Right contains one more item: 2
155s E         Full diff:
155s E         - [2]
155s E         ?  -
155s E         + []
155s
155s tests/test_event.py:146: AssertionError
155s ---------------------------- Captured stdout setup -----------------------------
155s Ready to accept request
155s ---------------------------- Captured stderr setup -----------------------------
155s Can't create notifd event supplier. Notifd event not available
155s =============================== warnings summary ===============================
155s ../../../../usr/lib/python3/dist-packages/tango/utils.py:176
155s /usr/lib/python3/dist-packages/tango/utils.py:176: DeprecationWarning: `np.bool8` is a deprecated alias for `np.bool_`. (Deprecated NumPy 1.24)
155s     CmdArgType.DevBoolean: numpy.bool8,
155s
155s tests/test_client.py:19
155s /tmp/autopkgtest-lxc.p9321foh/downtmp/autopkgtest_tmp/tests/test_client.py:19: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
155s     from distutils.spawn import find_executable
155s
155s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
155s =========================== short test summary info ============================
155s FAILED tests/test_event.py::test_subscribe_data_ready_event[Futures]
155s ====== 1 failed, 1092 passed, 26 xfailed, 2 warnings in 99.86s (0:01:39) =======
--- End Message ---
--- Begin Message ---
Version: 9.4.2-1

El 03/08/23 a las 04:26, Matthias Klose escribió:
> Package: src:pytango
> Version: 9.3.6-2.1
> Severity: serious
> Tags: sid trixie
> 
> https://ci.debian.net/data/autopkgtest/testing/amd64/p/pytango/36334683/log.gz
> 
> [...]
> 155s =================================== FAILURES
> ===================================
> 155s ___________________ test_subscribe_data_ready_event[Futures]
> ___________________
> 155s event_device = EventDevice(test/nodb/eventdevice)
> 155s
> 155s     def test_subscribe_data_ready_event(event_device):
> 155s         results_data_ready_event = []
> 155s
> 155s         def callback_data_ready(evt):
> 155s             results_data_ready_event.append(evt.ctr)
> 155s
> 155s         # Subscribe to data ready event
> 155s         eid_data_ready = event_device.subscribe_event(
> 155s             "attr", EventType.DATA_READY_EVENT, callback_data_ready, 
> wait=True)
> 155s         assert eid_data_ready == 1
> 155s         # Trigger an event
> 155s         event_device.command_inout("send_data_ready_event", wait=True)
> 155s         # Wait for tango event
> 155s         retries = 20
> 155s         for _ in range(retries):
> 155s             event_device.read_attribute("state", wait=True)
> 155s             if len(results_data_ready_event):
> 155s                 break
> 155s             time.sleep(0.05)
> 155s         # Test the event values
> 155s >       assert results_data_ready_event == [2]
> 155s E       assert [] == [2]
> 155s E         Right contains one more item: 2
> 155s E         Full diff:
> 155s E         - [2]
> 155s E         ?  -
> 155s E         + []
> 155s
> 155s tests/test_event.py:146: AssertionError
> 155s ---------------------------- Captured stdout setup
> -----------------------------
> 155s Ready to accept request
> 155s ---------------------------- Captured stderr setup
> -----------------------------
> 155s Can't create notifd event supplier. Notifd event not available
> 155s =============================== warnings summary
> ===============================
> 155s ../../../../usr/lib/python3/dist-packages/tango/utils.py:176
> 155s   /usr/lib/python3/dist-packages/tango/utils.py:176:
> DeprecationWarning: `np.bool8` is a deprecated alias for `np.bool_`.
> (Deprecated NumPy 1.24)
> 155s     CmdArgType.DevBoolean: numpy.bool8,
> 155s
> 155s tests/test_client.py:19
> 155s 
> /tmp/autopkgtest-lxc.p9321foh/downtmp/autopkgtest_tmp/tests/test_client.py:19:
> DeprecationWarning: The distutils package is deprecated and slated for
> removal in Python 3.12. Use setuptools or check PEP 632 for potential
> alternatives
> 155s     from distutils.spawn import find_executable
> 155s
> 155s -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
> 155s =========================== short test summary info
> ============================
> 155s FAILED tests/test_event.py::test_subscribe_data_ready_event[Futures]
> 155s ====== 1 failed, 1092 passed, 26 xfailed, 2 warnings in 99.86s
> (0:01:39) =======
> 

This was fixed with the recent upload of pytango 9.4.2-1:
https://ci.debian.net/data/autopkgtest/unstable/amd64/p/pytango/36745951/log.gz

Cheers,

 -- S

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 11 Aug 2023 10:54:08 -0300
Source: pytango
Architecture: source
Version: 9.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
<debian-science-maintain...@lists.alioth.debian.org>
Changed-By: Santiago Ruano Rincón <santi...@freexian.com>
Changes:
 pytango (9.4.2-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream version 9.4.2
Checksums-Sha1:
 ad9fe2a4a0806db259dec43c005f3fdc51155c27 2133 pytango_9.4.2-1.dsc
 b503a14d2b393e051bea339310d94d56cf9d5c59 4959247 pytango_9.4.2.orig.tar.gz
 c244b5edfac757819e05fa5ca0a3ac1219669501 12484 pytango_9.4.2-1.debian.tar.xz
 2f12ee004bee7e377d2247477863e8c8b7675235 6261 pytango_9.4.2-1_source.buildinfo
Checksums-Sha256:
 d33801fa1bf3c353ad6e7f18557dbc1b60fafb0f99aa3761cb052652fcfbc1ec 2133 
pytango_9.4.2-1.dsc
 61d9c47f6fcdaa747024768b2926cf90db1be213dd6e74ee9de50e146d328fa7 4959247 
pytango_9.4.2.orig.tar.gz
 22ab3fe1267f229c2d460e95375fdfb45b164f05a64061a21f6b35f7ed335532 12484 
pytango_9.4.2-1.debian.tar.xz
 bf666089aabce34dfa99e9eea8b0d9fda787e82a4c7e9f6bbc7ba9791d47c2e3 6261 
pytango_9.4.2-1_source.buildinfo
Files:
 d6b7754dc40fad6ed98f036f7b5f089c 2133 science optional pytango_9.4.2-1.dsc
 908c8731cda9742132fc097a05dfa064 4959247 science optional 
pytango_9.4.2.orig.tar.gz
 1401333ad1cb58e0c2d4e1d76b3bf458 12484 science optional 
pytango_9.4.2-1.debian.tar.xz
 f3226a6cac11630b8cdb6ae4a77c94fb 6261 science optional 
pytango_9.4.2-1_source.buildinfo

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

iHUEARYIAB0WIQRZVjztY8b+Ty43oH1itBCJKh26HQUCZNZjPgAKCRBitBCJKh26
HcyMAP902ZvLydwmc5sUuiEFutLA9LDXb5XlqL+KdBQvtjFIlwEA1+PqivT0KZMc
zq/cl7yQevb3+XkLhwOJHvZWdru85wI=
=qOoc
-----END PGP SIGNATURE-----

Attachment: signature.asc
Description: PGP signature


--- End Message ---

Reply via email to