commit: bd1831cfd54023607701a2d62a181a357eda3b40
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 1 12:22:41 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 1 12:24:14 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1831cf
dev-python/pypy3-bin: Fix reenabling byte-compilation for tests
dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild
b/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild
index 89c4fd6f16a..262971abd21 100644
--- a/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild
+++ b/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild
@@ -131,11 +131,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() {