diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-08-01 14:19:26 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-08-01 14:24:13 +0200 |
commit | f10fe39888c3da22680e76269572b044fe3f02f5 (patch) | |
tree | 6ead6ca227765611ddc1c8ea6de59f292f33025b /dev-python/pypy | |
parent | dev-python/pypy-bin: Fix reenabling byte-compilation for tests (diff) | |
download | gentoo-f10fe39888c3da22680e76269572b044fe3f02f5.tar.gz gentoo-f10fe39888c3da22680e76269572b044fe3f02f5.tar.bz2 gentoo-f10fe39888c3da22680e76269572b044fe3f02f5.zip |
dev-python/pypy: Fix reenabling byte-compilation for tests
Bug: https://bugs.gentoo.org/654242
Diffstat (limited to 'dev-python/pypy')
-rw-r--r-- | dev-python/pypy/pypy-6.0.0.ebuild | 4 | ||||
-rw-r--r-- | 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 286b7be69e1d..63c1511a472f 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 c0bc0a26454b..d3d73e720f22 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() { |