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: eclass/
Date: Fri, 21 Jan 2022 11:47:04
Message-Id: 1642765562.a3efeba3aaa69b99061bae7ddfac5abbca2cb78b.mgorny@gentoo
1 commit: a3efeba3aaa69b99061bae7ddfac5abbca2cb78b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 22:49:55 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 11:46:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3efeba3
7
8 distutils-r1.eclass: Also run nosetests via EPYTHON
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/distutils-r1.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
16 index d7cea6a512f6..a9c86ef55124 100644
17 --- a/eclass/distutils-r1.eclass
18 +++ b/eclass/distutils-r1.eclass
19 @@ -1068,7 +1068,7 @@ distutils-r1_python_test() {
20
21 case ${_DISTUTILS_TEST_RUNNER} in
22 nose)
23 - nosetests -v "${@}"
24 + "${EPYTHON}" -m nose -v "${@}"
25 ;;
26 pytest)
27 epytest