File size: 387 Bytes
3bbb319 |
1 2 3 4 5 6 7 8 9 10 11 |
# 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
|