mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
10 lines
213 B
Python
10 lines
213 B
Python
![]() |
from ray_release.config import Test
|
||
|
from ray_release.result import Result
|
||
|
|
||
|
|
||
|
class Reporter:
|
||
|
"""Reporter interface"""
|
||
|
|
||
|
def report_result(self, test: Test, result: Result):
|
||
|
raise NotImplementedError
|