From 6d8908533b9be01de026a18cdb5d25e5ca0e6279 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Wed, 1 Aug 2018 14:22:56 +0200 Subject: dev-python/pypy3: Fix reenabling byte-compilation for tests --- dev-python/pypy3/pypy3-6.0.0.ebuild | 4 ++-- dev-python/pypy3/pypy3-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/pypy3/pypy3-6.0.0.ebuild b/dev-python/pypy3/pypy3-6.0.0.ebuild index 71af571b4767..d32be15922b2 100644 --- a/dev-python/pypy3/pypy3-6.0.0.ebuild +++ b/dev-python/pypy3/pypy3-6.0.0.ebuild @@ -193,11 +193,11 @@ src_compile() { src_test() { # (unset) - local -x PYTHONDONTWRITEBYTECODE + local -x PYTHONDONTWRITEBYTECODE= # Test runner requires Python 2 too. However, it spawns PyPy3 # internally so that we end up testing the correct interpreter. - "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c lib-python || die + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die } src_install() { diff --git a/dev-python/pypy3/pypy3-9999.ebuild b/dev-python/pypy3/pypy3-9999.ebuild index 61b32ea2ad54..9aabe19e3d37 100644 --- a/dev-python/pypy3/pypy3-9999.ebuild +++ b/dev-python/pypy3/pypy3-9999.ebuild @@ -220,11 +220,11 @@ src_compile() { src_test() { # (unset) - local -x PYTHONDONTWRITEBYTECODE + local -x PYTHONDONTWRITEBYTECODE= # Test runner requires Python 2 too. However, it spawns PyPy3 # internally so that we end up testing the correct interpreter. - "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c lib-python || die + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die } src_install() { -- cgit v1.2.3-65-gdbad