Skip to content

Commit

Permalink
Merge pull request #12909 from sharifelgamal/macos
Browse files Browse the repository at this point in the history
start including macOS tests in flake reports
  • Loading branch information
medyagh authored Nov 9, 2021
2 parents 739a16a + 69fb310 commit 12b9d92
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 12b9d92

Please sign in to comment.