We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 915d080 commit f842803Copy full SHA for f842803
tests/help.sh
@@ -27,6 +27,9 @@ for x in $(echo *.py 2>/dev/null); do
27
./$x --help # >/dev/null
28
status=$?
29
set -e
30
- [ $status = 3 -o $status = 0 ] || { echo "status code for $x --help was $status not expected 0 or 3"; exit 1; }
+ if [ $status = 0 ]; then
31
+ [[ $x =~ ambari_blueprints ]] && continue
32
+ fi
33
+ [ $status = 3 ] || { echo "status code for $x --help was $status not expected 3"; exit 1; }
34
done
35
echo "All Python programs found exited with expected code 0/3 for --help"
0 commit comments