mirror of
https://github.com/ceph/ceph
synced 2024-12-19 18:02:46 +00:00
55bd7687bf
This works now that watch-notify has been reworked a bit. Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
9 lines
394 B
Bash
Executable File
9 lines
394 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
|
|
wget -O test_rbd.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/pybind/test_rbd.py" || \
|
|
wget -O test_rbd.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=ref/heads/$CEPH_REF;f=src/test/pybind/test_rbd.py"
|
|
nosetests -v test_rbd
|
|
exit 0
|