Exclude broken symlinks from meson-python ecosystem check (#17993)
Some checks are pending
CI / Fuzz for new ty panics (push) Blocked by required conditions
CI / cargo shear (push) Blocked by required conditions
CI / Determine changes (push) Waiting to run
CI / cargo fmt (push) Waiting to run
CI / cargo clippy (push) Blocked by required conditions
CI / cargo test (linux) (push) Blocked by required conditions
CI / cargo test (linux, release) (push) Blocked by required conditions
CI / cargo test (windows) (push) Blocked by required conditions
CI / cargo test (wasm) (push) Blocked by required conditions
CI / cargo build (release) (push) Waiting to run
CI / cargo build (msrv) (push) Blocked by required conditions
CI / cargo fuzz build (push) Blocked by required conditions
CI / fuzz parser (push) Blocked by required conditions
CI / test scripts (push) Blocked by required conditions
CI / ecosystem (push) Blocked by required conditions
CI / python package (push) Waiting to run
CI / pre-commit (push) Waiting to run
CI / mkdocs (push) Waiting to run
CI / formatter instabilities and black similarity (push) Blocked by required conditions
CI / test ruff-lsp (push) Blocked by required conditions
CI / check playground (push) Blocked by required conditions
CI / benchmarks (push) Blocked by required conditions
[ty Playground] Release / publish (push) Waiting to run

Summary
--

This should resolve the formatter ecosystem errors we've been seeing
lately. https://github.com/mesonbuild/meson-python/pull/728 added the
links, which I think are intentionally broken for testing purposes.

Test Plan
--

Ecosystem check on this PR
This commit is contained in:
Brent Westbrook 2025-05-09 16:59:00 -04:00 committed by GitHub
parent fd1eb3d801
commit 40fd52dde0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,6 +4,7 @@ Default projects for ecosystem checks
from ruff_ecosystem.projects import (
CheckOptions,
FormatOptions,
Project,
Repository,
)
@ -134,7 +135,12 @@ DEFAULT_TARGETS = [
Project(repo=Repository(owner="wntrblm", name="nox", ref="main")),
Project(repo=Repository(owner="pytest-dev", name="pytest", ref="main")),
Project(repo=Repository(owner="encode", name="httpx", ref="master")),
Project(repo=Repository(owner="mesonbuild", name="meson-python", ref="main")),
Project(
repo=Repository(owner="mesonbuild", name="meson-python", ref="main"),
format_options=FormatOptions(
exclude="tests/packages/symlinks/baz.py,tests/packages/symlinks/qux.py"
),
),
Project(repo=Repository(owner="pdm-project", name="pdm", ref="main")),
Project(repo=Repository(owner="astropy", name="astropy", ref="main")),
]