mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-05 23:23:51 -09:00
Signed-off-by: Yann E. MORIN <yann.morin@orange.com> Cc: Romain Naour <romain.naour@smile.fr> Cc: James Hilliard <james.hilliard1@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Yegor Yefremov <yegorslists@googlemail.com> [Julien: - add DEVELOPERS entry - fix test class name ] Signed-off-by: Julien Olivain <ju.o@free.fr>
13 lines
389 B
Python
13 lines
389 B
Python
from tests.package.test_python import TestPythonPackageBase
|
|
|
|
|
|
class TestPythonPy3HumanFriendly(TestPythonPackageBase):
|
|
__test__ = True
|
|
config = TestPythonPackageBase.config + \
|
|
"""
|
|
BR2_PACKAGE_PYTHON3=y
|
|
BR2_PACKAGE_PYTHON3_CURSES=y
|
|
BR2_PACKAGE_PYTHON_HUMANFRIENDLY=y
|
|
"""
|
|
sample_scripts = ["tests/package/sample_python_humanfriendly.py"]
|