Files
open_dbm/tests/movement/conftest.py
2022-09-23 19:25:32 +07:00

12 lines
197 B
Python

from pytest import fixture
path1 = "tests/test_data/movement_video_test.mp4"
@fixture(scope="class")
def processing_movement(get_model):
m = get_model.movement
m.fit(path1)
yield m