Skip to content

Commit

Permalink
remove the installation process for extra deps in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aisk committed May 29, 2024
1 parent 82c71fb commit 5871f11
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
path: poetry.lock
key: ${{ github.sha }}-${{ matrix.python-version }}
- run: curl -sSL https://install.python-poetry.org | python3 -
- run: poetry install --extras aiohttp --extras httpx
- run: poetry install
- run: poetry run pytest --verbose

mypy:
Expand All @@ -74,7 +74,7 @@ jobs:
path: poetry.lock
key: ${{ github.sha }}-${{ matrix.python-version }}
- run: curl -sSL https://install.python-poetry.org | python3 -
- run: poetry install --extras aiohttp --extras httpx
- run: poetry install
- run: poetry run mypy

isort:
Expand All @@ -91,7 +91,7 @@ jobs:
path: poetry.lock
key: ${{ github.sha }}-3.12
- run: curl -sSL https://install.python-poetry.org | python3 -
- run: poetry install --extras aiohttp --extras httpx
- run: poetry install
- run: poetry run isort --check --diff src tests

black:
Expand All @@ -108,7 +108,7 @@ jobs:
path: poetry.lock
key: ${{ github.sha }}-3.12
- run: curl -sSL https://install.python-poetry.org | python3 -
- run: poetry install --extras aiohttp --extras httpx
- run: poetry install
- run: poetry run black --check src/ tests/

ruff:
Expand All @@ -125,5 +125,5 @@ jobs:
path: poetry.lock
key: ${{ github.sha }}-3.12
- run: curl -sSL https://install.python-poetry.org | python3 -
- run: poetry install --extras aiohttp --extras httpx
- run: poetry install
- run: poetry run ruff check src/ tests/

0 comments on commit 5871f11

Please sign in to comment.