Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions iommi/docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ def uses_from_cookbooks():

parser = docutils.parsers.rst.Parser()
settings = docutils.frontend.get_default_settings(docutils.parsers.rst.Parser)
# The cookbooks use Sphinx roles (`:ref:`, `:doc:`) that plain docutils doesn't know about.
# We only parse them here to extract `uses` comments, so suppress those harmless system messages
# (5 is above the max severity of 4=SEVERE) to keep the test output quiet.
settings.report_level = 5

backrefs = defaultdict(set)

Expand Down
2 changes: 1 addition & 1 deletion iommi/edit_table__tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ def parent_form_save_test(abort_on_fail):
)


@pytest.mark.xfail(reason='https://github.com/iommirocks/iommi/issues/673', strict=True)
@pytest.mark.skip(reason='https://github.com/iommirocks/iommi/issues/673')
@pytest.mark.django_db
def test_required_field_in_edit_table_does_not_invalidate_parent_form():
# https://github.com/iommirocks/iommi/issues/673
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading