We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c8e877 commit 74df7daCopy full SHA for 74df7da
1 file changed
test/PowerShellEditorServices.Test.E2E/LanguageServerProtocolMessageTests.cs
@@ -1239,7 +1239,10 @@ await PsesLanguageClient
1239
[SkippableFact(Timeout = 120000)]
1240
public async Task CanSendGetCommandRequestAsync()
1241
{
1242
- Skip.If(Environment.GetEnvironmentVariable("TF_BUILD") is not null,
+ 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,
1246
"This test is too slow in CI.");
1247
1248
List<object> pSCommandMessages =
0 commit comments