From d43147ffe9f25387ae814222bc557ce5175e707c Mon Sep 17 00:00:00 2001 From: henryruhs Date: Wed, 5 Mar 2025 12:48:56 +0100 Subject: [PATCH] Add space --- tests/test_face_analyser.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_face_analyser.py b/tests/test_face_analyser.py index b15400e..8692684 100644 --- a/tests/test_face_analyser.py +++ b/tests/test_face_analyser.py @@ -52,6 +52,7 @@ def test_get_one_face_with_retinaface() -> None: get_test_example_file('source-70crop.jpg'), get_test_example_file('source-60crop.jpg') ] + for source_path in source_paths: source_frame = read_static_image(source_path) many_faces = get_many_faces([ source_frame ]) @@ -72,6 +73,7 @@ def test_get_one_face_with_scrfd() -> None: get_test_example_file('source-70crop.jpg'), get_test_example_file('source-60crop.jpg') ] + for source_path in source_paths: source_frame = read_static_image(source_path) many_faces = get_many_faces([ source_frame ]) @@ -92,6 +94,7 @@ def test_get_one_face_with_yoloface() -> None: get_test_example_file('source-70crop.jpg'), get_test_example_file('source-60crop.jpg') ] + for source_path in source_paths: source_frame = read_static_image(source_path) many_faces = get_many_faces([ source_frame ])