From 44efbfb257cce1a19ee300f9a90dc7f8fe402d28 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Sat, 27 Jun 2026 22:55:40 +0800 Subject: [PATCH] Exclude external dependency checkouts from ruff in CI. Lint only this repository's sources so platform CI does not fail on upstream package style drift. Co-authored-by: Cursor --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc0b7da..e2d8c3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: python -m pip install --no-deps -e external/QuantPlatformKit -e external/CnEquityStrategies - name: Run ruff - run: python -m ruff check . + run: python -m ruff check . --extend-exclude external - name: Run tests run: PYTHONPATH=. PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 python -m pytest -q tests