From ed041ae5d4d5cb33179edc5d188e7d4f20bd0599 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 10 Jan 2025 15:28:10 -0600 Subject: [PATCH] cleanup invocations --- .github/workflows/test-python.yml | 6 +++--- justfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index ddb40beabc..9a0c033d90 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -29,7 +29,7 @@ jobs: cache-dependency-path: 'pyproject.toml' - name: Install Python dependencies run: | - python -m pip install -U pip hatch rust-just + python -m pip install -U pip hatch rust-just pre-commit - name: Run linters run: | just lint-manual @@ -120,7 +120,7 @@ jobs: mongodb-version: '8.0.0-rc4' - name: Run tests run: | - just doctest + just docs-test docs: name: Docs Checks @@ -157,7 +157,7 @@ jobs: python-version: '3.9' - name: Install dependencies run: | - pip install -U pip hatch + pip install -U pip hatch rust-just - name: Build docs run: | just docs-linkcheck diff --git a/justfile b/justfile index b53ba2354c..c679e12c58 100644 --- a/justfile +++ b/justfile @@ -12,7 +12,7 @@ install: bash .evergreen/scripts/ensure-hatch.sh [group('docs')] -docs-build: +docs: source .evergreen/scripts/ensure-hatch.sh && hatch run doc:build [group('docs')]