Proposal: 1. Use anyhow for tests and avoid unwrap 2. Extract a helper for starting a test instance of codex
19 lines
377 B
Rust
19 lines
377 B
Rust
// Aggregates all former standalone integration tests as modules.
|
|
|
|
mod cli_stream;
|
|
mod client;
|
|
mod compact;
|
|
mod compact_resume_fork;
|
|
mod exec;
|
|
mod exec_stream_events;
|
|
mod fork_conversation;
|
|
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;
|