Extracting tasks in a module and start abstraction behind a Trait (more to come on this but each task will be tackled in a dedicated PR) The goal was to drop the ActiveTask and to have a (potentially) set of tasks during each turn
22 lines
446 B
Rust
22 lines
446 B
Rust
// Aggregates all former standalone integration tests as modules.
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
mod abort_tasks;
|
|
mod cli_stream;
|
|
mod client;
|
|
mod compact;
|
|
mod compact_resume_fork;
|
|
mod exec;
|
|
mod exec_stream_events;
|
|
mod fork_conversation;
|
|
mod json_result;
|
|
mod live_cli;
|
|
mod model_overrides;
|
|
mod prompt_caching;
|
|
mod review;
|
|
mod rollout_list_find;
|
|
mod seatbelt;
|
|
mod stream_error_allows_next_turn;
|
|
mod stream_no_completed;
|
|
mod user_notification;
|