Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependency update (rich/ mypy) #75

Merged
merged 3 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install poetry 🦄
uses: Gr1N/setup-poetry@v9
with:
poetry-version: 1.6.1
poetry-version: 1.8.1

- name: Load poetry cached libs ⬇
uses: actions/cache@v4
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
run: make test

- name: Send Coverage Report 📊
if: matrix.python-version == 3.11 && matrix.os == 'ubuntu-latest'
if: matrix.python-version == 3.12 && matrix.os == 'ubuntu-latest'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Install poetry 🦄
uses: Gr1N/setup-poetry@v9
with:
poetry-version: 1.6.1
poetry-version: 1.8.1

- name: Install dependencies 🖥
run: poetry install --no-interaction --extras "docs"
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ test:
poetry run pytest --cov capella_console_client --cov-report=html -sv

types:
poetry run mypy --install-types --non-interactive capella_console_client

poetry run mypy --install-types --non-interactive capella_console_client --tb
docs:
poetry run make -C docs html

Expand Down
Loading