Skip to content

Commit

Permalink
[disablebot] Stop bot on some inductor mac tests (#5664)
Browse files Browse the repository at this point in the history
Made a ton of issues

I'll put in a rate limiter thing in a later PR? or make the bot create
an issue instead of mass disabling
  • Loading branch information
clee2000 authored Sep 13, 2024
1 parent 9983937 commit 91c7d9c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion torchci/pages/api/flaky-tests/disable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ export function filterThreshold(
return tests.filter(
(test) =>
new Set(test.jobIds).size > threshold &&
test.suite != "TestSDPACudaOnlyCUDA" // TODO: Get rid of this when driss fixes the flakiness
test.suite != "TestSDPACudaOnlyCUDA" && // TODO: Get rid of this when driss fixes the flakiness
!(
test.suite == "TestInductorOpInfoCPU" &&
test.jobNames.every((name) => name.includes("mac"))
) // See https://github.com/pytorch/pytorch/issues/135885
);
}

Expand Down

0 comments on commit 91c7d9c

Please sign in to comment.