diff options
| author | hathach <[email protected]> | 2026-09-04 22:55:53 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2026-09-04 22:55:53 +0700 |
| commit | 9a22ec66115d43d94e22e08909b04952958076f4 (patch) | |
| tree | 7665039f2b559bdb34c5321799157456a5c6b800 /test | |
| parent | 1adfb1c74ff3cc6618a9b37e76ab2feadc09f8e8 (diff) | |
tools: share Claude harness with Codex
Diffstat (limited to 'test')
| -rw-r--r-- | test/hil/test/test_ci_select.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/hil/test/test_ci_select.py b/test/hil/test/test_ci_select.py index 22fbde17b..61d3f23a4 100644 --- a/test/hil/test/test_ci_select.py +++ b/test/hil/test/test_ci_select.py @@ -203,6 +203,11 @@ class TestFallbackRules(unittest.TestCase): self.assertFalse(s['full']) self.assertEqual(s['boards'], {}) + def test_agent_metadata_is_empty_not_full(self): + s = sel(['.agents', '.codex/agents/builder.toml']) + self.assertFalse(s['full']) + self.assertEqual(s['boards'], {}) + def test_bsp_family_selects_family_boards(self): s = sel(['hw/bsp/rp2040/family.cmake']) self.assertFalse(s['full']) @@ -1624,7 +1629,7 @@ class TestBuildClassifier(unittest.TestCase): '.clang-format', '.idea/misc.xml', 'version.yml', 'library.json', 'examples/CMakePresets.json', 'test/fuzz/fuzz.cc', 'test/unit-test/project.yml', '.github/workflows/pr_comment.yml', - 'tools/gen_doc.py'): + 'tools/gen_doc.py', '.agents', '.codex/agents/builder.toml'): s = self.b([p]) self.assertFalse(s['full'], p) self.assertEqual(s['families'], [], p) |
