diff options
| author | Ha Thach <[email protected]> | 2026-09-05 00:17:48 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-09-05 00:17:48 +0700 |
| commit | 91127e108c7a948be5bbf93be9655454fcc0bcb9 (patch) | |
| tree | 76e4af4f6b1958f4799c5a3373125eddd23dbded /test | |
| parent | 29851564af08cb4909175315d20c71f5eca13040 (diff) | |
| parent | 9a22ec66115d43d94e22e08909b04952958076f4 (diff) | |
Merge pull request #3884 from hathach/claude/codex-collaboration
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) |
