mrv.automation.workflows
Covered: 12 lines
Missed: 0 lines
Skipped 16 lines
Percent: 100 %
 2
"""Keeps all workflows specific to maya
 4
:note: ``createWorkflow`` method must be supported in a module keeping workflows
 5
:todo: it would be better to have the createWorkflow method in some sort of workflowManager,
 6
	for now that appears like overkill though 
 7
"""
 8
__docformat__ = "restructuredtext"
10
from mrv.path import make_path
11
_this_module = __import__( "mrv.automation.workflows", globals(), locals(), ['workflows'] )
12
import pydot
13
import mrv.automation.processes
17
import mrv.automation.base as common
20
common.addWorkflowsFromDotFiles( _this_module, make_path( __file__ ).parent().glob( "*.dot" ) )