Skip to content

Commit

Permalink
few checks on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jlmaurer committed Feb 18, 2024
1 parent f818eac commit 8005823
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_GUNW.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def compute_transform(lats, lons):


@pytest.mark.isce3
@pytest.mark.parametrize('weather_model_name', ['MERRA2'])
@pytest.mark.parametrize('weather_model_name', ['GMAO'])
def test_GUNW_dataset_update(test_dir_path, test_gunw_path_factory, weather_model_name,
weather_model_dict_for_gunw_integration_test, mocker):
"""The GUNW from test gunw factor is:
Expand Down Expand Up @@ -277,7 +277,7 @@ def test_azimuth_timing_interp_against_center_time_interp(weather_model_name: st
assert np.nanmax(abs_diff_mm) < 1


@pytest.mark.parametrize('weather_model_name', ['MERRA2', 'HRRR', 'HRES', 'ERA5', 'ERA5T'])
@pytest.mark.parametrize('weather_model_name', ['HRRR', 'HRES', 'ERA5', 'ERA5T'])
def test_check_weather_model_availability(test_gunw_path_factory, weather_model_name, mocker):
# Should be True for all weather models
# S1-GUNW-D-R-071-tops-20200130_20200124-135156-34956N_32979N-PP-913f-v2_0_4.nc
Expand Down
2 changes: 2 additions & 0 deletions tools/RAiDER/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
from .gmao import GMAO
from .hres import HRES
from .hrrr import HRRR, HRRRAK
from .merra2 import MERRA2
from .ncmr import NCMR

__all__ = ['HRRR', 'HRRRAK', 'GMAO', 'ERA5', 'ERA5T', 'HRES', 'MERRA2']

0 comments on commit 8005823

Please sign in to comment.