When you have a relative path you have to include the extension.
Weird.
Signed-off-by: Sage Weil <sage@redhat.com>
(cherry picked from commit
5666fd61d6dbd40be1d79354227cabd562e829ea)
Conflicts:
qa/workunits/fs/test_python.sh (not in hammer)
qa/workunits/rbd/test_librbd_python.sh (no valgrind in hammer)
#!/bin/sh -ex
-${PYTHON:-python} -m nose -v $(dirname $0)/../../../src/test/pybind/test_rados
+${PYTHON:-python} -m nose -v $(dirname $0)/../../../src/test/pybind/test_rados.py
exit 0
#!/bin/sh -ex
relpath=$(dirname $0)/../../../src/test/pybind
-nosetests -v $relpath/test_rbd
+nosetests -v $relpath/test_rbd.py
exit 0