Skip to main content

torrust_tracker_deployer_lib/testing/e2e/tasks/container/
mod.rs

1//! Container-specific E2E tasks
2//!
3//! This module contains tasks that are specifically designed for container-based
4//! E2E testing using Docker containers instead of VMs. These tasks handle the
5//! unique requirements and workflows when using testcontainers for testing
6//! infrastructure deployment.
7//!
8//! ## Tasks Overview
9//!
10//! - `cleanup_infrastructure` - Stops and cleans up Docker containers after testing
11//! - `preflight_cleanup` - Container-specific preflight cleanup operations
12
13pub mod cleanup_infrastructure;
14pub mod preflight_cleanup;