Skip to content

Commit

Permalink
CI: Update pip installation command to remove editable flag
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Oct 14, 2024
1 parent b3e4a8e commit a478191
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install
run: pip install -e .
run: pip install .
- name: Install packages needed for tests
# pyright 1.1.336 can produce annoying errors
run: pip install pytest pytest-cov pyright==1.1.335
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Install
run: pip install -e .
run: pip install .
- name: Install packages needed for tests
# pyright 1.1.336 can produce annoying errors
run: pip install pyright==1.1.335 flake8 pytest
Expand Down

0 comments on commit a478191

Please sign in to comment.