]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Using nosetests-3 to fix "nosetests:command not found" error
authorharishmunjulur <harishmunjulur@gmail.com>
Mon, 10 Feb 2020 20:47:30 +0000 (12:47 -0800)
committerrakeshgm <rakeshgm014@gmail.com>
Mon, 24 Feb 2020 08:57:30 +0000 (14:27 +0530)
Signed-off-by: harishmunjulur <harishmunjulur@gmail.com>
qa/workunits/rbd/test_librbd_python.sh

index 656a5bd165739d913c4d10529eb4e2ed7c63c639..21dd2478f99c4a8a476703f279044835bc1e55c0 100755 (executable)
@@ -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