From 26868e34de78e0b94835a9491294a27cf33ed1e3 Mon Sep 17 00:00:00 2001 From: yangyan Date: Tue, 3 Sep 2019 10:03:50 +0800 Subject: [PATCH] Update project version of lcm to 1.3.5 Change-Id: I3f4341a0c149d6e98c6360b7544c487a6292ead8 Issue-ID: VFC-1507 Signed-off-by: yangyan --- docker/build_image.sh | 2 +- lcm/ns/tests/test_ns_get.py | 3 +++ pom.xml | 2 +- version.properties | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docker/build_image.sh b/docker/build_image.sh index 6bf9648d..1f9b6915 100644 --- a/docker/build_image.sh +++ b/docker/build_image.sh @@ -6,7 +6,7 @@ cd ${DOCKER_BUILD_DIR} BUILD_ARGS="--no-cache" ORG="onap" -VERSION="1.3.4" +VERSION="1.3.5" PROJECT="vfc" IMAGE="nslcm" DOCKER_REPOSITORY="nexus3.onap.org:10003" diff --git a/lcm/ns/tests/test_ns_get.py b/lcm/ns/tests/test_ns_get.py index 3ab4906b..30032c64 100644 --- a/lcm/ns/tests/test_ns_get.py +++ b/lcm/ns/tests/test_ns_get.py @@ -23,6 +23,9 @@ class TestNsQuery(TestCase): NSInstModel(id=1, nsd_id=11, name='test01').save() NSInstModel(id=2, nsd_id=22, name='test02').save() + def tearDown(self): + NSInstModel.objects.all().delete() + def test_query_ns_by_nsinstance_id(self): response = self.client.get("/api/nslcm/v1/ns/1") self.assertEqual(status.HTTP_200_OK, response.status_code) diff --git a/pom.xml b/pom.xml index 175c4907..545673ad 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ 4.0.0 org.onap.vfc.nfvo.lcm vfc-nfvo-lcm - 1.3.4-SNAPSHOT + 1.3.5-SNAPSHOT pom vfc-nfvo-lcm vfc nfvo lcm diff --git a/version.properties b/version.properties index 6456604d..d1d81a00 100644 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=1 minor=3 -patch=4 +patch=5 base_version=${major}.${minor}.${patch} -- 2.16.6