diff options
author | George Paraskevopoulos <geopar@intracom-telecom.com> | 2016-12-07 14:12:16 +0200 |
---|---|---|
committer | Manuel Buil <manuelbuil87@gmail.com> | 2016-12-08 14:57:16 +0000 |
commit | 98f71874a230bf60dc78433ff6833b74e4f7b21c (patch) | |
tree | 96d899d89e2b6eb9eb803b6064a99d3fec8ac090 /tests/functest/odl-sfc/sfc-test2.py | |
parent | 7af574e792b1433191b5e470782fd09d4fd5a274 (diff) |
Move vnfd yaml files into separate directory
Create vnfd-templates directory where all TOSCA VNFD files will be
stored.
Change-Id: I3286da41800f9a42e5a3ffce51ee6cc6809b734e
Signed-off-by: George Paraskevopoulos <geopar@intracom-telecom.com>
Diffstat (limited to 'tests/functest/odl-sfc/sfc-test2.py')
-rwxr-xr-x | tests/functest/odl-sfc/sfc-test2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functest/odl-sfc/sfc-test2.py b/tests/functest/odl-sfc/sfc-test2.py index 2c64a3d6..5e97e698 100755 --- a/tests/functest/odl-sfc/sfc-test2.py +++ b/tests/functest/odl-sfc/sfc-test2.py @@ -45,8 +45,8 @@ SECGROUP_NAME = "example-sg" SECGROUP_DESCR = "Example Security group" SFC_TEST_DIR = os.path.join(REPO_PATH, "tests/functest/odl-sfc/") TACKER_SCRIPT = os.path.join(SFC_TEST_DIR, "sfc_tacker_test2.bash") -TACKER_VNFD1 = os.path.join(SFC_TEST_DIR, "test2-vnfd1.yaml") -TACKER_VNFD2 = os.path.join(SFC_TEST_DIR, "test2-vnfd2.yaml") +TACKER_VNFD1 = os.path.join(SFC_TEST_DIR, "vnfd-templates", "test2-vnfd1.yaml") +TACKER_VNFD2 = os.path.join(SFC_TEST_DIR, "vnfd-templates", "test2-vnfd2.yaml") ssh_options = '-q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' json_results = {"tests": 4, "failures": 0} |