aboutsummaryrefslogtreecommitdiffstats
path: root/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'run.py')
-rw-r--r--run.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/run.py b/run.py
deleted file mode 100644
index 22bdb25..0000000
--- a/run.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import logging.config
-from onapsdk.configuration import settings
-from onaptests.steps.instantiate.service_ala_carte import YamlTemplateServiceAlaCarteInstantiateStep
-
-
-
-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)
-
- service_inst = YamlTemplateServiceAlaCarteInstantiateStep()
- #service_inst = ServiceAlaCarteInstantiateStep()
- service_inst.execute()