mirror of
https://github.com/vale981/ray
synced 2025-03-10 05:16:49 -04:00
9 lines
247 B
Python
9 lines
247 B
Python
![]() |
from ray_release.config import Test
|
||
|
from ray_release.reporter.reporter import Reporter
|
||
|
from ray_release.result import Result
|
||
|
|
||
|
|
||
|
class RDSReporter(Reporter):
|
||
|
def report_result(self, test: Test, result: Result):
|
||
|
raise NotImplementedError
|