mozci/push.py [1090:1104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self, runnable_type: str, historical_analysis: bool = True
    ) -> Set[str]:
        """The set of all runnables that may have been regressed by this push.

        A possible regression is a candidate_regression that didn't run on one or
        more parent pushes.

        Returns:
            set: Set of runnables (str).
        """
        return set(
            name
            for name, count in self.get_regressions(
                runnable_type, historical_analysis
            ).items()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mozci/push.py [1109:1124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self, runnable_type: str, historical_analysis: bool = True
    ) -> Set[str]:
        """The set of all runnables that were likely regressed by this push.

        A likely regression is a candidate_regression that both ran and passed
        on the immediate parent push. It still isn't a sure thing as the task
        could be intermittent.

        Returns:
            set: Set of runnables (str).
        """
        return set(
            name
            for name, count in self.get_regressions(
                runnable_type, historical_analysis
            ).items()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



