Skip to content

Commit

Permalink
[automated] Merge branch 'release/6.0.4xx' => 'release/8.0.1xx' (#44031)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpopMSFT authored Oct 9, 2024
2 parents a359a4c + b316e49 commit f0a51e6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void WhenRunOnWindowsDotnetHelpCommandShouldContainProperProcessInformati
public void WhenRunOnLinuxDotnetHelpCommandShouldContainProperProcessInformation()
{
var proc = HelpCommand.ConfigureProcess("https://aka.ms/dotnet-build");
Assert.Equal("xdg-open", proc.StartInfo.FileName);
Assert.Contains("xdg-open", proc.StartInfo.FileName);
Assert.Equal("https://aka.ms/dotnet-build", proc.StartInfo.Arguments);

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void UsingDotnetForTheFirstTimeWithNonVerbsDoesNotPrintEula()
.StartWith(firstTimeNonVerbUseMessage);
}

[WindowsOnlyFact]
[WindowsOnlyFact(Skip="https://github.com/dotnet/sdk/issues/43328")]
public void ItShowsTheAppropriateMessageToTheUser()
{

Expand Down Expand Up @@ -151,7 +151,7 @@ public void ItDoesNotCreateAFirstUseSentinelFileNorAnAspNetCertificateSentinelFi
homeFolder.Should().NotExist();
}

[WindowsOnlyFact]
[WindowsOnlyFact(Skip="https://github.com/dotnet/sdk/issues/43328")]
public void ItShowsTheTelemetryNoticeWhenInvokingACommandAfterInternalReportInstallSuccessHasBeenInvoked()
{
var dotnetFirstTime = new DotNetFirstTime();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ public void When_dotnet_command_invokes_msbuild_with_diag_verbosity_Then_arg_is_

var cmd = new DotnetCommand(Log)
.WithWorkingDirectory(testInstance.Path)
.WithEnvironmentVariable("HelixAccessToken", "")
.WithEnvironmentVariable("SYSTEM_ACCESSTOKEN", "")
.Execute(command, "-v", "diag");

cmd.Should().Pass();
Expand Down

0 comments on commit f0a51e6

Please sign in to comment.