13 lines
435 B
Bash
Executable File
13 lines
435 B
Bash
Executable File
#!/usr/bin/env bash
|
|
test_directory="$(cd "$(dirname "$0")" && pwd)"
|
|
bats_executable="${test_directory}/../bats/bin/bats"
|
|
|
|
[ ! -e $bats_executable ] && \
|
|
git clone --depth 1 https://github.com/sstephenson/bats.git ${test_directory}/../bats
|
|
|
|
if [ -z "${BASH_IT}" ]; then
|
|
export BASH_IT=$(cd ${test_directory} && dirname $(pwd))
|
|
fi
|
|
|
|
exec $bats_executable ${CI:+--tap} ${test_directory}/{bash_it,completion,install,lib,plugins,themes}
|