Skip to content

Commit

Permalink
Merge pull request #189 from WilliamJamieson/bugfix/representation
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamJamieson authored Jul 14, 2023
2 parents 088fad0 + 6e9678f commit 0c50251
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@

from asdf_astropy.testing.helpers import assert_representation_equal

IGNORED_REPRESENTATION_CLASSES = [
"WGS84GeodeticRepresentation",
"WGS72GeodeticRepresentation",
"GRS80GeodeticRepresentation",
]

REPRESENTATION_CLASSES = [
getattr(representation, class_name) for class_name in representation.__all__ if "Base" not in class_name
getattr(representation, class_name)
for class_name in representation.__all__
if "Base" not in class_name and class_name not in IGNORED_REPRESENTATION_CLASSES
]


Expand Down

0 comments on commit 0c50251

Please sign in to comment.