| 543 | |
| 544 | @dataclass(frozen=True) |
| 545 | class TestDataSource(datasource.DataSource): |
| 546 | __test__ = False |
| 547 | |
| 548 | def is_bounded(self) -> bool: |
| 549 | raise NotImplementedError() |
| 550 | |
| 551 | def is_append_only(self) -> bool: |
| 552 | return False |
| 553 | |
| 554 | |
| 555 | def apply_defaults_for_run_kwargs(kwargs): |
no outgoing calls