0514ced833
On some developers machines, the default timeout (5 seconds) is not enough for the test to succeed. Increase it to 20 seconds, to let more time for the rsa keys to be generated. Signed-off-by: Raphaël Mélotte <raphael.melotte@mind.be> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
13 lines
339 B
Python
13 lines
339 B
Python
from tests.package.test_python import TestPythonPackageBase
|
|
|
|
|
|
class TestPythonPy3RSA(TestPythonPackageBase):
|
|
__test__ = True
|
|
config = TestPythonPackageBase.config + \
|
|
"""
|
|
BR2_PACKAGE_PYTHON3=y
|
|
BR2_PACKAGE_PYTHON_RSA=y
|
|
"""
|
|
sample_scripts = ["tests/package/sample_python_rsa.py"]
|
|
timeout = 20
|