diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-11-30 14:54:56 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-11-30 19:05:28 +0100 |
commit | acbe85cad32796fa5f505ed5250ff611c3ae4ecf (patch) | |
tree | b9fb782908ed0d6991b29a60c96ed95076e4dc58 /dev-python | |
parent | dev-python/readme: Enable pypy3 (diff) | |
download | gentoo-acbe85cad32796fa5f505ed5250ff611c3ae4ecf.tar.gz gentoo-acbe85cad32796fa5f505ed5250ff611c3ae4ecf.tar.bz2 gentoo-acbe85cad32796fa5f505ed5250ff611c3ae4ecf.zip |
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.
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild | 4 |
1 files 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 c64c6ee6de85..42e271a87f53 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}" } |