Is it possible to capture the function arguments and results?
For example:
@task(capture_args=True)
def test(x, y, opt=True)
return x*y
test(1,2, True)
And then test would have args kwargs and results captured.
I guess manually add_artifacts(*args, *kwargs) to the function could work, but then you have to change the code of the functions...
Is it possible to capture the function arguments and results?
For example:
And then test would have args kwargs and results captured.
I guess manually
add_artifacts(*args, *kwargs)to the function could work, but then you have to change the code of the functions...