start including macOS tests in flake reports

pull/12909/head
Sharif Elgamal 2021-11-09 10:09:39 -08:00
parent 40eceaa001
commit 69fb310f57
1 changed files with 2 additions and 2 deletions

View File

@ -85,9 +85,9 @@ awk -F, 'NR>1 {
| sort -g -t, -k2,2 \
>> "$TMP_FAILED_RATES"
# Filter out arm64, macOS and windows tests until they're more stable
# Filter out arm64 and crio tests until they're more stable
TMP_FAILED_RATES_FILTERED=$(mktemp)
grep -v "arm64\|macOS\|crio" "$TMP_FAILED_RATES" > "$TMP_FAILED_RATES_FILTERED"
grep -v "arm64\|crio" "$TMP_FAILED_RATES" > "$TMP_FAILED_RATES_FILTERED"
FAILED_RATES_LINES=$(wc -l < "$TMP_FAILED_RATES_FILTERED")
if [[ "$FAILED_RATES_LINES" -eq 0 ]]; then