Skip to content

Commit

Permalink
Fix pip install command in test workflow and requirements_dev.in
Browse files Browse the repository at this point in the history
* **.github/workflows/test.yml**
  - Correct pip install command to install both requirements and the local checked out package.

* **requirements_dev.in**
  - Add `-e .` to install the local package in development mode.
  • Loading branch information
jlantz committed Oct 29, 2024
1 parent 424fe68 commit 18b2ac3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt.txt
pip install -r requirements_dev.txt
pip install -e .
- name: Run tests
run: |
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Development dependencies
pytest
-e .

0 comments on commit 18b2ac3

Please sign in to comment.