From: Dmitry Shachnev <mitya57@gmail.com>
Date: Tue, 20 Dec 2016 16:37:32 +0300
Subject: Skip linkcheck tests that require network access

Forwarded: not-needed
---
 tests/test_build_latex.py     | 1 +
 tests/test_build_linkcheck.py | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py
index a64805b..882a61b 100644
--- a/tests/test_build_latex.py
+++ b/tests/test_build_latex.py
@@ -1240,6 +1240,7 @@ def test_latex_raw_directive(app, status, warning):
     assert 'LaTeX: abc def ghi' in result
 
 
+@pytest.mark.skip('Requires internet access')
 @pytest.mark.sphinx('latex', testroot='images')
 def test_latex_images(app, status, warning):
     app.builder.build_all()
diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py
index 22866b2..d2e9cab 100644
--- a/tests/test_build_linkcheck.py
+++ b/tests/test_build_linkcheck.py
@@ -12,6 +12,7 @@ from unittest import mock
 import pytest
 
 
+@pytest.mark.skip('Requires internet access')
 @pytest.mark.sphinx('linkcheck', testroot='linkcheck', freshenv=True)
 def test_defaults(app, status, warning):
     app.builder.build_all()
@@ -31,6 +32,7 @@ def test_defaults(app, status, warning):
     assert len(content.splitlines()) == 5
 
 
+@pytest.mark.skip('Requires internet access')
 @pytest.mark.sphinx(
     'linkcheck', testroot='linkcheck', freshenv=True,
     confoverrides={'linkcheck_anchors_ignore': ["^!", "^top$"],
