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() {