-
Hello, I am trying to run my
Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @skwzrd -- the typical pattern here is to call @task
def foo(arg1, arg2):
return arg1 + arg2
def test_foo():
assert foo.run(1, 2) == 3 |
Beta Was this translation helpful? Give feedback.
-
thanks a bunch @madkinsz ! |
Beta Was this translation helpful? Give feedback.
Hi @skwzrd -- the typical pattern here is to call
my_task.run()
in your tests, for example