Yes, more buildbot noise. Maybe the poor buildbot needs its own repository
until things settle down. heh
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2192
9efc2488-bf62-4759-914b-
345cdb29e865
# -*- python -*-
# vim: set syntax=python:et:ts=4:sw=4:
+import os.path
# This is a sample buildmaster config file. It must be installed as
# 'master.cfg' in your buildmaster's base directory.
total = 0
def has_perl_unit_tests(step):
- if (step.build.getProperty('branch') == 'branches/rel_1_6'):
- return False
- elif (step.build.getProperty('branch') == 'branches/rel_2_0'):
+ if (os.path.exists(os.path.join('build/Open-ILS/src/perlmods', 'lib/OpenILS/Utils/MFHD/test'))):
return False
return True