#!/bin/bash set -e for f in $(find ./tests/integration -name "*.bats"); do bats -Tp "$f" res=$? if [[ "$res" -ne 0 ]]; then exit 1 fi done