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/pypy-bin/
Date: Wed, 01 Aug 2018 13:34:37
Message-Id: 1533130461.bd8453f541b60d86b5a64c8dd0becf34c64c6e01.mgorny@gentoo
1 commit: bd8453f541b60d86b5a64c8dd0becf34c64c6e01
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 13:32:47 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 13:34:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd8453f5
7
8 dev-python/pypy-bin: Disable more problematic tests
9
10 Bug: https://bugs.gentoo.org/637208
11
12 dev-python/pypy-bin/pypy-bin-6.0.0.ebuild | 13 ++++++++++++-
13 1 file changed, 12 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild
16 index 312b592c270..2330fd7634d 100644
17 --- a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild
18 +++ b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild
19 @@ -150,7 +150,18 @@ src_test() {
20 # (unset)
21 local -x PYTHONDONTWRITEBYTECODE=
22
23 - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die
24 + local ignored_tests=(
25 + # network
26 + --ignore=lib-python/2.7/test/test_urllibnet.py
27 + --ignore=lib-python/2.7/test/test_urllib2net.py
28 + # lots of free space
29 + --ignore=lib-python/2.7/test/test_zipfile64.py
30 + # no module named 'worker' -- a lot
31 + --ignore=lib-python/2.7/test/test_xpickle.py
32 + )
33 +
34 + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv \
35 + "${ignored_tests[@]}" lib-python || die
36 }
37
38 src_install() {