1 diff --git a/tests.py b/tests.py
2 index deb50e0..aede281 100755
5 @@ -179,6 +179,7 @@ class TestPypandoc(unittest.TestCase):
6 received = pypandoc.convert_file(file_url, 'rst')
7 self.assertEqualExceptForNewlineEnd(expected, received)
9 + @unittest.skip("no network access during checkPhase")
10 def test_basic_conversion_from_http_url(self):
11 url = 'https://raw.githubusercontent.com/bebraw/pypandoc/master/README.md'
12 received = pypandoc.convert_file(url, 'html')
13 @@ -247,6 +248,7 @@ class TestPypandoc(unittest.TestCase):
15 self.assertRaises(RuntimeError, f)
17 + @unittest.skip("pandoc-citeproc has been deprecated")
18 def test_conversion_with_citeproc_filter(self):
19 # we just want to get a temp file name, where we can write to
20 filters = ['pandoc-citeproc']