Fatih Degirmenci | 24834fe | 2020-01-08 18:52:01 +0100 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | |
| 3 | # ============LICENSE_START======================================================= |
| 4 | # Copyright (C) 2019 The Nordix Foundation. All rights reserved. |
| 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 | # SPDX-License-Identifier: Apache-2.0 |
| 19 | # ============LICENSE_END========================================================= |
| 20 | |
| 21 | set -o nounset |
| 22 | set -o errexit |
| 23 | set -o pipefail |
| 24 | |
| 25 | # ensure we are in job build WORKSPACE |
| 26 | cd "$WORKSPACE" |
| 27 | |
| 28 | # install dependencies |
| 29 | echo "Info: Install virtualenv python3-minimal using apt" |
| 30 | sudo apt update -q=3 > /dev/null 2>&1 |
| 31 | sudo apt install -q=3 -y python3-minimal virtualenv > /dev/null 2>&1 |
| 32 | |
| 33 | # create and activate virtualenv |
| 34 | echo "Info: Create and activate python virtualenv" |
| 35 | virtualenv -p python3 .venv > /dev/null 2>&1 |
| 36 | set +u |
| 37 | source .venv/bin/activate > /dev/null 2>&1 |
| 38 | set -u |
| 39 | |
| 40 | # install test-requirements |
| 41 | echo "Info: Install python packages listed in test-requirements.txt using pip" |
| 42 | pip install --quiet -r test-requirements.txt > /dev/null 2>&1 |
| 43 | |
| 44 | # set default lint type |
| 45 | export LINT_TYPE="${LINT_TYPE:-ansible-lint}" |
| 46 | |
| 47 | # run tox |
| 48 | echo "Info: Run $LINT_TYPE using tox" |
| 49 | echo "----------------------------------------------------" |
| 50 | tox -e "$LINT_TYPE" |
| 51 | echo "----------------------------------------------------" |
| 52 | echo "Info: Done!" |
| 53 | |
| 54 | # vim: set ts=2 sw=2 expandtab: |