Skip to content

Commit

Permalink
attempt to work around issue with pip
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Jul 31, 2024
1 parent 764467e commit dc5345c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run:
python -m pip install --upgrade pip tox coveralls .
run: |
python -m pip install --upgrade pip
pip install tox
pip install coveralls
pip install .
- name: Run tests
run: tox
- name: Report test coverage
Expand Down

0 comments on commit dc5345c

Please sign in to comment.