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/fonttools/
Date: Mon, 31 Jan 2022 00:26:30
Message-Id: 1643588632.65f11b0e26e676a2dd1a96cc9c540518fec3215c.mgorny@gentoo
1 commit: 65f11b0e26e676a2dd1a96cc9c540518fec3215c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 30 11:51:11 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 31 00:23:52 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f11b0e
7
8 dev-python/fonttools: Run a single Xvfb
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fonttools/fonttools-4.29.0.ebuild | 8 ++++++--
13 1 file changed, 6 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/fonttools/fonttools-4.29.0.ebuild b/dev-python/fonttools/fonttools-4.29.0.ebuild
16 index e91a05a05cd3..61180d63050f 100644
17 --- a/dev-python/fonttools/fonttools-4.29.0.ebuild
18 +++ b/dev-python/fonttools/fonttools-4.29.0.ebuild
19 @@ -48,7 +48,11 @@ src_configure() {
20 export FONTTOOLS_WITH_CYTHON=1
21 }
22
23 -python_test() {
24 +src_test() {
25 # virtualx used when matplotlib is installed causing plot module tests to run
26 - virtx epytest Tests fontTools
27 + virtx distutils-r1_src_test
28 +}
29 +
30 +python_test() {
31 + epytest Tests fontTools || die "Tests failed with ${EPYTHON}"
32 }