diff options
author | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2018-03-05 15:35:18 -0800 |
---|---|---|
committer | Dileep Ranganathan <dileep.ranganathan@intel.com> | 2018-03-06 08:56:41 -0800 |
commit | 338ae6819b2e09a362fecf6c867541a1b171c3c8 (patch) | |
tree | ca2ee8080cf7c85ab32a687481070d175e753cb9 /sonar.sh | |
parent | 19d220e1f87475ef762ba7f6fb39d4eb18ee4c20 (diff) |
Fix Sonar coverage report
Added maven-exec plugin to trigger tox and coverage
Modified sonar properties to set the path to reports
Modified .gitignore to add coverage related files
Added test dependency junitxml
Change-Id: I7e4bb5e4b6bc217b9778350c703d864e9f8ef0e2
Issue-ID: OPTFRA-101
Signed-off-by: Dileep Ranganathan <dileep.ranganathan@intel.com>
Diffstat (limited to 'sonar.sh')
-rwxr-xr-x | sonar.sh | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sonar.sh b/sonar.sh new file mode 100755 index 0000000..566ede7 --- /dev/null +++ b/sonar.sh @@ -0,0 +1,41 @@ +#!/bin/bash +# +# ------------------------------------------------------------------------- +# Copyright (c) 2018 Intel Corporation Intellectual Property +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# ------------------------------------------------------------------------- +# + +run_tox_test() +{ + set -x + CURDIR=$(pwd) + TOXINIS=$(find . -name "tox.ini") + for TOXINI in "${TOXINIS[@]}"; do + DIR=$(echo "$TOXINI" | rev | cut -f2- -d'/' | rev) + cd "${CURDIR}/${DIR}" + rm -rf ./venv-tox ./.tox + virtualenv ./venv-tox + source ./venv-tox/bin/activate + pip install --upgrade pip + pip install --upgrade tox argparse + pip freeze + tox -e cover + deactivate + rm -rf ./venv-tox ./.tox + done +} + +run_tox_test |