aboutsummaryrefslogtreecommitdiffstats
path: root/run.py
blob: 144eddef1dfc9f2e8c575c631c0ccd978a35a3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import logging.config
from onapsdk.configuration import settings
from onaptests.steps.instantiate.service_ala_carte import ServiceAlaCarteInstantiateStep



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 = ServiceAlaCarteInstantiateStep()
    service_inst.execute()