Skip to content

Commit

Permalink
ci: Ensure wheel is install before pip install step
Browse files Browse the repository at this point in the history
  • Loading branch information
rht authored and jackiekazil committed May 14, 2022
1 parent 6276868 commit a0e5d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('Pipfile.lock') }}
- name: Install dependencies
run: pip install .[dev]
run: pip install wheel && pip install .[dev]
- name: Test with pytest
run: pytest --cov=mesa tests/ --cov-report=xml
- if: matrix.os == 'ubuntu'
Expand Down

0 comments on commit a0e5d10

Please sign in to comment.