blob: 6e39b95a4d186d9a54a14531b5c31a8c55ac90d9 (
plain)
1
2
3
4
5
6
|
#!/bin/sh -ex
# Running as root because the filesystem root directory will be
# owned by uid 0, and that's where we're writing.
sudo python3 -m pytest -v $(dirname $0)/../../../src/test/pybind/test_cephfs.py
exit 0
|