Skip to content

Commit

Permalink
ci: install in editable again
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed May 16, 2024
1 parent 231dbbe commit aec87f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ jobs:
- name: Install dclab with all possible dependencies
if: matrix.extras == 'all'
run: |
pip install .[all]
pip install -e .[all]
pip install -r tests/requirements.txt
- name: Install dclab with DCOR dependencies
if: matrix.extras == 'dcor-s3'
run: |
pip install .[dcor,http,s3]
pip install -e .[dcor,http,s3]
- name: Install dclab with minimal dependencies
if: matrix.extras == 'none'
run: |
pip install .
pip install -e .
- name: List installed packages
run: |
pip freeze
Expand Down

0 comments on commit aec87f1

Please sign in to comment.