Skip to content
Merged
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
17 changes: 16 additions & 1 deletion python_basics/score_pytest/pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,19 @@ norecursedirs =

junit_duration_report = call
junit_family = xunit1
filterwarnings = ignore::pytest.PytestExperimentalApiWarning
filterwarnings =
ignore::pytest.PytestExperimentalApiWarning

# Silence third-party deprecations from sphinx_needs targeting Python 3.14 removals.
# We'll drop these ignores once sphinx_needs releases a fix.
ignore:.*deprecated.*Python 3\.14.*:DeprecationWarning:sphinx_needs\..*

# Docutils is deprecating OptionParser in favor of argparse (0.21+).
# This one originates inside sphinx_needs.layout.
# We'll drop these ignores once sphinx/sphinx_needs releases a fix.
ignore:^The frontend\.OptionParser class will be replaced by a subclass of argparse\.ArgumentParser in Docutils 0\.21 or later\.:DeprecationWarning:sphinx_needs\.layout

# This one bubbles up from stdlib optparse but is *explicitly* a Docutils message.
# We match the full message to avoid silencing unrelated optparse warnings.
# We'll drop these ignores once sphinx/sphinx_needs releases a fix.
ignore:^The frontend\.Option class will be removed in Docutils 0\.21 or later\.:DeprecationWarning:optparse
Loading