Skip to content

Commit 0aebf95

Browse files
committed
Configure xUnit tests to not run in parallel
1 parent b82d907 commit 0aebf95

File tree

5 files changed

+15
-1
lines changed

5 files changed

+15
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ lock
2424
/target
2525
.corext/gen
2626
registered_data.ini
27-
27+
.vs/
2828

2929
# quickbuild.exe
3030
/VersionGeneratingLogs/

test/PowerShellEditorServices.Test.Host/PowerShellEditorServices.Test.Host.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@
8484
<None Include="TestFiles\SimpleSyntaxError.ps1">
8585
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
8686
</None>
87+
<None Include="xunit.runner.json">
88+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
89+
</None>
8790
</ItemGroup>
8891
<ItemGroup>
8992
<Reference Include="envdte, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"parallelizeTestCollections": false,
3+
"methodDisplay": "method"
4+
}

test/PowerShellEditorServices.Test/PowerShellEditorServices.Test.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@
8787
<ItemGroup>
8888
<None Include="App.config" />
8989
<None Include="packages.config" />
90+
<None Include="xunit.runner.json">
91+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
92+
</None>
9093
</ItemGroup>
9194
<ItemGroup>
9295
<ProjectReference Include="..\..\src\PowerShellEditorServices\PowerShellEditorServices.csproj">
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"parallelizeTestCollections": false,
3+
"methodDisplay": "method"
4+
}

0 commit comments

Comments
 (0)