You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In .NET Core, the Xunit flag [assembly: CollectionBehavior(DisableTestParallelization = true)] does not function (referenced here and here). So, tests always run in parallel. All RoleDefinition tests and 1 RoleAssignment test (RaPropertiesValidation) use RoleDefinitionNames, a static queue, at the same time. So, these tests fail intermittently during runs on .NET Core.
Refactor the RoleDefinition and RoleAssignment->RaPropertiesValidation scenario tests so they do not use the static RoleDefinitionNames queue
The text was updated successfully, but these errors were encountered:
In .NET Core, the Xunit flag
[assembly: CollectionBehavior(DisableTestParallelization = true)]
does not function (referenced here and here). So, tests always run in parallel. AllRoleDefinition
tests and 1RoleAssignment
test (RaPropertiesValidation) useRoleDefinitionNames
, a static queue, at the same time. So, these tests fail intermittently during runs on .NET Core.RoleDefinition
andRoleAssignment->RaPropertiesValidation
scenario tests so they do not use the staticRoleDefinitionNames
queueThe text was updated successfully, but these errors were encountered: