mirror of https://github.com/astral-sh/ruff
Remove ecosystem failures (#9854)
## Summary These are kinda disruptive, I'd prefer to TODO unless someone is interested in solving them ASAP.
This commit is contained in:
parent
c34908f5ad
commit
75553ab1c0
|
|
@ -77,17 +77,19 @@ DEFAULT_TARGETS = [
|
||||||
Project(
|
Project(
|
||||||
repo=Repository(owner="scikit-build", name="scikit-build-core", ref="main")
|
repo=Repository(owner="scikit-build", name="scikit-build-core", ref="main")
|
||||||
),
|
),
|
||||||
Project(
|
# TODO(charlie): Ecosystem check fails in non-preview due to the direct
|
||||||
repo=Repository(
|
# selection of preview rules.
|
||||||
owner="sphinx-doc",
|
# Project(
|
||||||
name="sphinx",
|
# repo=Repository(
|
||||||
ref="master",
|
# owner="sphinx-doc",
|
||||||
),
|
# name="sphinx",
|
||||||
format_options=FormatOptions(
|
# ref="master",
|
||||||
# Does not contain valid UTF-8
|
# ),
|
||||||
exclude="tests/roots/test-pycode/cp_1251_coded.py"
|
# 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="spruceid", name="siwe-py", ref="main")),
|
||||||
Project(repo=Repository(owner="tiangolo", name="fastapi", ref="master")),
|
Project(repo=Repository(owner="tiangolo", name="fastapi", ref="master")),
|
||||||
Project(repo=Repository(owner="yandex", name="ch-backup", ref="main")),
|
Project(repo=Repository(owner="yandex", name="ch-backup", ref="main")),
|
||||||
|
|
@ -112,6 +114,12 @@ DEFAULT_TARGETS = [
|
||||||
Project(
|
Project(
|
||||||
repo=Repository(owner="openai", name="openai-cookbook", ref="main"),
|
repo=Repository(owner="openai", name="openai-cookbook", ref="main"),
|
||||||
check_options=CheckOptions(select=JUPYTER_NOTEBOOK_SELECT),
|
check_options=CheckOptions(select=JUPYTER_NOTEBOOK_SELECT),
|
||||||
config_overrides={"include": ["*.ipynb"]},
|
config_overrides={
|
||||||
|
"include": ["*.ipynb"],
|
||||||
|
# TODO(charlie): Re-enable after fixing typo.
|
||||||
|
"exclude": [
|
||||||
|
"examples/dalle/Image_generations_edits_and_variations_with_DALL-E.ipynb"
|
||||||
|
],
|
||||||
|
},
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue