Skip to content

Commit

Permalink
Fix missing ShowLabels from check_all_components_ui (#7301)
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc authored Aug 28, 2024
1 parent 3fdc7c1 commit 68360ee
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions tests/python/release_checklist/check_all_components_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,27 @@ def alternatives(self) -> list[Any] | None:
),
"ImagePlaneDistanceBatch": TestCase(batch=[100.0, 200.0, 300.0]),
"KeypointIdBatch": TestCase(batch=[5, 6, 7]),
"LineStrip2DBatch": TestCase(batch=[((0, 0), (1, 1), (2, 2)), ((3, 3), (4, 4), (5, 5)), ((6, 6), (7, 7), (8, 8))]),
"LineStrip2DBatch": TestCase(
batch=[
((0, 0), (1, 1), (2, 2)),
((3, 3), (4, 4), (5, 5)),
((6, 6), (7, 7), (8, 8)),
]
),
"LineStrip3DBatch": TestCase(
batch=[((0, 0, 0), (1, 1, 1), (2, 2, 2)), ((3, 3, 3), (4, 4, 4), (5, 5, 5)), ((6, 6, 6), (7, 7, 7), (8, 8, 8))]
batch=[
((0, 0, 0), (1, 1, 1), (2, 2, 2)),
((3, 3, 3), (4, 4, 4), (5, 5, 5)),
((6, 6, 6), (7, 7, 7), (8, 8, 8)),
]
),
"MagnificationFilterBatch": TestCase(rr.components.MagnificationFilter.Linear),
"MarkerShapeBatch": TestCase(
batch=[rr.components.MarkerShape.Plus, rr.components.MarkerShape.Cross, rr.components.MarkerShape.Circle]
batch=[
rr.components.MarkerShape.Plus,
rr.components.MarkerShape.Cross,
rr.components.MarkerShape.Circle,
]
),
"MarkerSizeBatch": TestCase(batch=[5.0, 1.0, 2.0]),
"MediaTypeBatch": TestCase("application/jpg"),
Expand All @@ -170,6 +184,7 @@ def alternatives(self) -> list[Any] | None:
"RotationQuatBatch": TestCase(batch=((1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0))),
"ScalarBatch": TestCase(3),
"Scale3DBatch": TestCase(batch=[(1, 2, 3), (4, 5, 6), (7, 8, 9)]),
"ShowLabelsBatch": TestCase(alternatives=[True, False]),
"StrokeWidthBatch": TestCase(2.0),
"TensorDataBatch": TestCase(
alternatives=[
Expand Down

0 comments on commit 68360ee

Please sign in to comment.