From 6c22bc4870a8ca52bb0060b6784cdfd79c5b1304 Mon Sep 17 00:00:00 2001 From: solidiquis Date: Sat, 15 Jun 2024 10:14:32 -0700 Subject: [PATCH] fit ga --- .github/workflows/python_ci.yaml | 4 ++-- python/scripts/dev | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python_ci.yaml b/.github/workflows/python_ci.yaml index 30f90155..e2fedaf5 100644 --- a/.github/workflows/python_ci.yaml +++ b/.github/workflows/python_ci.yaml @@ -30,12 +30,12 @@ jobs: - name: Lint working-directory: python run: | - ruff check . + ruff check - name: Format working-directory: python run: | - ruff fmt --check . + ruff format --check - name: Pytest working-directory: python diff --git a/python/scripts/dev b/python/scripts/dev index 0f4fde80..0568a5f8 100755 --- a/python/scripts/dev +++ b/python/scripts/dev @@ -31,12 +31,12 @@ bootstrap() { fmt() { source venv/bin/activate - ruff format lib/sift_py lib/sift_internal + ruff format } lint() { source venv/bin/activate - ruff check lib/sift_py lib/sift_internal + ruff check } run_tests() {