Your message dated Wed, 04 Apr 2018 10:53:41 +0000
with message-id <e1f3g2v-0003s3...@fasolo.debian.org>
and subject line Bug#893948: fixed in python-zeep 2.5.0-1
has caused the Debian Bug report #893948,
regarding python-zeep FTBFS: TornadoAsyncTransportTest.test_load failure
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.)


-- 
893948: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=893948
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-zeep
Version: 2.4.0-1
Severity: serious

Some recent change in unstable makes python-zeep FTBFS:

https://tests.reproducible-builds.org/debian/history/python-zeep.html
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/python-zeep.html

...

=================================== FAILURES ===================================
_____________________ TornadoAsyncTransportTest.test_load ______________________

self = <tests.test_tornado_transport.TornadoAsyncTransportTest 
testMethod=test_load>
mock_httpclient_fetch = <MagicMock name='fetch' id='140541565526928'>

    @pytest.mark.requests
    @patch('tornado.httpclient.HTTPClient.fetch')
    @gen_test
    def test_load(self, mock_httpclient_fetch):
        cache = stub(get=lambda url: None, add=lambda url, content: None)
        response = 
HTTPResponse(HTTPRequest('http://tests.python-zeep.org/test.xml'), 200)
        response.buffer = True
        response._body = 'x'
        mock_httpclient_fetch.return_value = response
    
        transport = TornadoAsyncTransport(cache=cache)
    
>       result = transport.load('http://tests.python-zeep.org/test.xml')

tests/test_tornado_transport.py:30: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
zeep/transports.py:110: in load
    content = self._load_remote_data(url)
zeep/tornado/transport.py:38: in _load_remote_data
    client = httpclient.HTTPClient()
/usr/lib/python3/dist-packages/tornado/httpclient.py:81: in __init__
    gen.coroutine(lambda: async_client_class(**kwargs)))
/usr/lib/python3/dist-packages/tornado/ioloop.py:577: in run_sync
    self.start()
/usr/lib/python3/dist-packages/tornado/platform/asyncio.py:112: in start
    self.asyncio_loop.run_forever()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>

    def run_forever(self):
        """Run until stop() is called."""
        self._check_closed()
        if self.is_running():
            raise RuntimeError('This event loop is already running')
        if events._get_running_loop() is not None:
            raise RuntimeError(
>               'Cannot run the event loop while another loop is running')
E           RuntimeError: Cannot run the event loop while another loop is 
running

/usr/lib/python3.6/asyncio/base_events.py:412: RuntimeError
------------------------------ Captured log call -------------------------------
selector_events.py          65 DEBUG    Using selector: EpollSelector
selector_events.py          65 DEBUG    Using selector: EpollSelector
selector_events.py          65 DEBUG    Using selector: EpollSelector
==================== 1 failed, 410 passed in 57.41 seconds =====================
Exception ignored in: <bound method HTTPClient.__del__ of 
<tornado.httpclient.HTTPClient object at 0x7fd26215bd68>>
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/tornado/httpclient.py", line 85, in 
__del__
    self.close()
  File "/usr/lib/python3/dist-packages/tornado/httpclient.py", line 89, in close
    if not self._closed:
AttributeError: 'HTTPClient' object has no attribute '_closed'
E: pybuild pybuild:330: test: plugin distutils failed with: exit code=1: cd 
/build/1st/python-zeep-2.4.0/.pybuild/cpython3_3.6_zeep/build; python3.6 -m 
pytest tests
dh_auto_test: pybuild --test --test-pytest -i python{version} -p 3.6 returned 
exit code 13
make: *** [debian/rules:6: build] Error 25

--- End Message ---
--- Begin Message ---
Source: python-zeep
Source-Version: 2.5.0-1

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

Debian distribution maintenance software
pp.
Mathias Behrle <mbeh...@debian.org> (supplier of updated python-zeep 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: Wed, 04 Apr 2018 11:59:05 +0200
Source: python-zeep
Binary: python-zeep python3-zeep
Architecture: source all
Version: 2.5.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Tryton Maintainers <team+tryton-t...@tracker.debian.org>
Changed-By: Mathias Behrle <mbeh...@debian.org>
Description:
 python-zeep - Modern SOAP client library (Python 2)
 python3-zeep - Modern SOAP client library (Python 3)
Closes: 893948
Changes:
 python-zeep (2.5.0-1) unstable; urgency=medium
 .
   * Bump the Standards-Version to 4.1.1, no changes needed.
   * Update year of debian copyright.
   * Updating to standards version 4.1.3, no changes needed.
   * control: update Vcs-Browser and Vcs-Git
   * Set the Maintainer address to team+tryton-t...@tracker.debian.org.
   * Merging upstream version 2.5.0.
   * Refresh 01-remove-failing-tests.patch.
   * Disable failing test test_tornado_transport.py (Closes: #893948).
     The test seems to fail because of poor support of asyncio/tornado.
     In the hope the package still is for more use even with buggy tornado
     support than to keep it out of testing we disable also:
       tests/test_tornado_transport.py
       s.a. https://github.com/mvantellingen/python-zeep/issues/679
            https://github.com/mvantellingen/python-zeep/issues/724
Checksums-Sha1:
 fd99f435caa339aa299b332fd0501b2c0780cd57 2861 python-zeep_2.5.0-1.dsc
 426eafdfac8ef9e52075f44f4e1012d609918b5e 147413 python-zeep_2.5.0.orig.tar.gz
 62b1ceac2467eb4011b7561dd520fa0d844a30fa 8804 python-zeep_2.5.0-1.debian.tar.xz
 0d393670a4e96bbc6502f3f024763e93622bde70 73120 python-zeep_2.5.0-1_all.deb
 158293a70d656a34769a9fe9ce39e349ec70350b 9884 
python-zeep_2.5.0-1_amd64.buildinfo
 ba0984eaf7fb9968c4d97239f51c51bac405d493 73788 python3-zeep_2.5.0-1_all.deb
Checksums-Sha256:
 baba6f0543c6cc4fbced75f9a0e81907a8d20141f55387dffb9290e24fa59ca1 2861 
python-zeep_2.5.0-1.dsc
 4f9db52c7d269813fc6251da4cb050869158858aeea75a055b4550f19e52ac84 147413 
python-zeep_2.5.0.orig.tar.gz
 e7fa2829ca543a1c21653e4a5f02db5706631ac8c31af022774a799b1ccd439d 8804 
python-zeep_2.5.0-1.debian.tar.xz
 666754394cad56bd3c487724579d7661707eba588685b923161dfcf33d6ff492 73120 
python-zeep_2.5.0-1_all.deb
 9f0e7e021e559dd600d63aa890daa1142bd2093ee36560125e3b56f65805d8a3 9884 
python-zeep_2.5.0-1_amd64.buildinfo
 bd1398c1162d8298c38115b7e1fcb717aeaa5e5ce66ac584297a9e6941b5e6ce 73788 
python3-zeep_2.5.0-1_all.deb
Files:
 647604462ae10d8d35eafcf7dc6dcf1a 2861 python optional python-zeep_2.5.0-1.dsc
 0f6010a97c81ec2f9d0cf50feec44556 147413 python optional 
python-zeep_2.5.0.orig.tar.gz
 5ec7364c81c239e8c08ad3cdd234dd83 8804 python optional 
python-zeep_2.5.0-1.debian.tar.xz
 6825c5ab2417fd66b8ffe87af3f2f210 73120 python optional 
python-zeep_2.5.0-1_all.deb
 38e5b98c48b154fd181465e9ba59014f 9884 python optional 
python-zeep_2.5.0-1_amd64.buildinfo
 dbfd8402999ddb0ae8d88e2320a044f4 73788 python optional 
python3-zeep_2.5.0-1_all.deb

-----BEGIN PGP SIGNATURE-----
Comment: Signed by Mathias Behrle

iQJFBAEBCgAvFiEErCl+XEa50LYccXaB1tCb5IQFu/YFAlrEotcRHG1hdGhpYXNi
QG05cy5iaXoACgkQ1tCb5IQFu/aRehAAiIaITm8pFI0q3jsQo/TyaqDMLYE17QTv
ChPcrPt96/9H3OGfDmVo1HnZBtxBhHf+n+VpCJh3+2xhcAKNnijuyo1voynWEQQN
zeZDQ2KUlWAgU+Z8a6AyoX7oYL6KAvFocwbVQgX2ZKMEtvozVoS0tAqA0pLTnn3j
EVexetLsMY5rmkgfYciux6X2hkAADgR1lYPNKW7zb3x96cKG2yQHv+CYLd4sIYft
GAvOpSUgnXlhAJJxFBObeYJgC4sSaL5PHMC/aglEo4lxJyhTwa6dMZcGj5DpM7NJ
r+mxcUrz8DLTWvIz+goucMzmynAitEJ2N7/t49k4KEVpHi7RKRTaXq5tp3377pRX
I28BYt2IXHbpl78bdh0xNwmchKWq+mazHnbh9tx+7Zg5emRR2wxP2b3EsXlNjUEa
vVFp/L9NG/wdNsvjKCUGGHZLArUb4vidkSnla20IRwrc8jHNRVvNOR7NWPuowFOt
gzUBU3lU0sVrKmkuxrVoixtDPdzN6hoW+lZeZJ2yfMHx6AX7zpotX0MzV/RpyVwm
AQ97VmZkiwAIIffkWW64SWXVWITlw15bFfT6wqBywYkyef7wT1QgGBcVkCgmJuYo
tVViGdcuE0/oZlKuAM409eKUXS4zxAeRd6VPhD7qJI35sfJmutU73n3tJHf1Fk3a
YvpSDUnn0TA=
=b+VA
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to