nixpkgs/pkgs/development/python-modules/pypandoc/skip-tests.patch
sternenseemann 95726968d9 pythonPackages.pypandoc: 1.5.0 -> 1.6.3
* Changed upstream

* Test suite now works with latest pandoc

* pandoc --citeproc support

* Also substitute version in static-pandoc-path.patch
2021-07-09 14:25:46 -07:00

13 lines
536 B
Diff

diff --git a/tests.py b/tests.py
index deb50e0..aede281 100755
--- a/tests.py
+++ b/tests.py
@@ -179,6 +179,7 @@ class TestPypandoc(unittest.TestCase):
received = pypandoc.convert_file(file_url, 'rst')
self.assertEqualExceptForNewlineEnd(expected, received)
+ @unittest.skip("no network access during checkPhase")
def test_basic_conversion_from_http_url(self):
url = 'https://raw.githubusercontent.com/bebraw/pypandoc/master/README.md'
received = pypandoc.convert_file(url, 'html')