Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-itertools/
Date: Wed, 25 Jul 2018 21:10:30
Message-Id: 1532553011.e427afcc07643c78f23052aa4328f4d37d8e2a63.sbraz@gentoo
1 commit: e427afcc07643c78f23052aa4328f4d37d8e2a63
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 25 21:10:11 2018 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 21:10:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e427afcc
7
8 dev-python/jaraco-itertools: add Python 3.7, more verbose tests
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild b/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild
16 index 239e74badae..86d3ccea615 100644
17 --- a/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild
18 +++ b/dev-python/jaraco-itertools/jaraco-itertools-2.4.ebuild
19 @@ -4,7 +4,7 @@
20 EAPI=7
21
22 # Tests fail with PyPy and PyPy 3
23 -PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
24 +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} )
25
26 inherit distutils-r1
27
28 @@ -49,7 +49,7 @@ python_compile_all() {
29
30 python_test() {
31 # Override pytest options to skip flake8
32 - PYTHONPATH=. py.test --override-ini="addopts=--doctest-modules" \
33 + PYTHONPATH=. pytest -v --override-ini="addopts=--doctest-modules" \
34 || die "tests failed with ${EPYTHON}"
35 }