blob: 2516b4a55cc579d02ba8b7bfa14aa3cd656c831e [file] [log] [blame]
Fatih Degirmenci24834fe2020-01-08 18:52:01 +01001#!/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
21set -o nounset
22set -o errexit
23set -o pipefail
24
25# ensure we are in job build WORKSPACE
26cd "$WORKSPACE"
27
28# install dependencies
29echo "Info: Install virtualenv python3-minimal using apt"
30sudo apt update -q=3 > /dev/null 2>&1
31sudo apt install -q=3 -y python3-minimal virtualenv > /dev/null 2>&1
32
33# create and activate virtualenv
34echo "Info: Create and activate python virtualenv"
35virtualenv -p python3 .venv > /dev/null 2>&1
36set +u
37source .venv/bin/activate > /dev/null 2>&1
38set -u
39
40# install test-requirements
41echo "Info: Install python packages listed in test-requirements.txt using pip"
42pip install --quiet -r test-requirements.txt > /dev/null 2>&1
43
44# set default lint type
45export LINT_TYPE="${LINT_TYPE:-ansible-lint}"
46
47# run tox
48echo "Info: Run $LINT_TYPE using tox"
49echo "----------------------------------------------------"
50tox -e "$LINT_TYPE"
51echo "----------------------------------------------------"
52echo "Info: Done!"
53
54# vim: set ts=2 sw=2 expandtab: