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