Andrew Martin
Andrew Martin
I can see both cases, depending on the specific role being tested. In some cases it may be desirable to test how different roles interact together, in which case it...
It looks like the lack of failure when a test fails is due to how Bash's `source` command works: ``` source filename [arguments] Read and execute commands from filename in...
I would patch #1 by just adding `set -e` at the top of `tests//test` - I've tested this and it now works as expected (failures in dependent roles stop the...
Yes, for #1. As for #2, ah, yes all of my roles are local and not published to Ansible Galaxy so I had not encountered that bit of code. If...