Jordan W
07/12/2021, 11:02 PMasync
solids? currently working through this and there is a DagsterTypeCheckDidNotPass
with type failure along the lines of expected return_type got coroutine
. Our tests that use execute_solid
for our async solids still work fwiw@solid
async def foo_async() -> str:
return "bar"
@pytest.mark.asyncio
async def test_foo():
result = await foo_async()
assert result == "bar"
alex
07/13/2021, 4:23 PMJordan W
07/13/2021, 4:33 PMchris
07/13/2021, 4:35 PMalex
07/13/2021, 4:36 PMJordan W
07/13/2021, 4:36 PMcoroutine
but expects str
sorry if that wasnt clearchris
07/13/2021, 4:47 PM