From 864898419e810055b51e3a32fccb00a62aab9a6b Mon Sep 17 00:00:00 2001 From: Brianna Rainey Date: Thu, 22 Jan 2026 21:53:26 -0500 Subject: add GitHub Action to run tests --- tests/test_text_comp.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_text_comp.py') diff --git a/tests/test_text_comp.py b/tests/test_text_comp.py index 3bc0be6..23dd1fd 100644 --- a/tests/test_text_comp.py +++ b/tests/test_text_comp.py @@ -1,4 +1,5 @@ from avp.command import Command +from PyQt6.QtGui import QFont from pytestqt import qtbot from pytest import fixture from . import audioData, MockSignal, imageDataSum @@ -18,6 +19,7 @@ def test_comp_text_renderFrame_resize(coreWithTextComp): comp.parent.settings.setValue("outputWidth", 1920) comp.parent.settings.setValue("outputHeight", 1080) comp.parent.core.updateComponent(0) + comp.titleFont = QFont("Noto Sans") image = comp.frameRender(0) assert imageDataSum(image) == 2957069 -- cgit v1.2.3