Skip to content

Commit 4e4266e

Browse files
Exclude RenderBenchmark tests from installer builds (#942)
Add TestCategory!=RenderBenchmark to the base and patch installer test filters, since these timing/pixel-sensitive tests are unreliable on Release installer runners; Flex CI still runs them with artifact reporting. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 71aebbe commit 4e4266e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/base-installer-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
- name: Run tests
162162
shell: powershell
163163
run: |
164-
.\test.ps1 -Configuration Release -NoBuild -TestFilter 'TestCategory!=DesktopRequired' *>&1 | Tee-Object -FilePath test.log
164+
.\test.ps1 -Configuration Release -NoBuild -TestFilter 'TestCategory!=DesktopRequired&TestCategory!=RenderBenchmark' *>&1 | Tee-Object -FilePath test.log
165165
166166
- name: Analyze Build Log
167167
if: always() && steps.build.outcome != 'skipped'

.github/workflows/patch-installer-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ jobs:
230230
- name: Run tests
231231
shell: powershell
232232
run: |
233-
.\test.ps1 -Configuration Release -NoBuild -TestFilter 'TestCategory!=DesktopRequired' *>&1 | Tee-Object -FilePath test.log
233+
.\test.ps1 -Configuration Release -NoBuild -TestFilter 'TestCategory!=DesktopRequired&TestCategory!=RenderBenchmark' *>&1 | Tee-Object -FilePath test.log
234234
235235
- name: Analyze Build Log
236236
if: always() && steps.build.outcome != 'skipped'

0 commit comments

Comments
 (0)