Skip to content

Commit

Permalink
Install pytest for mindeps test action
Browse files Browse the repository at this point in the history
  • Loading branch information
mfisher87 committed Sep 7, 2024
1 parent e194f14 commit 3e31d75
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-mindeps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ jobs:
run: uv sync --resolution lowest-direct

- name: Install earthaccess
run: uv pip install --no-deps .
run: |
uv pip install --no-deps .
uv pip install pytest
- 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
Expand Down

0 comments on commit 3e31d75

Please sign in to comment.