mirror of
https://github.com/ceph/ceph
synced 2024-12-13 23:17:07 +00:00
1a7a57ac8f
Broke this in ae0c2bbb50
.
Signed-off-by: Sage Weil <sage@inktank.com>
9 lines
406 B
Bash
Executable File
9 lines
406 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_rados.py
|
|
wget -O test_rados.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=$CEPH_REF;f=src/test/pybind/test_rados.py" || \
|
|
wget -O test_rados.py "https://ceph.com/git/?p=ceph.git;a=blob_plain;hb=ref/heads/$CEPH_REF;f=src/test/pybind/test_rados.py"
|
|
nosetests -v test_rados
|
|
exit 0
|