Skip to content

Commit

Permalink
Use shared location for NUnitTestAdapter
Browse files Browse the repository at this point in the history
Because of cake-build/cake#3038 the tools
folder isn't being accessed correctly, but this can use the version
of the NuGet package installed by the test projects themselves.
  • Loading branch information
bdukes committed Jan 26, 2021
1 parent bfb432a commit 173a453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build/Cake/unit-tests.cs
Expand Up @@ -30,7 +30,7 @@ public override void Run(Context context)
Logger = "trx",
Parallel = true,
EnableCodeCoverage = true,
TestAdapterPath = @"tools\NUnitTestAdapter.2.3.0\build"
TestAdapterPath = @"Packages\NUnitTestAdapter.2.3.0\build"
}));
}

Expand Down

0 comments on commit 173a453

Please sign in to comment.