Changeset 25689


Ignore:
Timestamp:
10/19/20 13:48:45 (4 years ago)
Author:
jdquinn
Message:

CHG: Accidental commit

Location:
issm/trunk-jpl/test/NightlyRun
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/runme.m

    r25688 r25689  
    107107%Process Ids according to benchmarks{{{
    108108if strcmpi(benchmark,'nightly'),
    109         test_ids=intersect(test_ids,union([1:999],[2001:2500]));
     109        test_ids=intersect(test_ids,[1:999]);
    110110elseif strcmpi(benchmark,'validation'),
    111111        test_ids=intersect(test_ids,[1001:1999]);
  • issm/trunk-jpl/test/NightlyRun/runme.py

    r25688 r25689  
    114114    #Process Ids according to benchmarks {{{
    115115    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)))
    117117    elif benchmark == 'validation':
    118118        test_ids = test_ids.intersection(set(range(1001, 2000)))
Note: See TracChangeset for help on using the changeset viewer.