Skip to content

Commit

Permalink
Bump poethepoet from 0.29.0 to 0.32.1
Browse files Browse the repository at this point in the history
Bump tomli from 2.0.2 to 2.2.1

Bump codecov/codecov-action from 4 to 5

Bump pytest-cov from 5.0.0 to 6.0.0

Bump cryptography from 43.0.1 to 43.0.3

Added "--no-root" option to "poetry install" command  on "Install poetry dependencies" in tests and build workflows
  • Loading branch information
qlrddev committed Jan 13, 2025
1 parent 471d45a commit 7a31497
Show file tree
Hide file tree
Showing 4 changed files with 460 additions and 444 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
echo "dyld-path=${OPENSSL_PATH}/lib" >> $GITHUB_OUTPUT
- name: Install project and its dependencies
run: poetry install
run: poetry install --no-root

- name: Build dist (Linux)
if: ${{ runner.os == 'Linux' }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
architecture: x64

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

- name: Check format/
run: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
architecture: x64

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

- name: Lint src/
run: poetry run poe lint
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
python-version: '3.12'

- name: Install project and its dependencies
run: poetry install
run: poetry install --no-root

- name: Run tests with coverage (Linux)
if: ${{ runner.os == 'Linux' }}
Expand All @@ -131,7 +131,7 @@ jobs:
poetry run poe coverage
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
if: ${{ runner.os == 'Linux' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
Loading

0 comments on commit 7a31497

Please sign in to comment.