Skip to content

Commit

Permalink
_code_quality.yml: Added --no-root to poetry install to avoid that pe…
Browse files Browse the repository at this point in the history
…try installs also the project itself
  • Loading branch information
ClaasRostock committed Nov 23, 2023
1 parent e8c2bba commit 6c8fae6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
python-version: '3.11'
cache: 'pip' # cache pip dependencies
- name: Install dependencies
run: pip install -r requirements.txt
run: |
pip install poetry
poetry install --no-root
- name: Install ruff
run: pip install ruff==0.1.6
- name: Run ruff
Expand All @@ -43,7 +45,7 @@ jobs:
- name: Install dependencies
run: |
pip install poetry
poetry install
poetry install --no-root
pip install pytest
- name: Install pyright
run: pip install pyright==1.1.336
Expand Down

0 comments on commit 6c8fae6

Please sign in to comment.