From dfa072fd0776f9d0939e867192a7a354cdc14978 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 17 Aug 2025 06:16:43 -0600 Subject: [PATCH] test: Move image creation to test/py/img Rather than having this code mixed with the tests, it seems better to put it up one level. Move the directory and tidy up references. Signed-off-by: Simon Glass --- MAINTAINERS | 5 +++++ test/py/{tests => }/img/vbe.py | 0 2 files changed, 5 insertions(+) rename test/py/{tests => }/img/vbe.py (100%) diff --git a/MAINTAINERS b/MAINTAINERS index 4997fc67b10..5d05281633d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1718,6 +1718,11 @@ M: Liviu Dudau S: Maintained F: drivers/video/tda19988.c +TEST FRAMEWORK (PYTHON) +M: Simon Glass +F: test/py +F: test/py/img + TI LP5562 LED DRIVER M: Rasmus Villemoes S: Supported diff --git a/test/py/tests/img/vbe.py b/test/py/img/vbe.py similarity index 100% rename from test/py/tests/img/vbe.py rename to test/py/img/vbe.py