I'm trying to implement the build process from master.cfg in BuildBot
I created common utility python packages which can be used while build-process,
So while adding steps in util.BuildFactory() I want to execute the python methods from my custom build-package.
I refereed the Adding customized functions to Buildbot.
I imported my custom package into master.cfg in buildbot, but still can not call this method directly with factory.addStep.
I tried another alternative, created a python script, import the custom-build utility package, and then run this script with steps.ShellCommand (command = ['python', 'myScript.py'])
But there will be additional script maintains for particular build process and I can't reuse that script.
Can anyone show me how to call python method from build process of buildbot.