summaryrefslogtreecommitdiffstats
path: root/testapi
diff options
context:
space:
mode:
authorJose Lausuch <jose.lausuch@ericsson.com>2017-03-23 09:11:01 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-03-23 09:11:01 +0000
commitd2917a084a93e7172b7295d98fc023d43a2c4ed5 (patch)
treea4469f3d260df05c82dab9b335a86db5e1cfb11a /testapi
parenteb6e1770d332d23f90d113196e24346816974f01 (diff)
parent3fc355eb16dfbd7ce7df25eb0bc5fe138a20b85b (diff)
Merge "make unittest execution more user-friendly"
Diffstat (limited to 'testapi')
-rwxr-xr-xtestapi/run_test.sh14
-rw-r--r--testapi/test-requirements.txt5
2 files changed, 9 insertions, 10 deletions
diff --git a/testapi/run_test.sh b/testapi/run_test.sh
index 4efc7af..1e05dd6 100755
--- a/testapi/run_test.sh
+++ b/testapi/run_test.sh
@@ -8,15 +8,17 @@ SCRIPTDIR=`dirname $0`
echo "Running unit tests..."
# Creating virtual environment
-virtualenv $SCRIPTDIR/testapi_venv
-source $SCRIPTDIR/testapi_venv/bin/activate
+if [ ! -z $VIRTUAL_ENV ]; then
+ venv=$VIRTUAL_ENV
+else
+ venv=$SCRIPTDIR/.venv
+ virtualenv $venv
+fi
+source $venv/bin/activate
# Install requirements
pip install -r $SCRIPTDIR/requirements.txt
-pip install coverage
-pip install nose>=1.3.1
-pip install pytest
-pip install mock
+pip install -r $SCRIPTDIR/test-requirements.txt
find . -type f -name "*.pyc" -delete
diff --git a/testapi/test-requirements.txt b/testapi/test-requirements.txt
index 4633ad6..645687b 100644
--- a/testapi/test-requirements.txt
+++ b/testapi/test-requirements.txt
@@ -2,10 +2,7 @@
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
-tox
mock
pytest
-pytest-cov
coverage
-pykwalify
-pip_check_reqs
+nose>=1.3.1