mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-28 04:09:41 -06:00
* api changes * doc changes * move docs * generated * generate * pkg * backmerge main * revert to main * revert main * race? * remove go tests
11 lines
247 B
Python
11 lines
247 B
Python
import pytest
|
|
|
|
from examples.logger.workflow import logging_workflow
|
|
|
|
|
|
@pytest.mark.asyncio(loop_scope="session")
|
|
async def test_run() -> None:
|
|
result = await logging_workflow.aio_run()
|
|
|
|
assert result["root_logger"]["status"] == "success"
|