From 96f145bca9e5190f77dd0b62ce46cc67ddb49803 Mon Sep 17 00:00:00 2001 From: harishmunjulur Date: Mon, 10 Feb 2020 12:47:30 -0800 Subject: [PATCH] Using nosetests-3 to fix "nosetests:command not found" error Signed-off-by: harishmunjulur --- qa/workunits/rbd/test_librbd_python.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/workunits/rbd/test_librbd_python.sh b/qa/workunits/rbd/test_librbd_python.sh index 656a5bd165739..21dd2478f99c4 100755 --- a/qa/workunits/rbd/test_librbd_python.sh +++ b/qa/workunits/rbd/test_librbd_python.sh @@ -5,8 +5,8 @@ relpath=$(dirname $0)/../../../src/test/pybind if [ -n "${VALGRIND}" ]; then valgrind ${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \ --errors-for-leak-kinds=definite --error-exitcode=1 \ - nosetests -v $relpath/test_rbd.py + nosetests-3 -v $relpath/test_rbd.py else - nosetests -v $relpath/test_rbd.py + nosetests-3 -v $relpath/test_rbd.py fi exit 0 -- 2.39.5