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/
Date: Wed, 30 Nov 2016 18:06:03
Message-Id: 1480529141.b8e92c33ba86587922d7e25858b272784aea14e3.mgorny@gentoo
1 commit: b8e92c33ba86587922d7e25858b272784aea14e3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 17:27:00 2016 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 18:05:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e92c33
7
8 dev-python/pytest: Enable pypy3
9
10 The tests are no worse than on other implementations.
11
12 dev-python/pytest/pytest-3.0.3.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/pytest/pytest-3.0.3.ebuild b/dev-python/pytest/pytest-3.0.3.ebuild
16 index bb11033..d154d2e 100644
17 --- a/dev-python/pytest/pytest-3.0.3.ebuild
18 +++ b/dev-python/pytest/pytest-3.0.3.ebuild
19 @@ -4,7 +4,7 @@
20
21 EAPI=5
22
23 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
24 +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy{,3} )
25
26 inherit distutils-r1
27
28 @@ -53,7 +53,7 @@ python_prepare_all() {
29 python_test() {
30 # test_nose.py not written to suit py3.2 in pypy3
31 if [[ "${EPYTHON}" == pypy3 ]]; then
32 - "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py -x -v \
33 + "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py -vv \
34 --ignore=testing/BUILD_nose.py \
35 || die "tests failed with ${EPYTHON}"
36 else