Skip to content

Commit c3403a7

Browse files
sharpninjaclaude
andcommitted
Exclude Validation test projects from CI Test target
Validation (Reqnroll/BDD) projects require a running server instance and are not suitable for CI unit test runs. Exclude *.Validation alongside *.IntegrationTests. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent bd51a57 commit c3403a7

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
mode: ContinuousDelivery
2-
next-version: 0.2.88
2+
next-version: 0.2.90
33
assembly-versioning-scheme: MajorMinorPatch
44
assembly-informational-format: '{SemVer}+Branch.{BranchName}.Sha.{ShortSha}'
55
branches:

build/Build.Test.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ partial class Build
1212
{
1313
var testProjects = Solution.GetAllProjects("*")
1414
.Where(p => p.Name.EndsWith(".Tests") || p.Name.EndsWith(".Validation"))
15-
.Where(p => !p.Name.Contains("IntegrationTests"));
15+
.Where(p => !p.Name.Contains("IntegrationTests"))
16+
.Where(p => !p.Name.EndsWith(".Validation"));
1617

1718
foreach (var project in testProjects)
1819
{

0 commit comments

Comments
 (0)