File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ setupTests(test);
2424// but the first test would fail.
2525
2626test ( "analyze action with RAM & threads from environment variables" , async ( t ) => {
27+ // This test frequently times out on Windows with the default timeout, so we bump
28+ // it a bit to 20s.
29+ t . timeout ( 1000 * 20 ) ;
2730 await util . withTmpDir ( async ( tmpDir ) => {
2831 process . env [ "GITHUB_SERVER_URL" ] = util . GITHUB_DOTCOM_URL ;
2932 process . env [ "GITHUB_REPOSITORY" ] = "github/codeql-action-fake-repository" ;
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ setupTests(test);
2424// but the first test would fail.
2525
2626test ( "analyze action with RAM & threads from action inputs" , async ( t ) => {
27+ t . timeout ( 1000 * 20 ) ;
2728 await util . withTmpDir ( async ( tmpDir ) => {
2829 process . env [ "GITHUB_SERVER_URL" ] = util . GITHUB_DOTCOM_URL ;
2930 process . env [ "GITHUB_REPOSITORY" ] = "github/codeql-action-fake-repository" ;
You can’t perform that action at this time.
0 commit comments