Skip to content

Commit

Permalink
Remove editable install from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-wild committed Jul 10, 2024
1 parent 7b60669 commit b3249a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests-drafts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
- name: Install dependencies
run: |
python --version
pip install -e .
pip install -e .[test]
pip install .
pip install .[test]
pip install pytest pytest-cov
- name: Test with pytest
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Install dependencies
run: |
python --version
pip install -e .
pip install -e .[test]
pip install .
pip install .[test]
pip install pytest pytest-cov
- name: Test with pytest
run: |
Expand Down

0 comments on commit b3249a9

Please sign in to comment.