13 lines
267 B
Python
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
|