Source: rdflib Version: 7.1.1-2 Severity: serious User: debian...@lists.debian.org Usertags: regression
Hi Maintainer rdflib's autopkgtest is currently regressed in testing on all architectures [1]. I've copied what I hope is the relevant part of the log below. Regards Graham [1] https://ci.debian.net/packages/r/rdflib/ 119s =================================== FAILURES =================================== 119s _________________ test_guess_format_for_parse_http_text_plain __________________ 119s 119s @pytest.mark.webtest 119s def test_guess_format_for_parse_http_text_plain(): 119s # Any raw url of a file from GitHub will return the content-type with text/plain. 119s url = "https://raw.githubusercontent.com/AGLDWG/vocpub-profile/master/validators/validator.ttl" 119s graph = Graph().parse(url) 119s assert len(graph) > 0 119s 119s # A url that returns content-type text/html. 119s url = "https://github.com/RDFLib/rdflib/issues/2734" 119s with pytest.raises(PluginException): 119s > graph = Graph().parse(url) 119s 119s test/test_graph/test_graph.py:404: