diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-19 17:12:21 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-02-19 17:12:21 -0500 |
commit | 1d8ead8364f164d505bf49e05441d1430fc80039 (patch) | |
tree | 286b39f8a58c32349d3f44d4a52bfdf5fdc51c59 /tests | |
parent | f7721aaaa14f789e911a61e5e946d618521920a9 (diff) | |
parent | eefc01ff04be97a7430133536ed5fbad893717fa (diff) | |
download | cryptography-1d8ead8364f164d505bf49e05441d1430fc80039.tar.gz cryptography-1d8ead8364f164d505bf49e05441d1430fc80039.tar.bz2 cryptography-1d8ead8364f164d505bf49e05441d1430fc80039.zip |
Merge branch 'master' into security-docs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hypothesis/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/hypothesis/__init__.py b/tests/hypothesis/__init__.py index 4b540884..0b344066 100644 --- 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 no longer supports Python 2.6 so we simply skip it there +pytest.importorskip("hypothesis") |