a42b52163d
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>
13 lines
345 B
Python
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
|