diff options
Diffstat (limited to 'tests/run_tests')
-rwxr-xr-x | tests/run_tests | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/run_tests b/tests/run_tests new file mode 100755 index 0000000..1ae6c42 --- /dev/null +++ b/tests/run_tests @@ -0,0 +1,13 @@ +#!/bin/bash + +export RUBYLIB=${RUBYLIB:-../plugins} +OPTIONS="$*" +OPTIONS="${OPTIONS:---trace}" + +find -iname \*.pp | sort | while read current; do + echo "Running $current" + puppet $OPTIONS $current + echo "Running $current again" + puppet $OPTIONS $current + echo +done |