aboutsummaryrefslogtreecommitdiffstats
path: root/run_status.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_status.py')
-rw-r--r--run_status.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/run_status.py b/run_status.py
deleted file mode 100644
index 82c42c9..0000000
--- a/run_status.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import logging.config
-import onaptests.utils.exceptions as onap_test_exceptions
-from onapsdk.configuration import settings
-from onaptests.scenario.status import Status
-
-
-if __name__ == "__main__":
- # logging configuration for onapsdk, it is not requested for onaptests
- # Correction requested in onapsdk to avoid having this duplicate code
- logging.config.dictConfig(settings.LOG_CONFIG)
- logger = logging.getLogger("Status Check")
-
- status = Status()
- try:
- status.run()
- status.clean()
- except onap_test_exceptions.TestConfigurationException:
- logger.error("Status Check configuration error")