Skip to content

Commit 8f861c3

Browse files
Fix CI installing extra dependencies
1 parent f3f85a7 commit 8f861c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
path: ~/.cache/pypoetry/virtualenvs
2424
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
2525
- run: poetry --version
26-
- run: poetry install --all-extras
26+
- run: poetry install
2727
- name: Build and publish package
2828
run: poetry publish --build -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/python-app.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
path: ~/.cache/pypoetry/virtualenvs
2323
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
2424
- run: poetry --version
25-
- run: poetry install --all-extras
25+
- run: poetry install
2626
- name: Test with pytest
2727
run: |
2828
poetry run coverage run -m pytest
@@ -56,7 +56,7 @@ jobs:
5656
path: ~/.cache/pypoetry/virtualenvs
5757
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
5858
- run: poetry --version
59-
- run: poetry install --all-extras
59+
- run: poetry install
6060
- name: Lint with ruff
6161
run: |
6262
poetry run ruff check
@@ -77,7 +77,7 @@ jobs:
7777
path: ~/.cache/pypoetry/virtualenvs
7878
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
7979
- run: poetry --version
80-
- run: poetry install --all-extras
80+
- run: poetry install
8181
- name: Lint with mypy
8282
run: |
8383
poetry run mypy

0 commit comments

Comments
 (0)