mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-24 13:33:50 +00:00
Exclude failing sphinx file in ecosytem checks (#9294)
Failing due to > error: Failed to read tests/roots/test-pycode/cp_1251_coded.py: stream did not contain valid UTF-8 Unclear to me if ignoring is the correct response.
This commit is contained in:
parent
5d5f56d563
commit
f8fc309855
1 changed files with 11 additions and 1 deletions
|
@ -62,7 +62,17 @@ DEFAULT_TARGETS = [
|
|||
Project(
|
||||
repo=Repository(owner="scikit-build", name="scikit-build-core", ref="main")
|
||||
),
|
||||
Project(repo=Repository(owner="sphinx-doc", name="sphinx", ref="master")),
|
||||
Project(
|
||||
repo=Repository(
|
||||
owner="sphinx-doc",
|
||||
name="sphinx",
|
||||
ref="master",
|
||||
),
|
||||
format_options=FormatOptions(
|
||||
# Does not contain valid UTF-8
|
||||
exclude="tests/roots/test-pycode/cp_1251_coded.py"
|
||||
),
|
||||
),
|
||||
Project(repo=Repository(owner="spruceid", name="siwe-py", ref="main")),
|
||||
Project(repo=Repository(owner="tiangolo", name="fastapi", ref="master")),
|
||||
Project(repo=Repository(owner="yandex", name="ch-backup", ref="main")),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue