mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 10:49:50 +00:00
Exclude broken symlinks from meson-python
ecosystem check (#17993)
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:
parent
fd1eb3d801
commit
40fd52dde0
1 changed files with 7 additions and 1 deletions
|
@ -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")),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue