Update release notes - HAS
[optf/has.git] / sonar.sh
1 #!/bin/bash
2 #
3 # -------------------------------------------------------------------------
4 #   Copyright (c) 2018 Intel Corporation Intellectual Property
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #
18 # -------------------------------------------------------------------------
19 #
20
21 run_tox_test()
22
23   set -x
24   CURDIR=$(pwd)
25   TOXINIS=$(find . -name "tox.ini")
26   for TOXINI in "${TOXINIS[@]}"; do
27     DIR=$(echo "$TOXINI" | rev | cut -f2- -d'/' | rev)
28     cd "${CURDIR}/${DIR}"
29     rm -rf ./venv-tox ./.tox
30     virtualenv ./venv-tox
31     source ./venv-tox/bin/activate
32     pip install --no-cache-dir --upgrade pip
33     pip install --no-cache-dir --upgrade tox argparse
34     pip freeze
35     tox -e cover
36     deactivate
37     rm -rf ./venv-tox ./.tox
38   done
39 }
40
41 run_tox_test