blob: 1e05dd6ba2c0eb5a2604e1bc2a26b853fe4a6fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/bash
set -o errexit
# Get script directory
SCRIPTDIR=`dirname $0`
echo "Running unit tests..."
# Creating virtual environment
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 -r $SCRIPTDIR/test-requirements.txt
find . -type f -name "*.pyc" -delete
nosetests --with-xunit \
--with-coverage \
--cover-erase \
--cover-package=$SCRIPTDIR/opnfv_testapi/cmd \
--cover-package=$SCRIPTDIR/opnfv_testapi/common \
--cover-package=$SCRIPTDIR/opnfv_testapi/resources \
--cover-package=$SCRIPTDIR/opnfv_testapi/router \
--cover-xml \
--cover-html \
$SCRIPTDIR/opnfv_testapi/tests
exit_code=$?
deactivate
exit $exit_code
|