Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ramlfications/
Date: Wed, 26 Apr 2017 15:26:49
Message-Id: 1493220392.a6a312d0d4ab2343c26c9c3ee0941b47d6a6c314.mgorny@gentoo
1 commit: a6a312d0d4ab2343c26c9c3ee0941b47d6a6c314
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 26 15:24:20 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 26 15:26:32 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6a312d0
7
8 dev-python/ramlfications: Add missing test dep, enable tests
9
10 There are 2 test failures. One looks like an undefined missing dep, the
11 other is completely unclear.
12
13 dev-python/ramlfications/ramlfications-0.1.9.ebuild | 7 ++++++-
14 1 file changed, 6 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-python/ramlfications/ramlfications-0.1.9.ebuild b/dev-python/ramlfications/ramlfications-0.1.9.ebuild
17 index b3d33336c02..229e61c2174 100644
18 --- a/dev-python/ramlfications/ramlfications-0.1.9.ebuild
19 +++ b/dev-python/ramlfications/ramlfications-0.1.9.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 +# Copyright 1999-2017 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26 @@ -30,5 +30,10 @@ DEPEND="
27 test? (
28 dev-python/mock[${PYTHON_USEDEP}]
29 dev-python/pytest[${PYTHON_USEDEP}]
30 + dev-python/pytest-mock[${PYTHON_USEDEP}]
31 )
32 "
33 +
34 +python_test() {
35 + esetup.py test
36 +}