Skip to content

Commit

Permalink
force upgrade pip in gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Mar 15, 2024
1 parent 4ff341d commit 5bf2b74
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install .[dev]
run: |
pip install --upgrade pip setuptools wheel
pip install .[dev]
- name: make test-devel
run: make test-devel

Expand All @@ -37,7 +39,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: pip install .[test]
run: |
pip install --upgrade pip setuptools wheel
pip install .[test]
- name: Test with pytest
run: make test

Expand All @@ -54,7 +58,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: pip install rundoc .
run: |
pip install --upgrade pip setuptools wheel
pip install rundoc .
- name: make test-readme
run: make test-readme

0 comments on commit 5bf2b74

Please sign in to comment.