Skip to content

Commit 527f690

Browse files
committed
Skip more performance tests on Windows ARM
The new pattern `speed` matches the `find_speed` test, and may match some future performance tests as well. This is not needed to make tests pass, as `find_speed` was already passing. However, the `test-fixtures-windows` ARM job takes a very long time, and this seems that it may be contributing. (It was also an oversight not to skip it when skipping other performance tests.) However, the pattern `fuzzed_timeout` is intentionally kept, rather than being broadened into the pattern `timeout`, since the latter would match several tests that seem always to complete very fast, and that test important functionality. (Even `fuzzed_timeout` itself *usually* completes in less than a tenth of a second.)
1 parent 740687e commit 527f690

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
include:
216216
- nextest-extra-args: ''
217217
- os: windows-11-arm
218-
nextest-extra-args: '-- --skip fuzzed_timeout --skip performance'
218+
nextest-extra-args: '-- --skip fuzzed_timeout --skip performance --skip speed'
219219

220220
runs-on: ${{ matrix.os }}
221221

@@ -258,7 +258,7 @@ jobs:
258258
include:
259259
- nextest-extra-args: ''
260260
- os: windows-11-arm
261-
nextest-extra-args: '-- --skip fuzzed-timeout --skip performance'
261+
nextest-extra-args: '-- --skip fuzzed-timeout --skip performance --skip speed'
262262

263263
runs-on: ${{ matrix.os }}
264264

0 commit comments

Comments
 (0)