mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-07 07:18:43 +00:00
python3-cryptography: fix two tests
Tests depending on the hypothesis module should be skipped if the module is not available. Signed-off-by: Joe Slater <joe.slater@windriver.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
--- a/tests/hypothesis/__init__.py
|
||||
+++ b/tests/hypothesis/__init__.py
|
||||
@@ -3,3 +3,7 @@
|
||||
# for complete details.
|
||||
|
||||
from __future__ import absolute_import, division, print_function
|
||||
+
|
||||
+import pytest
|
||||
+hypothesis = pytest.importorskip("hypothesis")
|
||||
+
|
||||
Reference in New Issue
Block a user