diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2017-02-14 19:59:18 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2017-02-14 20:00:23 +0100 |
commit | 72a47e6318ba66da4b8a3e41d73cb7a0d9728854 (patch) | |
tree | 4d7848f346351d4af43dbdbe05c412807a160ce2 /dev-python/nosexcover/nosexcover-1.0.11.ebuild | |
parent | sys-libs/freeipmi: remove unused init file (diff) | |
download | gentoo-72a47e6318ba66da4b8a3e41d73cb7a0d9728854.tar.gz gentoo-72a47e6318ba66da4b8a3e41d73cb7a0d9728854.tar.bz2 gentoo-72a47e6318ba66da4b8a3e41d73cb7a0d9728854.zip |
dev-python/nosexcover: Version bump to 1.0.11
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-python/nosexcover/nosexcover-1.0.11.ebuild')
-rw-r--r-- | dev-python/nosexcover/nosexcover-1.0.11.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-python/nosexcover/nosexcover-1.0.11.ebuild b/dev-python/nosexcover/nosexcover-1.0.11.ebuild new file mode 100644 index 000000000000..f1127fbf3071 --- /dev/null +++ b/dev-python/nosexcover/nosexcover-1.0.11.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Extends nose.plugins.cover to add Cobertura-style XML reports" +HOMEPAGE="https://github.com/cmheisel/nose-xcover/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + >=dev-python/coverage-3.4[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +python_test() { + nosetests -v nosexcover/tests.py || die +} |