summaryrefslogtreecommitdiffstats
path: root/verify.sh
diff options
context:
space:
mode:
Diffstat (limited to 'verify.sh')
-rwxr-xr-xverify.sh40
1 files changed, 29 insertions, 11 deletions
diff --git a/verify.sh b/verify.sh
index 1e0d0132..64b5072b 100755
--- a/verify.sh
+++ b/verify.sh
@@ -14,7 +14,9 @@
getopts ":f" FILE_OPTION
run_flake8() {
- echo "Running flake8 ... "
+ echo "========================================="
+ echo "Running flake8 for python style check: "
+ echo "-----------------------------------------"
logfile=flake8_verify.log
if [ $FILE_OPTION == "f" ]; then
flake8 --append-config=flake8_cfg testsuites/posca/ utils/ > $logfile
@@ -29,20 +31,36 @@ run_flake8() {
fi
exit 1
else
- echo "OK"
+ echo "The patch has passed python style check "
+ echo "===================END==================="
fi
}
-run_tests() {
- echo "Running unittest ... "
- #will add future
-}
-run_coverage() {
- echo "Running coverage ..."
- #will add future
+run_nosetests() {
+ echo "========================================="
+ echo "Running unit and coverage test: "
+ echo "-----------------------------------------"
+ nosetests --with-coverage --cover-tests \
+ --cover-min-percentage 100 \
+ test/__init__.py \
+ testsuites/posca/__init__.py testsuites/__init__.py \
+ testsuites/posca/testcase_cfg/__init__.py \
+ testsuites/posca/testcase_dashboard/__init__.py \
+ testsuites/posca/testcase_script/__init__.py \
+ utils/__init__.py \
+ utils/dashboard/__init__.py \
+ utils/env_prepare/__init__.py \
+ utils/infra_setup/__init__.py \
+ monitor/__init__.py \
+ monitor/config/__init__.py
+ echo "===================END==================="
+
}
+
+for((i=1;i<=1;i++));do echo -e "\n";done
run_flake8
-run_tests
-run_coverage
+
+for((i=1;i<=1;i++));do echo -e "\n";done
+run_nosetests