Skip to content

Commit 8dda2ab

Browse files
committed
error fixes
1 parent 9d928fc commit 8dda2ab

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/NUnit3TestAdapter.CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
jobs:
66
build:
77

8-
runs-on: windows-latest
8+
runs-on: ubuntu-latest
99

1010
steps:
1111
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

build.cake

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,8 @@ foreach (var (framework, vstestFramework, adapterDir) in new[] {
152152
// (The DLL they are compiled against depends on VS2012 at runtime.)
153153
// Enable Coverlet via the runsettings
154154
SettingsFile = File("Coverlet.runsettings"),
155-
// Put TRX in a known place with a stable name
156155
Logger = $"trx;LogFileName=VSTest-{framework}.trx",
157-
ResultsDirectory = TEST_RESULTS_DIR
156+
ArgumentCustomization = args => args.AppendSwitchQuoted("/ResultsDirectory", ":", TEST_RESULTS_DIR.FullPath)
158157
});
159158

160159
PublishTestResults($"VSTest-{framework}.trx");

0 commit comments

Comments
 (0)