Skip to content

Commit

Permalink
chore: update pip install command to use editable mode
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Dec 29, 2024
1 parent c54eb55 commit 5a0a40d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -e .
python -m pip install pytest
- name: Run Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -e .
python -m pip install pytest
- name: Run Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -e .
python -m pip install pytest
- name: Run Test
run: |
Expand Down

0 comments on commit 5a0a40d

Please sign in to comment.