mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* support tsn * support slowfast * fix export info & End2EndModel * add test * fix forward * fix lint * update tests * add onnxruntime 2d config * fix ort-gpu * add mmaction.yml, need to update * fix reviews * add ann.txt * add visualize * fix lint * rebase * add conftest.py * fix circle ci * fix registry * fix regression test
11 lines
220 B
Python
11 lines
220 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def init_test():
|
|
# init default scope
|
|
from mmaction.utils import register_all_modules
|
|
|
|
register_all_modules(True)
|