diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-11-18 11:20:59 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-11-23 13:42:20 +0000 |
commit | ac7ed508cd0ae434ac9237196a42045c5e7d6e92 (patch) | |
tree | 081261c442c5934710317a0cc4f143cb9282aff0 /src/onaptests/configuration/cba_enrichment_settings.py | |
parent | 1186e5a639393cb90c73dd9b1c7bcd503fb2af3b (diff) |
CDS onboarding steps and simple CBA enrichment scenarion.
Steps for data dictionary upload and CBA enrichment
Issue-ID: TEST-245
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: If7f3346c79ae97e35b21e919435270a0c54f77dd
Diffstat (limited to 'src/onaptests/configuration/cba_enrichment_settings.py')
-rw-r--r-- | src/onaptests/configuration/cba_enrichment_settings.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/onaptests/configuration/cba_enrichment_settings.py b/src/onaptests/configuration/cba_enrichment_settings.py new file mode 100644 index 0000000..0770d8d --- /dev/null +++ b/src/onaptests/configuration/cba_enrichment_settings.py @@ -0,0 +1,11 @@ +from pathlib import Path + +from .settings import * # pylint: disable=W0614 + +SERVICE_NAME = "CDS blueprint enrichment" + +CLEANUP_FLAG = True + +CDS_DD_FILE = Path(Path(__file__).parent.parent, "templates/artifacts/dd.json") +CDS_CBA_UNENRICHED = Path(Path(__file__).parent.parent, "templates/artifacts/PNF_DEMO.zip") +CDS_CBA_ENRICHED = "/tmp/PNF_DEMO_enriched.zip" |