diff --git a/bin/tests/system/isctest/hypothesis/__init__.py b/bin/tests/system/isctest/hypothesis/__init__.py index 0bb73f3bab..3ae0deeb24 100644 --- a/bin/tests/system/isctest/hypothesis/__init__.py +++ b/bin/tests/system/isctest/hypothesis/__init__.py @@ -9,5 +9,10 @@ # See the COPYRIGHT file distributed with this work for additional # information regarding copyright ownership. -from . import settings -from . import strategies +try: + import hypothesis as _ +except ImportError: + pass +else: + from . import settings + from . import strategies