diff options
Diffstat (limited to 'source/master.cfg')
-rw-r--r-- | source/master.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/master.cfg b/source/master.cfg index c2713ef..5e91e60 100644 --- a/source/master.cfg +++ b/source/master.cfg @@ -79,15 +79,15 @@ from buildbot.steps.shell import ShellCommand builders_factory = BuildFactory() # run the tests (note that this will require that 'trial' is installed) -builders_factory.addStep(ShellCommand(command=["sh","../../../source/builders_trigger.sh"])) +builders_factory.addStep(ShellCommand(command=["sh","../../../../source/builders_trigger.sh"])) firehose_factory = BuildFactory() # run the tests (note that this will require that 'trial' is installed) -firehose_factory.addStep(ShellCommand(command=["sh","../../../source/firehose_trigger.sh"])) +firehose_factory.addStep(ShellCommand(command=["sh","../../../../source/firehose_trigger.sh"])) testing_factory = BuildFactory() # run the tests (note that this will require that 'trial' is installed) -testing_factory.addStep(ShellCommand(command=["sh","../../../source/testing_trigger.sh"])) +testing_factory.addStep(ShellCommand(command=["sh","../../../../source/testing_trigger.sh"])) from buildbot.config import BuilderConfig |