🐛 fix(bdd): exclude @v2 scenarios from default BDD test runs #27
Reference in New Issue
Block a user
Delete Branch "fix/exclude-v2-from-default-bdd"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
The 4 v2 scenarios in greet.feature need FEATURE=greet + GODOG_TAGS=@v2 to work. Without that, they fail with 'v2 endpoint not available'. CI doesn't set those, so v2 scenarios are systematically failing in default runs.
Two fixes
@v2 @api(one already had it)@v2Result
CI default runs pass cleanly. v2 still testable on demand:
FEATURE=greet GODOG_TAGS=@v2 go test ./features/greet/...Companion to PR #26 (BDD_SCHEMA_ISOLATION). Both target CI green for daily PRs.
Diagnosed during the 2026-05-03 trainer day after observing the v2 failures in CI #608.