hideStepIf adjustment, part 2
This commit is contained in:
parent
baeedd0abb
commit
210dbb70c4
1 changed files with 9 additions and 1 deletions
10
master.cfg
10
master.cfg
|
@ -575,9 +575,17 @@ class CleanupBreakageLockfile (ShellCommand):
|
||||||
|
|
||||||
def scheduler_is_racy (step):
|
def scheduler_is_racy (step):
|
||||||
return step.getProperty ('scheduler') == 'racy'
|
return step.getProperty ('scheduler') == 'racy'
|
||||||
|
def scheduler_is_racy_hide (result, step):
|
||||||
|
return scheduler_is_racy (step)
|
||||||
|
def scheduler_is_racy_do (step):
|
||||||
|
return scheduler_is_racy (step)
|
||||||
|
|
||||||
def scheduler_is_not_racy (result, step):
|
def scheduler_is_not_racy (step):
|
||||||
return step.getProperty ('scheduler') != 'racy'
|
return step.getProperty ('scheduler') != 'racy'
|
||||||
|
def scheduler_is_not_racy_hide (result, step):
|
||||||
|
return scheduler_is_not_racy (step)
|
||||||
|
def scheduler_is_not_racy_do (step):
|
||||||
|
return scheduler_is_not_racy (step)
|
||||||
|
|
||||||
#######################
|
#######################
|
||||||
#### Build Factory ####
|
#### Build Factory ####
|
||||||
|
|
Loading…
Reference in a new issue