commit: 18c4fc06670c03dc4aa899c6750716713b36f52e Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Mar 6 10:53:17 2021 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Mar 8 07:52:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c4fc06
distutils-r1.eclass: Use epytest Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> eclass/distutils-r1.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index ca2ed98c8e8..f5b151d4b8e 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -435,11 +435,11 @@ distutils_enable_tests() { if [[ ${do_install} ]]; then python_test() { distutils_install_for_testing --via-root - pytest -vv || die "Tests fail with ${EPYTHON}" + epytest } else python_test() { - pytest -vv || die "Tests fail with ${EPYTHON}" + epytest } fi ;;