aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-08-15 18:17:26 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2018-08-15 19:17:26 -0400
commit5b502310fe1bfb3dd96b51918c6cf579d111ad63 (patch)
tree23fff5aa441c9fd7ffa84bf4b3f1dcff2355c9ba
parent732cf642141f57f26db84ec2a4f6122cf7918c9e (diff)
downloadcryptography-5b502310fe1bfb3dd96b51918c6cf579d111ad63.tar.gz
cryptography-5b502310fe1bfb3dd96b51918c6cf579d111ad63.tar.bz2
cryptography-5b502310fe1bfb3dd96b51918c6cf579d111ad63.zip
remove freebsd11 builder (#4401)
* remove freebsd11 builder it's out of date, we can't update it, and it is unreliable * we don't test against freebsd for now * what did case sensitivity ever do for me * don't assert on bsd since we don't test on for now
-rw-r--r--Jenkinsfile4
-rw-r--r--docs/installation.rst2
-rw-r--r--tests/hazmat/backends/test_openssl.py2
3 files changed, 0 insertions, 8 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 816e9de8..350d832f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -12,10 +12,6 @@ def configs = [
toxenvs: ['py27', 'py34', 'py35', 'py36', 'py37'],
],
[
- label: 'freebsd11',
- toxenvs: ['py27'],
- ],
- [
label: 'sierra',
toxenvs: ['py27', 'py36'],
],
diff --git a/docs/installation.rst b/docs/installation.rst
index 13cd75e1..a4649f51 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -14,7 +14,6 @@ Currently we test ``cryptography`` on Python 2.7, 3.4+, and
PyPy 5.3+ on these operating systems.
* x86-64 CentOS 7.x
-* x86-64 FreeBSD 11
* macOS 10.12 Sierra, 10.11 El Capitan
* x86-64 Ubuntu 14.04, 16.04, and rolling
* x86-64 Debian Wheezy (7.x), Jessie (8.x), Stretch (9.x), and Sid (unstable)
@@ -27,7 +26,6 @@ OpenSSL releases:
* ``OpenSSL 1.0.1``
* ``OpenSSL 1.0.1e-fips`` (``RHEL/CentOS 7``)
* ``OpenSSL 1.0.1f``
-* ``OpenSSL 1.0.1j-freebsd``
* ``OpenSSL 1.0.2-latest``
* ``OpenSSL 1.1.0-latest``
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py
index e77f5dc3..0aa72d89 100644
--- a/tests/hazmat/backends/test_openssl.py
+++ b/tests/hazmat/backends/test_openssl.py
@@ -277,8 +277,6 @@ class TestOpenSSLRandomEngine(object):
assert name == 'getentropy'
else:
assert name == '/dev/urandom'
- if 'bsd' in sys.platform:
- assert name in ['getentropy', '/dev/urandom']
if sys.platform == 'win32':
assert name == 'CryptGenRandom'