From 18c4fc06670c03dc4aa899c6750716713b36f52e Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sat, 6 Mar 2021 11:53:17 +0100 Subject: distutils-r1.eclass: Use epytest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- 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 ca2ed98c8e8c..f5b151d4b8e2 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 ;; -- cgit v1.2.3-65-gdbad