From 5b502310fe1bfb3dd96b51918c6cf579d111ad63 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 15 Aug 2018 18:17:26 -0500 Subject: 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 --- Jenkinsfile | 4 ---- docs/installation.rst | 2 -- tests/hazmat/backends/test_openssl.py | 2 -- 3 files changed, 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 816e9de8..350d832f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,10 +11,6 @@ def configs = [ label: 'windows64', 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' -- cgit v1.2.3