Skip to content

Commit 2e5aad3

Browse files
committed
fixes
1 parent 6f1b2de commit 2e5aad3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/PrompterOne.Core.Tests/TestAssemblyConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ namespace PrompterOne.Core.Tests;
99
/// </summary>
1010
public sealed class MaxParallelTestsForPipeline : EnvironmentAwareParallelLimitBase
1111
{
12-
protected override int LocalLimit { get; } = 10;
12+
protected override int LocalLimit { get; } = 15;
1313
}

tests/PrompterOne.Testing/EnvironmentAwareParallelLimitBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ namespace PrompterOne.Testing;
77
/// </summary>
88
public abstract class EnvironmentAwareParallelLimitBase : IParallelLimit
99
{
10-
protected virtual int CiLimit { get; } = 4;
11-
protected virtual int LocalLimit { get; } = 6;
10+
protected virtual int CiLimit { get; } = 10;
11+
protected virtual int LocalLimit { get; } = 10;
1212

1313
public int Limit => ResolveLimit();
1414

0 commit comments

Comments
 (0)