Changeset 27777


Ignore:
Timestamp:
05/31/23 10:05:41 (22 months ago)
Author:
vverjans
Message:

BUG: fixing runme.py that does not work

File:
1 edited

Legend:

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

    r27743 r27777  
    123123    i1, i2 = parallelrange(rank, numprocs, len(list_ids))  # Get tests for this CPU only
    124124    list_ids = list_ids[i1:i2 + 1]
    125     if len(id[0]) > 0 or len(id[1]) > 0:
     125    if np.size(id) > 0 and id is not None:
     126    #if len(id[0]) > 0 or len(id[1]) > 0:
    126127        test_ids = set(GetIds(id)).intersection(set(list_ids))
    127128        benchmark = None
Note: See TracChangeset for help on using the changeset viewer.