File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11from typing import TypedDict
22
33
4- class TestParam (TypedDict ):
4+ class ProviderParam (TypedDict ):
55 provider_name : str
66
77 # How many of the top collections we will test, e.g. top 3 collections
Original file line number Diff line number Diff line change 99import pytest
1010from earthaccess import Auth , DataGranules , Store
1111
12- from .param import TestParam
12+ from .param import ProviderParam
1313from .sample import get_sample_granules , top_collections_for_provider
1414
1515logger = logging .getLogger (__name__ )
1616
1717
18- daac_list : list [TestParam ] = [
18+ daac_list : list [ProviderParam ] = [
1919 {
2020 "provider_name" : "NSIDC_CPRD" ,
2121 "n_for_top_collections" : 3 ,
Original file line number Diff line number Diff line change 55import pytest
66from earthaccess import Auth , DataGranules , Store
77
8- from .param import TestParam
8+ from .param import ProviderParam
99from .sample import get_sample_granules , top_collections_for_provider
1010
1111logger = logging .getLogger (__name__ )
1212
1313
14- daacs_list : list [TestParam ] = [
14+ daacs_list : list [ProviderParam ] = [
1515 {
1616 "provider_name" : "NSIDC_CPRD" ,
1717 "n_for_top_collections" : 2 ,
You can’t perform that action at this time.
0 commit comments