From c0cf028c0776e857dd5d7c41e1247f4ee85b4e8a Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Sat, 7 Sep 2024 12:05:31 -0600 Subject: [PATCH] Install test deps for mindeps test action --- .github/workflows/test-mindeps.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-mindeps.yml b/.github/workflows/test-mindeps.yml index 362c9d7a..3be5bb01 100644 --- a/.github/workflows/test-mindeps.yml +++ b/.github/workflows/test-mindeps.yml @@ -33,13 +33,13 @@ jobs: python-version-file: pyproject.toml - name: Install minimum-compatible dependencies - run: uv sync --resolution lowest-direct + run: uv sync --resolution lowest-direct --extra test - name: Install earthaccess run: uv pip install --no-deps . - name: Test - run: pytest tests/unit --cov=earthaccess --cov=tests --cov-report=term-missing --capture=no --tb=native --log-cli-level=INFO + run: uv run pytest tests/unit --cov=earthaccess --cov=tests --cov-report=term-missing --capture=no --tb=native --log-cli-level=INFO - name: Upload coverage # Don't upload coverage when using the `act` tool to run the workflow locally