Skip to content

Commit

Permalink
Fix merge so that tests don't regress
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Apr 18, 2023
1 parent 3d67583 commit 2bf9b6c
Show file tree
Hide file tree
Showing 4 changed files with 376 additions and 330 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Copyright (c) .NET Foundation and Contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using Xunit;
using Xunit.Abstractions;

[Trait("Engine", EngineString)]
[Collection("Build")] // msbuild sets current directory in the process, so we can't have it be concurrent with other build tests.
public class BuildIntegrationInProjectManagedTests : BuildIntegrationManagedTests
{
public BuildIntegrationInProjectManagedTests(ITestOutputHelper logger)
: base(logger)
{
}

/// <inheritdoc/>
protected override void ApplyGlobalProperties(IDictionary<string, string> globalProperties)
{
base.ApplyGlobalProperties(globalProperties);
globalProperties["NBGV_CacheMode"] = "None";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[Collection("Build")] // msbuild sets current directory in the process, so we can't have it be concurrent with other build tests.
public class BuildIntegrationManagedTests : SomeGitBuildIntegrationTests
{
private const string EngineString = "Managed";
protected const string EngineString = "Managed";

public BuildIntegrationManagedTests(ITestOutputHelper logger)
: base(logger)
Expand Down
Loading

0 comments on commit 2bf9b6c

Please sign in to comment.