diff options
author | Patrick Lauer <patrick@gentoo.org> | 2015-03-19 05:34:16 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2015-03-19 05:34:16 +0000 |
commit | 90f8eefbf94c91eeed09c1d88bde20830b678c02 (patch) | |
tree | 5e0880d0fe88b397d1e28f646fa1b6cd328f5d48 /dev-python/logilab-common | |
parent | Bump (diff) | |
download | gentoo-2-90f8eefbf94c91eeed09c1d88bde20830b678c02.tar.gz gentoo-2-90f8eefbf94c91eeed09c1d88bde20830b678c02.tar.bz2 gentoo-2-90f8eefbf94c91eeed09c1d88bde20830b678c02.zip |
Remove obsolete fixes for testphase that now fail themselves #543750
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/logilab-common')
-rw-r--r-- | dev-python/logilab-common/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/logilab-common/logilab-common-0.63.2.ebuild | 21 |
2 files changed, 5 insertions, 21 deletions
diff --git a/dev-python/logilab-common/ChangeLog b/dev-python/logilab-common/ChangeLog index f25bb0556d92..17bf94d60fa1 100644 --- a/dev-python/logilab-common/ChangeLog +++ b/dev-python/logilab-common/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/logilab-common # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.154 2015/03/13 23:50:54 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/ChangeLog,v 1.155 2015/03/19 05:34:16 patrick Exp $ + + 19 Mar 2015; Patrick Lauer <patrick@gentoo.org> logilab-common-0.63.2.ebuild: + Remove obsolete fixes for testphase that now fail themselves #543750 13 Mar 2015; Ian Delaney <idella4@gentoo.org> logilab-common-0.63.2.ebuild: return dep needed for tests diff --git a/dev-python/logilab-common/logilab-common-0.63.2.ebuild b/dev-python/logilab-common/logilab-common-0.63.2.ebuild index f2ac13db130a..8975ba573d29 100644 --- a/dev-python/logilab-common/logilab-common-0.63.2.ebuild +++ b/dev-python/logilab-common/logilab-common-0.63.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.7 2015/03/13 23:50:54 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.63.2.ebuild,v 1.8 2015/03/19 05:34:16 patrick Exp $ EAPI=5 @@ -58,25 +58,6 @@ python_test() { # Make sure that the tests use correct modules. pushd "${TEST_DIR}"/lib > /dev/null || die - - if python_is_python3; then - # http://www.logilab.org/ticket/241813, 241807 - # The suite can be made to pass under py3.4 by disabling the class MxDateTC in unittest_date.py - # These are covered by issue 241813. Any and all methods to disable them temporarily - # (assuming they will ever be fixed) are simply cumbersome in the extreme, thus impractical. - # The failures are specific to py3.4's unittest's parameters in _addSkip and not the package itself. - if [[ "${EPYTHON}" == "python3.4" ]]; then - sed -e 's:test_any:_&:' \ - -i $(find . -name unittest_compat.py) || die - sed -e 's:test_add_days_worked:_&:' \ - -i $(find . -name unittest_date.py) || die - fi - # Still one related failure under py3.4 - # Returns a clean run under py3.3, though leaving fails exposed in this bump of 0.62.1 - # https://www.logilab.org/ticket/269904 - # Also unittest_date.py known to fail related to absence of installed egenix-mx-base - # rm $(find . -name unittest_umessage.py) || die - fi "${TEST_DIR}"/scripts/pytest || die "Tests fail with ${EPYTHON}" popd > /dev/null || die } |