mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
dev-python/URLObject: include tests
Use github-generated tarball instead of pypi because the latter lacks test subdirectory. Run tests using nosetests.
This commit is contained in:
33
dev-python/URLObject/URLObject-2.4.2-r1.ebuild
Normal file
33
dev-python/URLObject/URLObject-2.4.2-r1.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_4} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
GITHUB_P=${P,,}
|
||||
DESCRIPTION="A utility class for manipulating URLs"
|
||||
HOMEPAGE="https://pypi.python.org/pypi/URLObject"
|
||||
# note: pypi tarball lacks tests
|
||||
# https://github.com/zacharyvoase/urlobject/issues/39
|
||||
SRC_URI="https://github.com/zacharyvoase/urlobject/archive/v${PV}.tar.gz -> ${GITHUB_P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SLOT="0"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( dev-python/nose[${PYTHON_USEDEP}] )
|
||||
"
|
||||
|
||||
S=${WORKDIR}/${GITHUB_P}
|
||||
|
||||
python_test() {
|
||||
nosetests -v || die "Tests fail with ${EPYTHON}"
|
||||
}
|
||||
Reference in New Issue
Block a user