1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/env bash
set -ex
# Run the tests and confirm that the stuff we expect to skip or fail
# does.
# this would be somewhat less complex in bash4..
shopt -s nocasematch
[[ "${GABBI_SKIP_NETWORK:-false}" == "true" ]] && SKIP=14 || SKIP=2
[[ "${GABBI_SKIP_NETWORK:-false}" == "true" ]] && FAILS=15 || FAILS=16
shopt -u nocasematch
GREP_FAIL_MATCH="expected failures=$FAILS"
GREP_SKIP_MATCH="skipped=$SKIP,"
PYTEST_MATCH="$SKIP skipped, $FAILS xfailed"
stestr run && \
for match in "${GREP_FAIL_MATCH}" "${GREP_SKIP_MATCH}"; do
stestr last --subunit | subunit2pyunit 2>&1 | \
grep "${match}"
done
# Make sure pytest failskips too
py.test gabbi | grep "$PYTEST_MATCH"
|