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

12 lines
214 B
Python

from pytest import fixture
path1 = "tests/test_data/facial_speech_verbal_video_test.mp4"
@fixture(scope="class")
def processing_facial_activity(get_model):
m = get_model.facial
m.fit(path1)
yield m