commit: ffdd524ffd84793527e5e723026b35ce8f30310c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 17 19:37:49 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 17 20:51:11 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffdd524f
dev-python/embedly: Add test running code
dev-python/embedly/embedly-0.5.0-r1.ebuild | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/dev-python/embedly/embedly-0.5.0-r1.ebuild
b/dev-python/embedly/embedly-0.5.0-r1.ebuild
index e26065a3f35..23a3bd163bb 100644
--- a/dev-python/embedly/embedly-0.5.0-r1.ebuild
+++ b/dev-python/embedly/embedly-0.5.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -16,9 +16,17 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86"
+IUSE="test"
RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' -2) )"
S="${WORKDIR}/${MY_P}"
+
# Testsuite relies upon connection to various sites on the net
+RESTRICT="test"
+
+python_test() {
+ esetup.py test
+}