12 lines
373 B
Bash
Executable File
12 lines
373 B
Bash
Executable File
#!/usr/bin/env bash
|
|
test_directory="$(cd "$(dirname "$0")" && pwd)"
|
|
bats_executable="${test_directory}/../test_lib/bats-core/bin/bats"
|
|
|
|
git submodule init && git submodule update
|
|
|
|
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}
|