Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypy3-bin/
Date: Wed, 01 Aug 2018 12:24:30
Message-Id: 1533126254.bd1831cfd54023607701a2d62a181a357eda3b40.mgorny@gentoo
1 commit: bd1831cfd54023607701a2d62a181a357eda3b40
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 12:22:41 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 12:24:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1831cf
7
8 dev-python/pypy3-bin: Fix reenabling byte-compilation for tests
9
10 dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild | 4 ++--
11 1 file changed, 2 insertions(+), 2 deletions(-)
12
13 diff --git a/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild b/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild
14 index 89c4fd6f16a..262971abd21 100644
15 --- a/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild
16 +++ b/dev-python/pypy3-bin/pypy3-bin-6.0.0.ebuild
17 @@ -131,11 +131,11 @@ src_compile() {
18
19 src_test() {
20 # (unset)
21 - local -x PYTHONDONTWRITEBYTECODE
22 + local -x PYTHONDONTWRITEBYTECODE=
23
24 # Test runner requires Python 2 too. However, it spawns PyPy3
25 # internally so that we end up testing the correct interpreter.
26 - "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c lib-python || die
27 + "${PYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die
28 }
29
30 src_install() {