Skip to content

Commit 81f29b9

Browse files
authored
Combined dependency updates (2026-03-02)
Dependabot updates combined by [DashGit](https://javiertuya.github.io/dashgit). Includes: - [Bump NUnit from 4.3.2 to 4.5.0](#178) - [Bump Microsoft.NET.Test.Sdk from 18.0.1 to 18.3.0](#177) - [Bump coverlet.collector from 6.0.4 to 8.0.0](#176) - [Bump the mstest group with 2 updates](#175) - [Bump actions/upload-artifact from 6 to 7](#174)
1 parent cff11f2 commit 81f29b9

7 files changed

Lines changed: 24 additions & 11 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: ant report
6767
- name: Publish test report files
6868
if: always()
69-
uses: actions/upload-artifact@v6
69+
uses: actions/upload-artifact@v7
7070
with:
7171
name: test-report-files-${{ matrix.framework }}
7272
path: |

TestAssetsMstest/TestAssetsMstest.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
1111

12-
<PackageReference Include="MSTest.TestAdapter" Version="4.0.2" />
12+
<PackageReference Include="MSTest.TestAdapter" Version="4.1.0" />
1313

14-
<PackageReference Include="MSTest.TestFramework" Version="4.0.2" />
14+
<PackageReference Include="MSTest.TestFramework" Version="4.1.0" />
1515

16-
<PackageReference Include="coverlet.collector" Version="6.0.4">
16+
<PackageReference Include="coverlet.collector" Version="8.0.0">
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>

TestAssetsNunit/TestAssetsNunit.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
1111

12-
<PackageReference Include="NUnit" Version="4.3.2" />
12+
<PackageReference Include="NUnit" Version="4.5.0" />
1313

1414
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
1515
</ItemGroup>

TestAssetsXunit/TestAssetsXunit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
1111

1212
<PackageReference Include="xunit" Version="2.9.3" />
1313

TestDotnetTestSplit/TestDotnetTestSplit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
1111

1212
<PackageReference Include="NUnit" Version="4.4.0" />
1313

expected/nunit-report.trx.split/TEST-TestAssetsNunit.One.ClassTwo.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ STACK TRACE:
2323
at TestAssetsNunit.One.ClassTwo.TestOneTwoFailException() in /home/runner/work/dotnet-test-split/dotnet-test-split/TestAssetsNunit/TestAssetsNunit.cs:line 51
2424
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
2525
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)
26+
1) at TestAssetsNunit.One.ClassTwo.TestOneTwoFailException() in /TestAssetsNunit/TestAssetsNunit.cs:line 51
27+
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
28+
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)
2629
</failure></testcase>
2730
<testcase classname="TestAssetsNunit.One.ClassTwo" name="TestOneTwoPass" outcome="Passed" time="0.0000649" />
2831
<testcase classname="TestAssetsNunit.One.ClassTwo" name="TestOneOneIgnored" outcome="NotExecuted" time="0.000247"><skipped /></testcase>

expected/nunit-report.trx.split/TEST-TestAssetsNunit.Stp.ClassStp.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,28 @@
11
<testsuite name="TestAssetsNunit.Stp.ClassStp" tests="2" failures="2" errors="0" skipped="0" time="0.0021060000000000002" >
22
<testcase classname="TestAssetsNunit.Stp.ClassStp" name="TestStpOne" outcome="Failed" time="0.001629"><failure>
33
MESSAGE:
4-
System.Exception : This test setup fails
4+
SetUp : System.Exception : This test setup fails
55
+++++++++++++++++++
66
STACK TRACE:
7+
--SetUp
8+
at TestAssetsNunit.Stp.ClassStp.SetupFail() in /TestAssetsNunit/TestAssetsNunit.cs:line 98
9+
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
10+
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)
11+
1) --SetUp
712
at TestAssetsNunit.Stp.ClassStp.SetupFail() in /home/runner/work/dotnet-test-split/dotnet-test-split/TestAssetsNunit/TestAssetsNunit.cs:line 98
813
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
914
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)
1015
</failure></testcase>
1116
<testcase classname="TestAssetsNunit.Stp.ClassStp" name="TestStpTwo" outcome="Failed" time="0.000477"><failure>
1217
MESSAGE:
13-
System.Exception : This test setup fails
18+
SetUp : System.Exception : This test setup fails
1419
+++++++++++++++++++
1520
STACK TRACE:
21+
--SetUp
22+
at TestAssetsNunit.Stp.ClassStp.SetupFail() in /TestAssetsNunit/TestAssetsNunit.cs:line 98
23+
at InvokeStub_ClassStp.SetupFail(Object, Object, IntPtr*)
24+
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)
25+
1) --SetUp
1626
at TestAssetsNunit.Stp.ClassStp.SetupFail() in /home/runner/work/dotnet-test-split/dotnet-test-split/TestAssetsNunit/TestAssetsNunit.cs:line 98
1727
at InvokeStub_ClassStp.SetupFail(Object, Object, IntPtr*)
1828
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)

0 commit comments

Comments
 (0)