summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjulien zhang <zhang.jun3g@zte.com.cn>2017-09-10 14:36:46 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-09-10 14:36:46 +0000
commita9c84f32f5611880d2f566262a87fece4e76aad6 (patch)
treee1816cd36bff1442a3186dd0252f50e7e715ef35 /tests
parentdd361d8d9df7a69a4fc7c004db5b959440a024c2 (diff)
parent87be76e6c8b3024c05fe76a97a5a922486a64bb9 (diff)
Merge "Package for funectest"
Diffstat (limited to 'tests')
-rwxr-xr-xtests/parser_install.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/parser_install.sh b/tests/parser_install.sh
deleted file mode 100755
index 40b61d4..0000000
--- a/tests/parser_install.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash -e
-##############################################################################
-# Copyright (c) 2016 ZTE Corporation.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-set +e
-BASE_WORK_DIR=$(cd $(dirname $0) && pwd)
-
-OPNFV_REPO_DIR=${1:-""}
-
-# start syslog for loghander
-service rsyslog restart && echo "syslog start successfully"
-
-# install requirements for parser
-if [ -n "${OPNFV_REPO_DIR}" ]; then
- echo " OPNFV repository directory is ${OPNFV_REPO_DIR}"
- pip install -r ${OPNFV_REPO_DIR}/parser/tosca2heat/tosca-parser/requirements.txt
- pip install -r ${OPNFV_REPO_DIR}/parser/tosca2heat/heat-translator/requirements.txt
-else
- echo "No input for OPNFV repository directory, will use local directory"
- pip install -r ${BASE_WORK_DIR}/../tosca2heat/tosca-parser/requirements.txt
- pip install -r ${BASE_WORK_DIR}/../tosca2heat/heat-translator/requirements.txt
-fi
-
-# uninstall other tosca-parser and heat-translator for parser
-pip uninstall -y tosca-parser
-pip uninstall -y heat-translator
-
-# install parser
-if [ -n "${OPNFV_REPO_DIR}" ]; then
- cd ${OPNFV_REPO_DIR}/parser/tosca2heat/tosca-parser && python setup.py install
- cd ${OPNFV_REPO_DIR}/parser/tosca2heat/heat-translator && python setup.py install
-else
- cd ${BASE_WORK_DIR}/../tosca2heat/tosca-parser && python setup.py install
- cd ${BASE_WORK_DIR}/../tosca2heat/heat-translator && python setup.py install
-fi \ No newline at end of file