From 53dcbd4d97ff1b83c4db030571bfa88750dcb06a Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Wed, 9 Apr 2014 15:28:43 -0700 Subject: Implement run iterations Instead of blocking the caller when they call run() allow there to be a new api run_iter() that will yield back the engine state transitions while running. This allows for a engine user to do alternate work while an engine is running (and come back to yield on there own time). Implements blueprint iterable-execution Change-Id: Ibb48c6c5618c97c59a6ab170dab5233ed47e5554 --- taskflow/tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'taskflow/tests/utils.py') diff --git a/taskflow/tests/utils.py b/taskflow/tests/utils.py index 20fc375..d879321 100644 --- a/taskflow/tests/utils.py +++ b/taskflow/tests/utils.py @@ -258,7 +258,7 @@ class EngineTestBase(object): conn.clear_all() super(EngineTestBase, self).tearDown() - def _make_engine(self, flow, flow_detail=None): + def _make_engine(self, flow, **kwargs): raise NotImplementedError() -- cgit v1.2.1