Skip to content

Commit 31132fb

Browse files
committed
still lint fails
1 parent b6b6478 commit 31132fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Install dependencies
4343
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
44-
run: poetry install --no-interaction --no-root
44+
run: poetry install --no-interaction --with dev --no-root
4545

4646
- name: Install project
4747
run: poetry install --no-interaction

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Install dependencies
4545
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
46-
run: poetry install --no-interaction --no-root
46+
run: poetry install --no-interaction --with dev --no-root
4747

4848
- name: Install project
4949
run: poetry install --no-interaction

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ poetry version $VERSION
9898

9999
# Ensure local venv is updated with new version
100100
log_info "Re-installing package in local poetry environment..."
101-
poetry install
101+
poetry install --with dev
102102

103103
# Update version info in __init__.py if needed
104104
# This ensures the version is available at runtime

0 commit comments

Comments
 (0)