Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/cortex-agents/src/forge/agents/dynamic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ patterns = ["println!", "dbg!"]
}

#[tokio::test]
#[ignore = "Windows CI: std::env::temp_dir() path resolution issues"]
async fn test_dynamic_agent_validate() {
let agent = DynamicAgent::new("test").with_name("Test Agent");

Expand Down
1 change: 1 addition & 0 deletions src/cortex-core/src/frame_engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,7 @@ mod tests {
}

#[tokio::test]
#[ignore = "Requires terminal (crossterm EventStream) which is unavailable in CI"]
async fn test_engine_stops_on_flag() {
let (tx, mut rx) = create_event_channel();
let running = Arc::new(AtomicBool::new(true));
Expand Down
3 changes: 3 additions & 0 deletions src/cortex-tui/src/runner/event_loop/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,9 @@ impl EventLoop {
"history" => {
self.handle_history();
}
"models:fetch-and-pick" => {
self.handle_open_modal(ModalType::ModelPicker).await;
}
_ => {
self.app_state
.toasts
Expand Down