Files
rpi-buildroot/support/testing/tests/package/test_python_yamllint.py
Heiko Thiery 2258fc413a package/python-yamllint: new package
This host package is needed since u-boot 2024.04 for building ti defconfigs.

This is an requirement for using buildman/binman [1].

[1] https://source.denx.de/u-boot/u-boot/-/blob/v2024.04/tools/buildman/requirements.txt?ref_type=tags#L3

Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2024-04-12 17:48:46 +02:00

12 lines
334 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonYamllint(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_YAMLLINT=y
"""
sample_scripts = ["tests/package/sample_python_yamllint.py"]