mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-06 00:31:18 +00:00
8 lines
170 B
Python
8 lines
170 B
Python
![]() |
from click.testing import Result
|
||
|
|
||
|
|
||
|
def assert_result_ok(result: Result) -> None:
|
||
|
if result.exception:
|
||
|
raise result.exception
|
||
|
assert result.exit_code == 0
|