You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
387 B
10 lines
387 B
# Copyright (c) OpenMMLab. All rights reserved.
|
|
# flake8: noqa
|
|
import pytest
|
|
|
|
|
|
def test_old_fashion_registry_importing():
|
|
with pytest.warns(DeprecationWarning):
|
|
from mmpose.models.registry import BACKBONES, HEADS, LOSSES, NECKS, POSENETS # isort: skip
|
|
with pytest.warns(DeprecationWarning):
|
|
from mmpose.datasets.registry import DATASETS, PIPELINES # noqa: F401
|
|
|