support/testing/tests/package/test_python_serial.py: new test case

This quickly tests that the host-python-serial package at least
minimally works.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Thomas Petazzoni
2025-10-18 21:43:02 +02:00
committed by Julien Olivain
parent d03cfe515b
commit 875b4f204c
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import infra.basetest
class TestHostPythonSerial(infra.basetest.BRHostPkgTest):
hostpkgs = ["host-python-serial"]
def test_run(self):
cmd = ["host/bin/python3", "-c", "import serial"]
infra.run_cmd_on_host(self.builddir, cmd)
cmd = ["host/bin/python3", "-m", "serial.tools.list_ports"]
infra.run_cmd_on_host(self.builddir, cmd)