From 2e60329b6c3cfa5b16a17cb1acdeaea33a2ae9ed Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Thu, 21 Sep 2017 00:56:11 -0400 Subject: [PATCH] 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 9e003f9243ec8..208a4abe0d994 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 }