def __init__()

in container_images/pytest/main.py [0:0]


  def __init__(self, repo_root: Path, package_root: Path,
               envlist: typing.Iterable[str],
               pip_deps: typing.Iterable[str],
               local_deps: typing.Iterable[str]):
    """ The user's test specifications.

    Args:
      repo_root: Filesystem path to the repo's root directory.
      package_root: Filesystem path to the Python package's root directory.
      envlist: Interpreters to run tests with.
      pip_deps: List of dependencies from Pip
      local_deps: List of dependencies installable from this repo.
    """
    self.repo_root = repo_root
    self.package_root = package_root
    self.envlist = envlist
    self.pip_deps = pip_deps
    self.local_deps = local_deps