From 10ee89143e6d4916dbe32d1e6abb50386f57853a Mon Sep 17 00:00:00 2001 From: Gui Castelao Date: Thu, 5 Oct 2023 21:28:53 -0600 Subject: [PATCH] test: Reactivating tests and updating those --- tests/test_inrange.py | 16 ++++++---------- tests/test_storage.py | 2 +- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/tests/test_inrange.py b/tests/test_inrange.py index d4d0879..5eb2886 100644 --- a/tests/test_inrange.py +++ b/tests/test_inrange.py @@ -65,10 +65,8 @@ def test_matchup_L2_day_line(): assert data.lon.max() > 0 - -@pytest.mark.skip() def test_matchup_L3m(): - ds = db["A2017012.L3m_DAY_CHL_chlor_a_4km.nc"] + ds = db["AQUA_MODIS.20170112.L3m.DAY.CHL.chlor_a.4km.nc"] dL_tol = 12e3 dt_tol = timedelta64(6, 'h') track = DataFrame([ @@ -76,14 +74,12 @@ def test_matchup_L3m(): data = matchup_L3m(track, ds, dL_tol, dt_tol) # Dummy check - assert data.index.size == 7 - assert data.size == 42 + assert data.index.size == 23 + assert data.size == 138 - -@pytest.mark.skip() def test_matchup(): - ds = db["A2017012.L3m_DAY_CHL_chlor_a_4km.nc"] + ds = db["AQUA_MODIS.20170112.L3m.DAY.CHL.chlor_a.4km.nc"] dL_tol = 12e3 dt_tol = timedelta64(6, 'h') track = DataFrame([ @@ -91,8 +87,8 @@ def test_matchup(): data = matchup(track, ds, dL_tol, dt_tol) # Dummy check - assert data.index.size == 7 - assert data.size == 42 + assert data.index.size == 23 + assert data.size == 138 @pytest.mark.skip() diff --git a/tests/test_storage.py b/tests/test_storage.py index 7a0e7c2..7deacd9 100644 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -24,7 +24,7 @@ def test_parse_filename_AL2(): descriptors = parse_filename(filename) ans = { - "platform": "A", + "platform": "AQUA_MODIS", "year": "2011", "doy": "010", "time": "000000",