kumquat-buildroot/support/testing/tests/package/test_python_evdev.py
Witold Lipieta b100440bff package/python-evdev: new package
evdev 1.6.1 https://pypi.org/project/evdev/

Signed-off-by: Witold Lipieta <witold.lipieta@thaumatec.com>
[yann.morin.1998@free.fr:
  - add missing comment on kernel headers
  - fix flake8 in test
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-04-17 22:50:39 +02:00

12 lines
328 B
Python

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