diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-01-20 23:49:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-01-21 12:46:02 +0100 |
commit | a3efeba3aaa69b99061bae7ddfac5abbca2cb78b (patch) | |
tree | b245c585547109e306e9ab02d8c43c66c1b02d00 /eclass | |
parent | sys-kernel/vanilla-kernel: Remove old (diff) | |
download | gentoo-a3efeba3aaa69b99061bae7ddfac5abbca2cb78b.tar.gz gentoo-a3efeba3aaa69b99061bae7ddfac5abbca2cb78b.tar.bz2 gentoo-a3efeba3aaa69b99061bae7ddfac5abbca2cb78b.zip |
distutils-r1.eclass: Also run nosetests via EPYTHON
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index d7cea6a512f6..a9c86ef55124 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1068,7 +1068,7 @@ distutils-r1_python_test() { case ${_DISTUTILS_TEST_RUNNER} in nose) - nosetests -v "${@}" + "${EPYTHON}" -m nose -v "${@}" ;; pytest) epytest |