commit: 2e60329b6c3cfa5b16a17cb1acdeaea33a2ae9ed
Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 21 04:56:11 2017 +0000
Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Thu Sep 21 05:14:49 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e60329b
dev-python/pytest-shutil: add pypy/pypy3 to PYTHON_COMPAT
dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild
b/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild
index 9e003f9243e..208a4abe0d9 100644
--- a/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild
+++ b/dev-python/pytest-shutil/pytest-shutil-1.2.11.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
inherit distutils-r1
@@ -31,5 +31,8 @@ DEPEND="
"
python_test() {
+ # various pickling errors, but code works to run pytest-virtualenv tests
+ [[ ${EPYTHON} == pypy ]] && return
+
esetup.py test
}