Coverage for src/shephex/executor/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-03-29 18:45 +0100
« prev ^ index » next coverage.py v7.6.1, created at 2025-03-29 18:45 +0100
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']