Skip to content

Commit

Permalink
Reduce number of supported formats.
Browse files Browse the repository at this point in the history
  • Loading branch information
mairanteodoro committed Nov 7, 2024
1 parent 7999a59 commit c5dd2dd
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions romancal/tweakreg/tests/test_astrometric_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,22 +475,7 @@ def test_create_astrometric_catalog_write_results_to_disk(tmp_path, base_image):
table.Table.write.list_formats(out=fh)
fh.seek(0)
list_of_supported_formats = [
x.strip().split()[0]
for x in fh.readlines()[2:]
if x.strip().split()[1].lower() == "yes"
]
# exclude data formats
[
list_of_supported_formats.remove(x)
for x in [
"asdf",
"fits",
"hdf5",
"parquet",
"pandas.html",
"pandas.json",
"pandas.csv",
]
"ascii.ecsv", "fits"
]

for table_format in list_of_supported_formats:
Expand Down

0 comments on commit c5dd2dd

Please sign in to comment.