Skip to content

Commit 045888f

Browse files
committed
Revert "Restore browser test parallel limits"
This reverts commit c00b8dc.
1 parent c00b8dc commit 045888f

8 files changed

Lines changed: 0 additions & 13 deletions

File tree

AGENTS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ Rule format:
114114
- Every runnable test project must declare `MaxParallelTestsForPipeline : EnvironmentAwareParallelLimitBase` with `LocalLimit = 15`; do not keep lower per-project local parallel caps unless the user explicitly asks for an exception.
115115
- Browser-suite runnable test projects must keep `CiLimit = 2` unless the user explicitly approves a different cap; do not inherit a broader default CI worker count after a suite split.
116116
- Local regression verification must include solution-level `dotnet test --solution ./PrompterOne.slnx -m:1` so test-project split changes are proven under the real all-tests entrypoint, not only as isolated per-project runs.
117-
- When the user explicitly asks to validate a test fix in actual GitHub Actions, do not spend more time on local `CI=true` emulation; push the fix and monitor the real CI run instead.
118117
- Selector-contract remediation requests must be handled repo-wide across all relevant test files (`Web.Tests` and `Web.UITests`), not as partial per-file cleanups.
119118
- Repo-wide quality audits and agent-generated review handoff artifacts must be written as root-level task files so other coding agents can pick them up quickly; do not bury those temporary audit results under `docs/` unless the task is explicitly about durable product documentation.
120119
- Repo-wide cleanup and review passes must explicitly inventory forbidden implementation string literals, `MarkupString` or raw-HTML UI composition, duplicated JS/CSS patterns, architecture-boundary drift, and `foreach`-driven test scenarios that should become isolated TUnit cases.

tests/PrompterOne.Core.Tests/TestAssemblyConfiguration.cs

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

tests/PrompterOne.Web.Tests/TestAssemblyConfiguration.cs

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

tests/PrompterOne.Web.UITests.Editor/TestAssemblyConfiguration.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ namespace PrompterOne.Web.UITests.Editor;
66

77
public sealed class MaxParallelTestsForPipeline : EnvironmentAwareParallelLimitBase
88
{
9-
protected override int CiLimit { get; } = 2;
10-
protected override int LocalLimit { get; } = 15;
119
}

tests/PrompterOne.Web.UITests.Reader/TestAssemblyConfiguration.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ namespace PrompterOne.Web.UITests.Reader;
66

77
public sealed class MaxParallelTestsForPipeline : EnvironmentAwareParallelLimitBase
88
{
9-
protected override int CiLimit { get; } = 2;
10-
protected override int LocalLimit { get; } = 15;
119
}

tests/PrompterOne.Web.UITests.Shell/TestAssemblyConfiguration.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ namespace PrompterOne.Web.UITests.Shell;
66

77
public sealed class MaxParallelTestsForPipeline : EnvironmentAwareParallelLimitBase
88
{
9-
protected override int CiLimit { get; } = 2;
10-
protected override int LocalLimit { get; } = 15;
119
}

tests/PrompterOne.Web.UITests.Studio/TestAssemblyConfiguration.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ namespace PrompterOne.Web.UITests.Studio;
66

77
public sealed class MaxParallelTestsForPipeline : EnvironmentAwareParallelLimitBase
88
{
9-
protected override int CiLimit { get; } = 2;
10-
protected override int LocalLimit { get; } = 15;
119
}

tests/PrompterOne.Web.UITests/Infrastructure/TestAssemblyConfiguration.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ namespace PrompterOne.Web.UITests;
44

55
public sealed class MaxParallelTestsForPipeline : EnvironmentAwareParallelLimitBase
66
{
7-
protected override int CiLimit { get; } = 2;
8-
protected override int LocalLimit { get; } = 15;
97
}
108

119
internal static class UiTestParallelization

0 commit comments

Comments
 (0)