test: add missing implementation-plan test targets

This commit is contained in:
Eric
2026-03-04 08:15:30 +00:00
committed by copilot-swe-agent[bot]
parent 5684b840d3
commit 200cb65297
18 changed files with 205 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
build_file="$1"
grep -Eq 'name = "failing_suite"' "${build_file}"
if grep -Eq 'tags = \["manual"\]' "${build_file}"; then
echo "failing_suite must be automated (not manual-only)" >&2
exit 1
fi