Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit b6b05e8

Browse files
committed
skip rucio testing WF in chechor, equalizor, subscribor
1 parent 73d1a81 commit b6b05e8

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

Unified/checkor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ def rank( wfn ):
236236
for iwfo,wfo in enumerate(wfs):
237237
## do the check other one workflow
238238
if spec and not (spec in wfo.name): continue
239+
if not options.manual and 'rucio' in (wfo.name).lower(): continue
239240
checkers.append( CheckBuster(
240241
will_do_that_many = will_do_that_many,
241242
url = url,

Unified/equalizor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ def close( interface ):
386386

387387
if specific and not specific in wfo.name:
388388
continue
389+
if not options.manual and 'rucio' in (wfo.name).lower(): continue
389390
if specific:
390391
wfi = workflowInfo(url, wfo.name)
391392
else:

Unified/subscribor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
wl = getWorkLoad(url, wfn)
4949

5050
print "%s/%s:"%(iw,len(wfs)),wfn
51-
51+
if 'rucio' in wfn.lower(): continue
5252
if not wl:
5353
continue
5454
outs= wl['OutputDatasets']

0 commit comments

Comments
 (0)