Skip to content

Commit

Permalink
Try installing pandas/numpy before the other dependencies in pytest-c…
Browse files Browse the repository at this point in the history
…overage workflow
  • Loading branch information
jeancochrane committed Nov 27, 2024
1 parent 7505970 commit df3af62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pytest-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@ jobs:
with:
python-version: ${{ matrix.version.python }}

- name: Install Python dependencies
working-directory: python
shell: bash
run: uv pip install .[dev,docs]

- name: Install pandas ${{ matrix.version.pandas }} and numpy ${{ matrix.version.numpy }}
working-directory: python
shell: bash
Expand All @@ -62,6 +57,11 @@ jobs:
pandas==${{ matrix.version.pandas }} \
numpy==${{ matrix.version.numpy}}
- name: Install Python dependencies
working-directory: python
shell: bash
run: uv pip install .[dev,docs]

- name: Run pytest
working-directory: python
shell: bash
Expand Down

0 comments on commit df3af62

Please sign in to comment.