We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf7355a commit 22a344fCopy full SHA for 22a344f
tests/plugin_tests/test_early_data_plugin.py
@@ -1,5 +1,7 @@
1
import pickle
2
3
+import pytest
4
+
5
from sslyze.plugins.early_data_plugin import EarlyDataPlugin, EarlyDataScanCommand
6
from sslyze.server_connectivity_tester import ServerConnectivityTester
7
from tests.markers import can_only_run_on_linux_64
@@ -29,6 +31,7 @@ def test_early_data_enabled(self):
29
31
# Ensure the results are pickable so the ConcurrentScanner can receive them via a Queue
30
32
assert pickle.dumps(plugin_result)
33
34
+ @pytest.mark.skip("Find an online server that supports early data; cloudflare disabled support for it")
35
def test_early_data_enabled_online(self):
36
server_test = ServerConnectivityTester(hostname='www.cloudflare.com')
37
server_info = server_test.perform()
0 commit comments