aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-09-03 10:03:50 +0800
committerYan Yang <yangyanyj@chinamobile.com>2019-09-03 02:06:44 +0000
commit26868e34de78e0b94835a9491294a27cf33ed1e3 (patch)
tree5cab41059bd3e11725f9ce1bfd4088aadf10b0f8
parentfbc82d28cf89b6dcdce81f4a7ae0bee0012bae6d (diff)
Update project version of lcm to 1.3.5
Change-Id: I3f4341a0c149d6e98c6360b7544c487a6292ead8 Issue-ID: VFC-1507 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
-rw-r--r--docker/build_image.sh2
-rw-r--r--lcm/ns/tests/test_ns_get.py3
-rw-r--r--pom.xml2
-rw-r--r--version.properties2
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 @@
<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>
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}