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
16 changes: 16 additions & 0 deletions ci/test_custom_linters.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ def _tests_from_pattern(*, ci_pattern: str) -> set[str]:
# before any items are collected.
"-p",
"no:pytest-retry",
# Disable pytest-beartype-tests to avoid
# https://github.com/beartype/beartype/issues/637 — wrapping
# collected items with @beartype installs a buggy
# __annotate_beartype__ closure on the underlying test
# function, which crashes a subsequent nested collection on
# Python 3.14.
"-p",
"no:pytest_beartype_tests",
# Disable warnings to avoid many instances of:
# ```
# Unknown config option: retry_delay
Expand Down Expand Up @@ -78,6 +86,14 @@ def test_ci_patterns_valid(request: pytest.FixtureRequest) -> None:
# ````
"-p",
"no:pytest-retry",
# Disable pytest-beartype-tests to avoid
# https://github.com/beartype/beartype/issues/637 —
# wrapping collected items with @beartype installs a
# buggy __annotate_beartype__ closure on the underlying
# test function, which crashes a subsequent nested
# collection on Python 3.14.
"-p",
"no:pytest_beartype_tests",
# Disable warnings to avoid many instances of:
# ```
# Unknown config option: retry_delay
Expand Down
Loading