#!/usr/bin/python3

# Test that Ceph Python 3 modules can be imported OK
import warnings
# Ignore deprecation warning when importing from collections
# this is fixed upstream in Nautilus and may get backported.
warnings.filterwarnings('ignore', 'Using or importing the ABCs from \'collections\' instead of from \'collections.abc\' is deprecated, and in 3.8 it will stop working')
import rbd
import rados
import rgw
import cephfs
import ceph_volume_client
import ceph_argparse
import ceph_daemon

print("python3-ceph: OK")
