Skip to content

Commit

Permalink
ci: Remove -e from pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Mar 12, 2024
1 parent 894c0d9 commit 6458cf8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jobs:
- name: Install uv
run: pip install uv
- name: Install Mesa
run: uv pip install --system -e .[dev]
# See https://github.com/astral-sh/uv/issues/1945
run: uv pip install --system "mesa[dev] @ ."
- name: Test with pytest
run: pytest --durations=10 --cov=mesa tests/ --cov-report=xml
- if: matrix.os == 'ubuntu'
Expand All @@ -69,7 +70,8 @@ jobs:
- name: Install uv
run: pip install uv
- name: Install Mesa
run: uv pip install --system -e .[dev]
# See https://github.com/astral-sh/uv/issues/1945
run: uv pip install --system "mesa[dev] @ ."
- name: Checkout mesa-examples
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 6458cf8

Please sign in to comment.