We have a script that looks something like this:
#!/bin/bash
for cookbook in $cookbooks; do
cd /path/to/$cookbook
kitchen test;
# Log whether the test failed or passed
done;
# Print number of tests passed and number of tests failed
How can I determine if my kitchen test
passed or failed?
Aucun commentaire:
Enregistrer un commentaire