conftest.py 220 Bytes
Newer Older
limm's avatar
limm committed
1
2
3
4
5
6
7
8
9
10
# 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)