From: harishmunjulur Date: Mon, 10 Feb 2020 20:47:30 +0000 (-0800) Subject: Using nosetests-3 to fix "nosetests:command not found" error X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=11e3008fa0f2aa3504f6903f849efa147c9a3b1b;p=ceph.git Using nosetests-3 to fix "nosetests:command not found" error Signed-off-by: harishmunjulur --- 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