QuasarAppCI/BuildBotLib/testmodule.py
2019-07-22 10:20:59 +03:00

19 lines
552 B
Python

# This Python file uses the following encoding: utf-8
import BuildBotLib.basemodule as base
from buildbot.plugins import util, steps
def getFactory():
factory = base.getFactory();
factory.addStep(steps.Git(repourl='git://github.com/buildbot/hello-world.git', mode='incremental'));
factory.addStep(steps.ShellCommand(command=["trial", "hello"],
env={"PYTHONPATH": "."}));
return factory
def getRepo():
return "git://github.com/buildbot/hello-world.git";
def getPropertyes():
return []