mirror of
https://github.com/ceph/ceph
synced 2024-12-30 07:23:11 +00:00
3dd65a897b
These python tests aren't installed, so they need to be downloaded Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
7 lines
184 B
Bash
Executable File
7 lines
184 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
CEPH_REF=${CEPH_REF:-master}
|
|
wget -q https://raw.github.com/ceph/ceph/$CEPH_REF/src/test/pybind/test_rbd.py
|
|
nosetests -v -e '.*test_remove_with_watcher' test_rbd
|
|
exit 0
|