From dd6d411026407732bb1c911b0641d86c6aaa06ad Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sat, 18 May 2024 23:37:56 -0400 Subject: [PATCH] Remove comma from ecosystem checks (#11466) ## Summary Something's up with this repo -- they added a post-checkout hook? So let's just remove it for now. We should go through and add a new batch of repositories some time. --- python/ruff-ecosystem/ruff_ecosystem/defaults.py | 1 - scripts/check_ecosystem.py | 1 - 2 files changed, 2 deletions(-) diff --git a/python/ruff-ecosystem/ruff_ecosystem/defaults.py b/python/ruff-ecosystem/ruff_ecosystem/defaults.py index e6d130d015..f49f2213a3 100644 --- a/python/ruff-ecosystem/ruff_ecosystem/defaults.py +++ b/python/ruff-ecosystem/ruff_ecosystem/defaults.py @@ -30,7 +30,6 @@ DEFAULT_TARGETS = [ repo=Repository(owner="bokeh", name="bokeh", ref="branch-3.3"), check_options=CheckOptions(select="ALL"), ), - Project(repo=Repository(owner="commaai", name="openpilot", ref="master")), Project( repo=Repository(owner="demisto", name="content", ref="master"), format_options=FormatOptions( diff --git a/scripts/check_ecosystem.py b/scripts/check_ecosystem.py index db11a010ee..a7cc3f44aa 100755 --- a/scripts/check_ecosystem.py +++ b/scripts/check_ecosystem.py @@ -124,7 +124,6 @@ REPOSITORIES: list[Repository] = [ Repository("aws", "aws-sam-cli", "develop"), Repository("bloomberg", "pytest-memray", "main"), Repository("bokeh", "bokeh", "branch-3.3", select="ALL"), - Repository("commaai", "openpilot", "master"), Repository("demisto", "content", "master"), Repository("docker", "docker-py", "main"), Repository("freedomofpress", "securedrop", "develop"),