test_python_crossbar.py 499 B

1234567891011121314
  1. from tests.package.test_python import TestPythonPackageBase
  2. class TestPythonPy3Crossbar(TestPythonPackageBase):
  3. __test__ = True
  4. # use haveged to generate enough entropy so crossbar -> pynacl -> libsodium don't hang waiting for /dev/random
  5. config = TestPythonPackageBase.config + \
  6. """
  7. BR2_PACKAGE_PYTHON3=y
  8. BR2_PACKAGE_PYTHON_CROSSBAR=y
  9. BR2_PACKAGE_HAVEGED=y
  10. """
  11. sample_scripts = ["tests/package/sample_python_crossbar.py"]
  12. timeout = 60