mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 05:00:21 -05:00
20 lines
365 B
Bash
Executable File
20 lines
365 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
|
|
git checkout $1
|
|
git branch
|
|
|
|
# run test suite
|
|
./tests/acceptance/run.sh
|
|
echo "test run complete"
|