Files
steampipe/tests/dockertesting/oraclelinux/run-tests.sh
2022-08-23 12:10:22 +01:00

18 lines
338 B
Bash
Executable File

#!/usr/bin/env bash
# check version
steampipe -v
# clone the repo, to run the test suite
git clone https://github.com/turbot/steampipe.git
cd steampipe
# initialize git along with bats submodules
git init
git submodule update --init
git submodule update --recursive
# run test suite
./tests/acceptance/run.sh
echo "test run complete"