Skip to content

Commit 6e1e39f

Browse files
authored
Update test_pytorch_models.py
1 parent 2e5ac1d commit 6e1e39f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_pytorch_models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@
1616

1717

1818
@pytest.mark.parametrize(
19-
"data",
19+
"detector_data",
2020
[
2121
("superanimal_bird", ["ssdlite"]),
2222
("superanimal_topviewmouse", ["fasterrcnn_resnet50_fpn_v2"]),
2323
("superanimal_quadruped", ["fasterrcnn_resnet50_fpn_v2"]),
24-
("superanimal_humanbody", ["rtmpose_x"]),
2524
]
2625
)
2726
def test_get_super_animal_detectors(data: tuple[str, list[str]]):
@@ -33,11 +32,12 @@ def test_get_super_animal_detectors(data: tuple[str, list[str]]):
3332

3433

3534
@pytest.mark.parametrize(
36-
"data",
35+
"posemodel_data",
3736
[
3837
("superanimal_bird", ["resnet_50"]),
3938
("superanimal_topviewmouse", ["hrnet_w32"]),
4039
("superanimal_quadruped", ["hrnet_w32"]),
40+
("superanimal_humanbody", ["rtmpose_x"]),
4141
]
4242
)
4343
def test_get_super_animal_pose_models(data: tuple[str, list[str]]):

0 commit comments

Comments
 (0)