Changeset 25689
- Timestamp:
- 10/19/20 13:48:45 (4 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/runme.m
r25688 r25689 107 107 %Process Ids according to benchmarks{{{ 108 108 if strcmpi(benchmark,'nightly'), 109 test_ids=intersect(test_ids, union([1:999],[2001:2500]));109 test_ids=intersect(test_ids,[1:999]); 110 110 elseif strcmpi(benchmark,'validation'), 111 111 test_ids=intersect(test_ids,[1001:1999]); -
issm/trunk-jpl/test/NightlyRun/runme.py
r25688 r25689 114 114 #Process Ids according to benchmarks {{{ 115 115 if benchmark == 'nightly': 116 test_ids = test_ids.intersection(set(range(1, 1000)) .union(set(range(2001, 2500))))116 test_ids = test_ids.intersection(set(range(1, 1000))) 117 117 elif benchmark == 'validation': 118 118 test_ids = test_ids.intersection(set(range(1001, 2000)))
Note:
See TracChangeset
for help on using the changeset viewer.