commit: acbe85cad32796fa5f505ed5250ff611c3ae4ecf
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 13:54:56 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 18:05:28 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acbe85ca
dev-python/pytest-xdist: Enable pypy3
Test results for pypy3 only a little worse than for python3*. This thing
really needs a proper upstream fix.
dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild
b/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild
index c64c6ee..42e271a 100644
--- a/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild
+++ b/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
+PYTHON_COMPAT=( python2_7 python3_{4,5} pypy{,3} )
inherit distutils-r1
@@ -34,5 +34,5 @@ DEPEND="${RDEPEND}
python_test() {
find -name __pycache__ -exec rm -r '{}' + || die
- py.test -vv -x || die "Tests failed under ${EPYTHON}"
+ py.test -vv || die "Tests failed under ${EPYTHON}"
}