Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ call %~dp0git-checkout.cmd
if errorlevel 1 exit /b

:: Run tests
set "test_ci_args=--run=%RUN_SUBSET%,4"
set "test_ci_args=--run=%RUN_SUBSET%,4 --measure-flakiness 9"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this work on earlier release lines? i.e. Node.js 14 and 16? We use the same jobs and scripts to test all supported release lines.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ooo, good point

Copy link
Contributor Author

@aduh95 aduh95 Oct 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed it fails: test.py: error: no such option: --measure-flakiness

I guess I need to first backport the changes before we can land this (it's already been backported to v16.x, I've opened nodejs/node#45126 to have it on v14.x as well).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now that the backport has landed on v14.x, I think this can now move forward.

set VCBUILD_TARGET=test-ci-js
set FLAKY_TESTS=keep_retrying
call %~dp0test.cmd
if errorlevel 1 exit /b

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ call %~dp0git-checkout.cmd
if errorlevel 1 exit /b

:: Run tests
set "test_ci_args="
set "test_ci_args=--measure-flakiness 9"
set VCBUILD_TARGET=test-ci-native
set FLAKY_TESTS=keep_retrying
call %~dp0test.cmd
if errorlevel 1 exit /b

Expand Down