Add ORAN Python SDK first draft
[it/dep.git] / smo-install / test / pythonsdk / unit-tests / __init__.py
1 #!/usr/bin/env python3
2 # SPDX-License-Identifier: Apache-2.0
3 """Main test module."""
4
5 import logging
6
7 logging.basicConfig(
8     level=logging.DEBUG,
9     format='%(asctime)s - %(name)-23s - %(levelname)-8s - %(message)s')
10 logging.captureWarnings(True)