This patch is used to add grafana config to opnfv dashboard for
[yardstick.git] / run_tests.sh
index c8d8e7d..972f6a2 100755 (executable)
@@ -9,7 +9,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-# Run yardstick's test suite(s)
+# Run yardstick's flake8, unit, coverage, functional test
 
 getopts ":f" FILE_OPTION
 
@@ -53,6 +53,30 @@ run_tests() {
     fi
 }
 
+run_coverage() {
+    source tests/ci/cover.sh
+    run_coverage_test
+}
+
+run_functional_test() {
+
+    mkdir -p .testrepository
+    python -m subunit.run discover tests/functional > .testrepository/subunit.log
+
+    subunit2pyunit < .testrepository/subunit.log
+    EXIT_CODE=$?
+    subunit-stats < .testrepository/subunit.log
+
+    if [ $EXIT_CODE -ne 0 ]; then
+        exit 1
+    else
+        echo "OK"
+    fi
+}
+
+export PYTHONPATH='yardstick/vTC/apexlake'
+
 run_flake8
 run_tests
-
+run_coverage
+run_functional_test