Skip to content

Commit

Permalink
ci: Attempt to fix failing CI by updating pip
Browse files Browse the repository at this point in the history
  • Loading branch information
b-butler committed Jan 10, 2024
1 parent 4d54f9d commit c304487
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/run-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.python }}
- name: Update pip/build packages
run: |
pip install setuptools --upgrade
pip install pip --upgrade
- name: Install newest dependencies
run: |
pip install -r requirements/requirements-test.txt
Expand All @@ -51,7 +55,6 @@ jobs:
if: ${{ matrix.config.dependencies == 'newest' }}
- name: Install the package
run: |
pip install setuptools --upgrade
pip install -e .
- name: Test with pytest
run: |
Expand Down

0 comments on commit c304487

Please sign in to comment.