Skip to content

Commit

Permalink
fix: Don't attempt to install project inside virtualenv
Browse files Browse the repository at this point in the history
Not needed for normal development.
  • Loading branch information
l0b0 committed Sep 17, 2024
1 parent 7787ba7 commit d2695d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install
run: |
pip install poetry
poetry install
poetry install --no-root
- name: Format
run: |
poetry run black --check --diff linz_logger/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: pip install poetry

- name: Install dependencies
run: poetry install
run: poetry install --no-root

- name: Set PyPI token
run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
Expand Down

0 comments on commit d2695d1

Please sign in to comment.