Skip to content

Commit

Permalink
Fix: Add -e flag to uv pip install commands for local package develop…
Browse files Browse the repository at this point in the history
…ment

Co-Authored-By: ned.twigg@diffplug.com <ned.twigg@diffplug.com>
  • Loading branch information
devin-ai-integration[bot] and nedtwigg committed Dec 11, 2024
1 parent 32e2fce commit 827d0fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
else
. ../../.venv/bin/activate
fi
uv pip install -r requirements.txt -r dev-requirements.txt
uv pip install -e . -r requirements.txt -r dev-requirements.txt
- name: selfie-lib - pytest
shell: bash
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
else
. ../../.venv/bin/activate
fi
uv pip install -r requirements.txt -r dev-requirements.txt
uv pip install -e . -r requirements.txt -r dev-requirements.txt
- name: pytest-selfie - pyright
shell: bash
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
else
. ../../.venv/bin/activate
fi
uv pip install -r requirements.txt -r dev-requirements.txt
uv pip install -e . -r requirements.txt -r dev-requirements.txt
- name: example-pytest-selfie - pytest
shell: bash
Expand Down

0 comments on commit 827d0fa

Please sign in to comment.