diff --git a/asdf_astropy/converters/time/tests/test_time.py b/asdf_astropy/converters/time/tests/test_time.py index 1af95da4..6559fe34 100644 --- a/asdf_astropy/converters/time/tests/test_time.py +++ b/asdf_astropy/converters/time/tests/test_time.py @@ -133,6 +133,10 @@ def create_formats(): formats = [] for format_ in TIME_FORMATS: + if format_ == "stardate": + # stardate is not a documented format for astropy + # https://docs.astropy.org/en/latest/time/index.html#time-format + continue new = Time("B2000.0") new.format = format_ formats.append(new)