Skip to content

Commit 6b0a3cc

Browse files
Ygnasopenshift-merge-bot[bot]
authored andcommitted
fix: remove --no-update as it is the default in poetry 2.0
1 parent 7fef14b commit 6b0a3cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/coverage-badge.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python -m pip install --upgrade pip
2323
pip install poetry
2424
poetry config virtualenvs.create false
25-
poetry lock --no-update
25+
poetry lock
2626
poetry install --with test
2727
- name: Generate coverage report
2828
run: |

.github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies with poetry
2323
run: |
2424
poetry config virtualenvs.create false
25-
poetry lock --no-update
25+
poetry lock
2626
poetry install --with test
2727
- name: Test with pytest and check coverage
2828
run: |

tests/e2e/install-codeflare-sdk.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ poetry config virtualenvs.create false
99
cd codeflare-sdk
1010

1111
# Lock dependencies and install them
12-
poetry lock --no-update
12+
poetry lock
1313
poetry install --with test,docs
1414

1515
# Return to the workdir

0 commit comments

Comments
 (0)