Update project version of lcm to 1.3.5 77/94777/2
authoryangyan <yangyanyj@chinamobile.com>
Tue, 3 Sep 2019 02:03:50 +0000 (10:03 +0800)
committerYan Yang <yangyanyj@chinamobile.com>
Tue, 3 Sep 2019 02:06:44 +0000 (02:06 +0000)
Change-Id: I3f4341a0c149d6e98c6360b7544c487a6292ead8
Issue-ID: VFC-1507
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
docker/build_image.sh
lcm/ns/tests/test_ns_get.py
pom.xml
version.properties

index 6bf9648..1f9b691 100644 (file)
@@ -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"
index 3ab4906..30032c6 100644 (file)
@@ -23,6 +23,9 @@ class TestNsQuery(TestCase):
         NSInstModel(id=1, nsd_id=11, name='test01').save()\r
         NSInstModel(id=2, nsd_id=22, name='test02').save()\r
 \r
+    def tearDown(self):\r
+        NSInstModel.objects.all().delete()\r
+\r
     def test_query_ns_by_nsinstance_id(self):\r
         response = self.client.get("/api/nslcm/v1/ns/1")\r
         self.assertEqual(status.HTTP_200_OK, response.status_code)\r
diff --git a/pom.xml b/pom.xml
index 175c490..545673a 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.onap.vfc.nfvo.lcm</groupId>
     <artifactId>vfc-nfvo-lcm</artifactId>
-    <version>1.3.4-SNAPSHOT</version>
+    <version>1.3.5-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>vfc-nfvo-lcm</name>
     <description>vfc nfvo lcm</description>
index 6456604..d1d81a0 100644 (file)
@@ -4,7 +4,7 @@
 
 major=1
 minor=3
-patch=4
+patch=5
 
 base_version=${major}.${minor}.${patch}