mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-07 21:25:08 +00:00
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
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:
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