mirror of
https://github.com/ceph/ceph
synced 2025-01-25 04:24:24 +00:00
0d0128f50e
* replace nose.Skiptest with pytest.skip() * replace nose attrs with @pytest.mark * replace nose assertions * replace setUp/tearDown with setup/teardown_method Signed-off-by: Casey Bodley <cbodley@redhat.com>
6 lines
137 B
Bash
Executable File
6 lines
137 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
ceph osd pool create rbd
|
|
${PYTHON:-python3} -m pytest -v $(dirname $0)/../../../src/test/pybind/test_rados.py "$@"
|
|
exit 0
|