Skip to content

Commit

Permalink
BUG: turn off icon downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Dec 20, 2023
1 parent 2ef2a70 commit e595747
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pysatModels/models/ucar_tiegcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

_test_dates = {'': {'': dt.datetime(2019, 1, 1),
'icon': dt.datetime(2020, 1, 10)}}
# TODO (#132): Turn on ICON download tests once pysatNASA 0.0.6 is released.
# TODO(#132): Turn on ICON download tests once pysatNASA 0.0.6 is released.
_test_download = {'': {'': False, 'icon': False}}
_clean_warn = {'': {tag: general.clean_warn for tag in tags.keys()}}

Expand Down Expand Up @@ -245,7 +245,10 @@ def download(date_array, tag, inst_id, data_path=None, **kwargs):

if tag == '':
warnings.warn('Not implemented, currently no support for Globus.')
# TODO(#132): Ensure new download routine is used after pysatNASA release.
elif tag == 'icon':
warnings.warn('Not implemented, requires pysatNASA 0.0.6.')
elif tag == 'future_icon':
# Set up temporary directory for zip files
temp_dir = tempfile.TemporaryDirectory()

Expand Down

0 comments on commit e595747

Please sign in to comment.