Files
ray-project--ray/ci/ray_ci/bisect/validator.py
T
2026-07-13 13:17:40 +08:00

13 lines
267 B
Python

import abc
from ray_release.test import Test
class Validator(abc.ABC):
@abc.abstractmethod
def run(self, test: Test, revision: str) -> bool:
"""
Validate whether the test is passing or failing on the given revision
"""
pass