summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-08-01 14:22:41 +0200
committerMichał Górny <mgorny@gentoo.org>2018-08-01 14:24:14 +0200
commitbd1831cfd54023607701a2d62a181a357eda3b40 (patch)
tree434a91df363410a6542a2edcdb673c01e0aac978
parentdev-python/pypy: Fix reenabling byte-compilation for tests (diff)
downloadgentoo-bd1831cfd54023607701a2d62a181a357eda3b40.tar.gz
gentoo-bd1831cfd54023607701a2d62a181a357eda3b40.tar.bz2
gentoo-bd1831cfd54023607701a2d62a181a357eda3b40.zip
dev-python/pypy3-bin: Fix reenabling byte-compilation for tests
-rw-r--r--dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild4
1 files 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 89c4fd6f16ac..262971abd21b 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() {