Skip to content

Commit 74df7da

Browse files
committed
Skip CanSendGetCommandRequestAsync on more CI platforms
1 parent 5c8e877 commit 74df7da

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/PowerShellEditorServices.Test.E2E/LanguageServerProtocolMessageTests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,10 @@ await PsesLanguageClient
12391239
[SkippableFact(Timeout = 120000)]
12401240
public async Task CanSendGetCommandRequestAsync()
12411241
{
1242-
Skip.If(Environment.GetEnvironmentVariable("TF_BUILD") is not null,
1242+
Skip.If(
1243+
Environment.GetEnvironmentVariable("TF_BUILD") is not null ||
1244+
Environment.GetEnvironmentVariable("GITHUB_ACTIONS") is not null ||
1245+
Environment.GetEnvironmentVariable("CI") is not null,
12431246
"This test is too slow in CI.");
12441247

12451248
List<object> pSCommandMessages =

0 commit comments

Comments
 (0)