blob: dce136853fc8dd0d7d6ee3898c64aae0a993260c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env bash
#
# Wrapper script that installs the required dependencies
# for the BATS script to run successfully
#
# Copyright: SPDX-License-Identifier: GPL-3.0-or-later
#
# Author : Pavlos Emm. Katsoulakis <paul@netdata.cloud)
#
echo "Installing extra dependencies.."
yum install -y epel-release
yum install -y git bats
echo "Running BATS file.."
bats --tap tests/updater_checks.bats
|