You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
182 B

  1. #!/bin/bash
  2. set -euxo pipefail
  3. export LC_ALL=C.UTF-8
  4. export LANG=C.UTF-8
  5. for d in $(find roles -name molecule -type d)
  6. do
  7. cd $(dirname $d)
  8. molecule test --all
  9. cd -
  10. done