Move 17 library crates into crates/, CLI binary into bin/fxt, consolidate 10 test crates into testing/, split config crate from deployment config files. Root directory reduced from 38+ to ~17 directories. All Cargo.toml paths and build.rs proto refs updated. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
596 B
Rust
33 lines
596 B
Rust
//! End-to-End Tests for TLI Training Commands
|
|
//!
|
|
//! This module contains comprehensive E2E tests for all TLI training commands:
|
|
//! - train start
|
|
//! - train watch
|
|
//! - train status
|
|
//! - train list
|
|
//! - train stop
|
|
//! - Full user workflows
|
|
|
|
// Mock services and fixtures
|
|
pub mod mock_ml_training_service;
|
|
pub mod test_fixtures;
|
|
|
|
// E2E test modules
|
|
#[cfg(test)]
|
|
mod train_list_e2e_test;
|
|
|
|
#[cfg(test)]
|
|
mod train_start_e2e_test;
|
|
|
|
#[cfg(test)]
|
|
mod train_watch_e2e_test;
|
|
|
|
#[cfg(test)]
|
|
mod train_status_e2e_test;
|
|
|
|
#[cfg(test)]
|
|
mod train_stop_e2e_test;
|
|
|
|
#[cfg(test)]
|
|
mod full_user_workflow_test;
|