Changeset 2382


Ignore:
Timestamp:
07/13/22 14:47:38 (2 years ago)
Author:
jderouillat
Message:

Disable temporary checking of axis/domain in v3 test suite (elements names are different from references), to reenable checking of fields

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/xios_test_suite/TEST_SUITE/step2.py

    r2317 r2382  
    132132                            for var in res.variables: 
    133133                                print("checkfile = ", checkfile, ", var = ", var) 
    134                                 if (not (var.startswith('lon_'))) and (not (var.startswith('lat_'))) and (not (var.startswith('time_'))) and (not (var.startswith('atm__')) and (var!="lat") and (var!="lon") ): 
     134                                if (not (var.startswith('lon_'))) and (not (var.startswith('lat_'))) and (not (var.startswith('time_'))) and (not (var.startswith('atm__')) and (var!="lat") and (var!="lon") ) and \ 
     135                                        (var!="axis") and (not (var.startswith('axis_')))and (not (var.startswith('domain_'))) and (not (var.startswith('default_pool_id__default_gatherer_id_0__atm__'))): 
    135136                                    ref_interp = ref.variables[var] 
    136137                                    ref_array = ref_interp[:] 
Note: See TracChangeset for help on using the changeset viewer.