Skip to content

Commit f605a6e

Browse files
author
Daniel Abercrombie
authored
Merge pull request #65 from dabercro/pass-echo
Pass _ECHO in site name check
2 parents 24b0da5 + df99627 commit f605a6e

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
language: python
22
cache: pip
3-
addons:
4-
apt:
5-
sources: debian-sid
6-
packages: shellcheck
3+
# IPv6 isn't working. Disable for now
4+
#addons:
5+
# apt:
6+
# sources: debian-sid
7+
# packages: shellcheck
78
matrix:
89
include:
910
- python: 2.6

CMSToolBox/workflowinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def site_to_run(self, task):
350350
all_site_list = site_list()
351351

352352
for site in site_set:
353-
clean_site = re.sub(r'_(Disk|MSS)$', '', site)
353+
clean_site = re.sub(r'_(ECHO_)?(Disk|MSS)$', '', site)
354354
if clean_site not in out_list and clean_site and \
355355
clean_site in all_site_list:
356356
out_list.append(clean_site)

0 commit comments

Comments
 (0)