python310Package.myst-parser: Disable failing tests

This commit is contained in:
Martin Weinelt 2023-02-28 17:41:10 +01:00
parent 0c52a57161
commit b11ba859a9

View File

@ -51,7 +51,24 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "myst_parser" ];
pythonImportsCheck = [
"myst_parser"
];
disabledTests = [
# AssertionError due to different files
"test_basic"
"test_footnotes"
"test_gettext_html"
"test_fieldlist_extension"
# docutils 0.19 expectation mismatches
"test_docutils_roles"
# sphinx 6.0 expectation mismatches
"test_sphinx_directives"
# sphinx 5.3 expectation mismatches
"test_render"
"test_includes"
];
meta = with lib; {
description = "Sphinx and Docutils extension to parse MyST";