dev-python/pypy: Disable more problematic tests

Bug: https://bugs.gentoo.org/654242
This commit is contained in:
Michał Górny
2018-08-01 15:33:10 +02:00
parent bd8453f541
commit 34ad2d0e90
2 changed files with 24 additions and 2 deletions

View File

@@ -228,7 +228,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() {

View File

@@ -234,7 +234,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() {