#!/bin/bash set -e for role in `find -name molecule`; do pushd `dirname $role` molecule test --all popd done