desktop-packages team mailing list archive
-
desktop-packages team
-
Mailing list archive
-
Message #160113
[Bug 1303550] Re: Improve diagnostics in self-test
This bug was fixed in the package python-distutils-extra - 2.39-1
---------------
python-distutils-extra (2.39-1) unstable; urgency=medium
* test/auto.py: Show exactly which modules are missing. Thanks Daniel Macks!
(LP: #1303550)
* Ignore comment in second line when parsing *.ui files. Thanks marmuta!
(LP: #1393247)
* Drop obsolete X-Python-Version.
* Convert build systemd to pybuild.
* Bump Standards-Version to 3.9.6.
* debian/copyright: Rename field to "Format:".
-- Martin Pitt <mpitt@xxxxxxxxxx> Wed, 03 Feb 2016 09:56:55 +0100
** Changed in: python-distutils-extra (Ubuntu)
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to python-distutils-extra in Ubuntu.
https://bugs.launchpad.net/bugs/1303550
Title:
Improve diagnostics in self-test
Status in python-distutils-extra package in Ubuntu:
Fix Released
Bug description:
p-d-e-2.38 test/auto.py failed a test for me:
======================================================================
FAIL: test_requires_provides (__main__.T)
automatic requires/provides
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/auto.py", line 678, in test_requires_provides
self.fail('You need to have pkg_resources, httplib2, and gi.repository.GLib installed for this test suite to work')
AssertionError: You need to have pkg_resources, httplib2, and gi.repository.GLib installed for this test suite to work
----------------------------------------------------------------------
There's no info about which part of the multiprong requirement failed.
Instead of a single "try" for multiple imports, a loop over them would
make it easy to emit the specific package that failed. Wit the
attached patch, I get:
======================================================================
FAIL: test_requires_provides (__main__.T)
automatic requires/provides
----------------------------------------------------------------------
Traceback (most recent call last):
File "test/auto.py", line 677, in test_requires_provides
self.fail('You need to have %s installed for this test suite to work' % needed_pkg)
AssertionError: You need to have gi.repository.GLib installed for this test suite to work
----------------------------------------------------------------------
So now I know exactly which dep is missing (or if I think I have it,
which is broken).
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-distutils-extra/+bug/1303550/+subscriptions