commit: f10fe39888c3da22680e76269572b044fe3f02f5 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Wed Aug 1 12:19:26 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Aug 1 12:24:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f10fe398
dev-python/pypy: Fix reenabling byte-compilation for tests Bug: https://bugs.gentoo.org/654242 dev-python/pypy/pypy-6.0.0.ebuild | 4 ++-- dev-python/pypy/pypy-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/pypy/pypy-6.0.0.ebuild b/dev-python/pypy/pypy-6.0.0.ebuild index 286b7be69e1..63c1511a472 100644 --- a/dev-python/pypy/pypy-6.0.0.ebuild +++ b/dev-python/pypy/pypy-6.0.0.ebuild @@ -226,9 +226,9 @@ src_compile() { src_test() { # (unset) - local -x PYTHONDONTWRITEBYTECODE + local -x PYTHONDONTWRITEBYTECODE= - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c lib-python || die + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die } src_install() { diff --git a/dev-python/pypy/pypy-9999.ebuild b/dev-python/pypy/pypy-9999.ebuild index c0bc0a26454..d3d73e720f2 100644 --- a/dev-python/pypy/pypy-9999.ebuild +++ b/dev-python/pypy/pypy-9999.ebuild @@ -232,9 +232,9 @@ src_compile() { src_test() { # (unset) - local -x PYTHONDONTWRITEBYTECODE + local -x PYTHONDONTWRITEBYTECODE= - ./pypy-c ./pypy/test_all.py --pypy=./pypy-c lib-python || die + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv lib-python || die } src_install() {
