aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-02-19 12:38:20 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-02-19 12:38:20 -0600
commiteefc01ff04be97a7430133536ed5fbad893717fa (patch)
tree8b8b844bbbf61c5b2dcc6b188514034af2c85471 /tests
parentf068325e25dbacd1c12e6b684539320f1ce18c4c (diff)
parentde3aa05c45c5144422c9139e385630b1d928b73f (diff)
downloadcryptography-eefc01ff04be97a7430133536ed5fbad893717fa.tar.gz
cryptography-eefc01ff04be97a7430133536ed5fbad893717fa.tar.bz2
cryptography-eefc01ff04be97a7430133536ed5fbad893717fa.zip
Merge pull request #2726 from alex/hypothesis-2.6
Don't try to use hypothesis on Python 2.6, upstream dropped support
Diffstat (limited to 'tests')
-rw-r--r--tests/hypothesis/__init__.py4
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")