mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
11 lines
219 B
Python
11 lines
219 B
Python
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True)
|
||
|
def init_test():
|
||
|
# init default scope
|
||
|
from mmdet3d.utils import register_all_modules
|
||
|
|
||
|
register_all_modules(True)
|