Add comprehensive test suite (64 tests) and fix CI#2
Open
SuperInstance wants to merge 2 commits intomainfrom
Open
Add comprehensive test suite (64 tests) and fix CI#2SuperInstance wants to merge 2 commits intomainfrom
SuperInstance wants to merge 2 commits intomainfrom
Conversation
added 2 commits
April 12, 2026 18:32
- Tests for agent_bridge.py: GitHubBridge (init, read/write file, list files, bottles, clone, create vessel, open issue, get commits, discover agents), FluxAgentRuntime (init), KeeperAgentBridge (init, boot, pack_baton with quality gate) - Tests for i2i_agent_bridge.py: I2IAgentBridge (init, API layer, I2I protocol with all 20 message types, envelope format, routing to for-fleet vs for-oracle1), task execution (taskboard/issue/bottle), repo analysis, fleet improvements, diary logging, status reporting, boot sequence, energy/confidence mechanics - CI fix: remove '|| true' that masked test failures
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
|| truethat was masking test failuresTests Added
agent_bridge.pyi2i_agent_bridge.pyCI Fix
The existing CI had
|| trueappended to the pytest command, meaning all test failures were silently swallowed and CI always passed (green). Removed the|| trueso test failures now properly fail CI.All 64 tests pass in <1 second.