diff options
author | Yu Yang (Gabriel) <Gabriel.yuyang@huawei.com> | 2017-01-23 01:27:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-01-23 01:27:07 +0000 |
commit | ca641fcdaa919afb072a9625eb9ba3848b9e3805 (patch) | |
tree | a0ba657f43695e73000cc52cda8e0809cef886be /verify.sh | |
parent | f419c51fea3219386308b34971e76a908693b33d (diff) | |
parent | 9f28a751ee342b77f653acbebfb10d6587af669a (diff) |
Merge "Add paths to flake8 style check"
Diffstat (limited to 'verify.sh')
-rwxr-xr-x | verify.sh | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/verify.sh b/verify.sh new file mode 100755 index 00000000..1e0d0132 --- /dev/null +++ b/verify.sh @@ -0,0 +1,48 @@ +#!/bin/bash + +############################################################################## +# Copyright (c) 2016 Huawei Tech and others. +# +# 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 +############################################################################## + +# Run flake8, unit, coverage test + +getopts ":f" FILE_OPTION + +run_flake8() { + echo "Running flake8 ... " + logfile=flake8_verify.log + if [ $FILE_OPTION == "f" ]; then + flake8 --append-config=flake8_cfg testsuites/posca/ utils/ > $logfile + else + flake8 --append-config=flake8_cfg testsuites/posca/ utils/ + fi + + if [ $? -ne 0 ]; then + echo "FAILED" + if [ $FILE_OPTION == "f" ]; then + echo "Results in $logfile" + fi + exit 1 + else + echo "OK" + fi +} + +run_tests() { + echo "Running unittest ... " + #will add future +} + +run_coverage() { + echo "Running coverage ..." + #will add future +} + +run_flake8 +run_tests +run_coverage |