kumquat-buildroot/support/testing/tests/package/test_python_pysmb.py
Yegor Yefremov a42b52163d support/testing: add test for python-pysmb
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
[yann.morin.1998@free.fr: ignore flake8 warnings in test sample]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-07-23 16:42:06 +02:00

13 lines
345 B
Python

from tests.package.test_python import TestPythonPackageBase
class TestPythonPy3Pysmb(TestPythonPackageBase):
__test__ = True
config = TestPythonPackageBase.config + \
"""
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_PYSMB=y
"""
sample_scripts = ["tests/package/sample_python_pysmb.py"]
timeout = 40