Skip to content

Commit 4309c8a

Browse files
committed
Disable parallelization
Since the name is different it would get ran normally
1 parent dca3189 commit 4309c8a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tracer/test/Datadog.Trace.ClrProfiler.IntegrationTests/Helpers/ContainersCollection.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99

1010
namespace Datadog.Trace.ClrProfiler.IntegrationTests.Helpers
1111
{
12-
[CollectionDefinition(Name)]
13-
12+
// Container-backed collections must set DisableParallelization = true. CustomTestFramework only auto-serializes
13+
// collections whose display name contains the assembly namespace, which named [CollectionDefinition]s lose.
14+
[CollectionDefinition(Name, DisableParallelization = true)]
1415
public class AerospikeCollection : ICollectionFixture<AerospikeFixture>
1516
{
1617
public const string Name = "Aerospike";

0 commit comments

Comments
 (0)