(testFile?: string, testGrep?: string)
| 21 | } |
| 22 | |
| 23 | function isDeepSeekTargetedRun(testFile?: string, testGrep?: string) { |
| 24 | if (testFile?.toLowerCase().includes("deepseek-v4.test")) { |
| 25 | return true |
| 26 | } |
| 27 | |
| 28 | // DeepSeek grep runs may target the suite name, file stem, or individual model IDs. |
| 29 | return testGrep?.toLowerCase().includes("deepseek") ?? false |
| 30 | } |
| 31 | |
| 32 | function isBedrockTargetedRun(testFile?: string, testGrep?: string) { |
| 33 | if (testFile?.toLowerCase().includes("bedrock.test")) { |