Skip to content

Commit

Permalink
start including macOS tests in flake reports
Browse files Browse the repository at this point in the history
  • Loading branch information
sharifelgamal committed Nov 9, 2021
1 parent 40eceaa commit 69fb310
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/jenkins/test-flake-chart/report_flakes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 69fb310

Please sign in to comment.