dml_util.runners.container#
Container-based execution runners.
This module provides runners for executing tasks in container environments, such as Docker. These runners can execute commands in isolated containers with specific images and configurations.
Classes
|
Runs a command in a Docker container. |
|
A test runner that simulates Docker for testing. |
- class dml_util.runners.container.DockerRunner(config, input)[source]#
Bases:
RunnerBase
Runs a command in a Docker container.
- Parameters:
config (EnvConfig)
input (InputConfig)
- class dml_util.runners.container.Test(config, input)[source]#
Bases:
DockerRunner
A test runner that simulates Docker for testing.
- Parameters:
config (EnvConfig)
input (InputConfig)