comment
diff --git a/OpenSSL/test/test_ssl.py b/OpenSSL/test/test_ssl.py
index e07abb6..2749a64 100644
--- a/OpenSSL/test/test_ssl.py
+++ b/OpenSSL/test/test_ssl.py
@@ -2213,6 +2213,8 @@
         client = socket()
         context = Context(TLSv1_METHOD)
         clientSSL = Connection(context, client)
+        # pytest.raises here doesn't work because of a bug in py.test:
+        # https://github.com/pytest-dev/pytest/issues/988
         try:
             clientSSL.connect(("127.0.0.1", 1))
         except error as e: