From 71c9da92b2e5af27cb4af915142e8604bf563740 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sat, 11 May 2024 18:11:33 +0200 Subject: [PATCH] support/testing/tests/package/test_python_hid.py: drop unneeded explicit hidapi package The python-hid package got tweaked when applied in commit 4432b087902 (package/python-hid: new package) so it now selects BR2_PACKAGE_HIDAPI, and we therefore do not need to explicitly enable hidapi in the test. Signed-off-by: Peter Korsgaard Signed-off-by: Thomas Petazzoni --- support/testing/tests/package/test_python_hid.py | 1 - 1 file changed, 1 deletion(-) diff --git a/support/testing/tests/package/test_python_hid.py b/support/testing/tests/package/test_python_hid.py index b7a280b766..68cefa8682 100644 --- a/support/testing/tests/package/test_python_hid.py +++ b/support/testing/tests/package/test_python_hid.py @@ -8,6 +8,5 @@ class TestPythonHid(TestPythonPackageBase): BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y BR2_PACKAGE_PYTHON3=y BR2_PACKAGE_PYTHON_HID=y - BR2_PACKAGE_HIDAPI=y """ sample_scripts = ["tests/package/sample_python_hid.py"]