17 lines
655 B
Plaintext
17 lines
655 B
Plaintext
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<RunSettings>
|
||
|
|
<!--
|
||
|
|
Fuerza ejecución secuencial de las diferentes test assemblies.
|
||
|
|
Justificación: Application.Tests (integration) y Api.Tests (WebApplicationFactory)
|
||
|
|
comparten la BD SIGCM2_Test. Ejecutarlas en paralelo produce race conditions
|
||
|
|
sobre Respawn.Reset + SeedRolCanonical + SeedAdmin.
|
||
|
|
|
||
|
|
Cuando se corre proyecto a proyecto (`dotnet test <csproj>`) no hay paralelismo
|
||
|
|
cross-assembly y no se necesita este settings. Este archivo es para el caso
|
||
|
|
`dotnet test` en la raíz del repo.
|
||
|
|
-->
|
||
|
|
<RunConfiguration>
|
||
|
|
<MaxCpuCount>1</MaxCpuCount>
|
||
|
|
</RunConfiguration>
|
||
|
|
</RunSettings>
|