Source code for runway.tests.handlers.base

"""Base module for test handlers."""

from __future__ import annotations

import os
from typing import TYPE_CHECKING, Any

if TYPE_CHECKING:
    from ...config.components.runway.base import ConfigProperty


[docs] class TestHandler: """Base class for test handlers."""
[docs] @classmethod def handle(cls, name: str, args: ConfigProperty | dict[str, Any]) -> None: """Redefine in subclass.""" raise NotImplementedError
[docs] @staticmethod def get_dirs(provided_path: str) -> list[str]: """Return list of directories.""" repo_dirs = next(os.walk(provided_path))[1] if ".git" in repo_dirs: repo_dirs.remove(".git") # not relevant for any repo operations return repo_dirs