blob: 847e15ea9d83ce4ad10d9b24fa1a2354bfeb2f4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from pathlib import Path
from onaptests.utils.resources import get_resource_location
from .settings import * # noqa
SERVICE_NAME = "CDS blueprint enrichment"
CLEANUP_FLAG = True
CDS_DD_FILE = Path(get_resource_location("templates/artifacts/dd.json"))
CDS_CBA_UNENRICHED = Path(get_resource_location("templates/artifacts/PNF_DEMO.zip"))
CDS_CBA_ENRICHED = "/tmp/PNF_DEMO_enriched.zip"
|