Changeset 27209


Ignore:
Timestamp:
08/16/22 16:44:23 (3 years ago)
Author:
jdquinn
Message:

BUG: Reverting last change because of test set partitioning bug

File:
1 edited

Legend:

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

    r27202 r27209  
    88#
    99import argparse
     10from glob import glob
    1011import os
    11 import re
     12from re import search, split
    1213from sys import float_info
    1314from traceback import format_exc
     
    115116    # }}}
    116117    #GET ids  {{{
    117     flist = [f for f in os.listdir('.') if re.match('test[0-9]+.py', f)] # File name must follow the format "test<integer>.py"
    118     list_ids = [int(re.search(r'\d+',file.split('.')[0]).group()) for file in flist] # Retrieve test IDs
    119     i1, i2 = parallelrange(rank, numprocs, len(list_ids))  # Get tests for this CPU only
     118    flist = glob('test*.py')  #File name must start with 'test' and must end by '.py' and must be different than 'test.py'
     119    list_ids = [int(search(r'\d+',file.split('.')[0]).group()) for file in flist if not file == 'test.py'] # Keep test id only (skip 'test' and '.py')
     120
     121    i1, i2 = parallelrange(rank, numprocs, len(list_ids))  #Get tests for this cpu only
    120122    list_ids = list_ids[i1:i2 + 1]
    121123    if np.size(id) > 0 and id is not None:
     
    170172    test_ids = list(test_ids)
    171173    test_ids.sort()
    172     print(test_ids)
    173174    # }}}
    174175
     
    212213                for key in mdl.results.__dict__.keys():
    213214                    if 'Solution' in key:
    214                         solvetype = re.split('Solution', key)[0]
     215                        solvetype = split('Solution', key)[0]
    215216
    216217                #we save the results, scrap them and solve.
     
    223224                    try:
    224225                        #first look for indexing
    225                         if re.search(r'\d+$', fieldname):
    226                             index = int(re.search(r'\d+$', fieldname).group()) - 1
    227                             fieldname = fieldname[:re.search(r'\d+$', fieldname).start()]
     226                        if search(r'\d+$', fieldname):
     227                            index = int(search(r'\d+$', fieldname).group()) - 1
     228                            fieldname = fieldname[:search(r'\d+$', fieldname).start()]
    228229                        elif 'FirstStep' in fieldname:
    229230                            index = 0
    230                             fieldname = fieldname[:re.search('FirstStep', fieldname).start()]
     231                            fieldname = fieldname[:search('FirstStep', fieldname).start()]
    231232                        elif 'SecondStep' in fieldname:
    232233                            index = 1
    233                             fieldname = fieldname[:re.search('SecondStep', fieldname).start()]
     234                            fieldname = fieldname[:search('SecondStep', fieldname).start()]
    234235                        elif 'ThirdStep' in fieldname:
    235236                            index = 2
    236                             fieldname = fieldname[:re.search('ThirdStep', fieldname).start()]
     237                            fieldname = fieldname[:search('ThirdStep', fieldname).start()]
    237238                        else:
    238239                            index = 0
     
    269270                                    #probably severalmatches, we take the last one which should be the good one (Needs to be controled in the list above)
    270271                                    sufix = sufixes[np.squeeze(np.where([suf in fieldname for suf in sufixes]))[-1]]
    271                                 fieldname = fieldname[:re.search(sufix, fieldname).start()]
     272                                fieldname = fieldname[:search(sufix, fieldname).start()]
    272273                            elif fieldname.endswith("P") and index == 1:
    273274                                #we are looking for P2 but 2 as been considered as an index and so shifted by -1
Note: See TracChangeset for help on using the changeset viewer.