Skip to content

Commit 13755ad

Browse files
committed
Add xunit.runner.json configuration
1 parent ba15475 commit 13755ad

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

Tests/IntegrationTests/IntegrationTests.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@
1313
<PrivateAssets>all</PrivateAssets>
1414
</PackageReference>
1515
</ItemGroup>
16+
<ItemGroup>
17+
<Content Include="..\xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
18+
</ItemGroup>
1619
</Project>

Tests/UnitTests/UnitTests.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@
1313
<PrivateAssets>all</PrivateAssets>
1414
</PackageReference>
1515
</ItemGroup>
16+
<ItemGroup>
17+
<Content Include="..\xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
18+
</ItemGroup>
1619
</Project>

Tests/xunit.runner.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"$schema": "https://xunit.net/schema/current/xunit.runner.schema.json",
3+
"appDomain": "ifAvailable",
4+
"culture": "invariant",
5+
"methodDisplay": "classAndMethod",
6+
"failSkips": false,
7+
"failWarns": false,
8+
"stopOnFail": false,
9+
"maxParallelThreads": "unlimited",
10+
"parallelAlgorithm": "conservative",
11+
"parallelizeAssembly": false,
12+
"parallelizeTestCollections": true
13+
}

0 commit comments

Comments
 (0)