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/pytest-xdist/
Date: Wed, 30 Nov 2016 18:05:55
Message-Id: 1480529128.acbe85cad32796fa5f505ed5250ff611c3ae4ecf.mgorny@gentoo
1 commit: acbe85cad32796fa5f505ed5250ff611c3ae4ecf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 13:54:56 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 18:05:28 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acbe85ca
7
8 dev-python/pytest-xdist: Enable pypy3
9
10 Test results for pypy3 only a little worse than for python3*. This thing
11 really needs a proper upstream fix.
12
13 dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild b/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild
17 index c64c6ee..42e271a 100644
18 --- a/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild
19 +++ b/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild
20 @@ -4,7 +4,7 @@
21
22 EAPI=5
23
24 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
25 +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy{,3} )
26
27 inherit distutils-r1
28
29 @@ -34,5 +34,5 @@ DEPEND="${RDEPEND}
30
31 python_test() {
32 find -name __pycache__ -exec rm -r '{}' + || die
33 - py.test -vv -x || die "Tests failed under ${EPYTHON}"
34 + py.test -vv || die "Tests failed under ${EPYTHON}"
35 }