mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* mmcls -> mmpretrain * add constraints.txt * fix lint * fix lint * remove constraints.txt * fix windows ci * modify requirements * fix mdlink and mmpretrain version * fix dead link * modify codebase cmakelist * fix rename
11 lines
222 B
Python
11 lines
222 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def init_test():
|
|
# init default scope
|
|
from mmpretrain.utils import register_all_modules
|
|
|
|
register_all_modules(True)
|