Coverage for src/shephex/executor/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-06-20 14:13 +0200
« prev ^ index » next coverage.py v7.6.1, created at 2025-06-20 14:13 +0200
1"""
2Executors define the ways in which experiments are executed.
3"""
5from shephex.executor.executor import Executor, LocalExecutor
6from shephex.executor.slurm import SlurmExecutor
8__all__ = ['Executor', 'LocalExecutor', 'SlurmExecutor']