From: Michał Górny Date: Wed, 1 Aug 2018 13:32:47 +0000 (+0200) Subject: dev-python/pypy-bin: Disable more problematic tests X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=bd8453f541b60d86b5a64c8dd0becf34c64c6e01;p=gentoo.git dev-python/pypy-bin: Disable more problematic tests Bug: https://bugs.gentoo.org/637208 --- diff --git a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild index 312b592c2706..2330fd7634d4 100644 --- a/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild +++ b/dev-python/pypy-bin/pypy-bin-6.0.0.ebuild @@ -150,7 +150,18 @@ src_test() { # (unset) local -x PYTHONDONTWRITEBYTECODE= - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die + local ignored_tests=( + # network + --ignore=lib-python/2.7/test/test_urllibnet.py + --ignore=lib-python/2.7/test/test_urllib2net.py + # lots of free space + --ignore=lib-python/2.7/test/test_zipfile64.py + # no module named 'worker' -- a lot + --ignore=lib-python/2.7/test/test_xpickle.py + ) + + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv \ + "${ignored_tests[@]}" lib-python || die } src_install() {