1diff --git a/tests/test_create_connection.py b/tests/test_create_connection.py
2index fe38026..cdb26b4 100644
3--- a/tests/test_create_connection.py
4+++ b/tests/test_create_connection.py
5@@ -6,10 +6,12 @@ from .test_utils import requires_network
6
7
8 class _BasicCreateConnectionTests(object):
9+
10 @requires_network
11 def test_create_connection_google(self):
12 sock = rfc6555.create_connection(('www.google.com', 80))
13
14+ @requires_network
15 @pytest.mark.parametrize('timeout', [None, 5.0])
16 def test_create_connection_has_proper_timeout(self, timeout):
17 sock = rfc6555.create_connection(('www.google.com', 80), timeout=timeout)
18diff --git a/tests/test_ipv6.py b/tests/test_ipv6.py
19index 3ee8564..f0db28e 100644
20--- a/tests/test_ipv6.py
21+++ b/tests/test_ipv6.py
22@@ -2,7 +2,9 @@ import socket
23 import mock
24 import rfc6555
25
26+from .test_utils import requires_network
27
28+@requires_network
29 def test_ipv6_available():
30 assert rfc6555._detect_ipv6()
31