From 021241b820ae2d9bd01b84269045b142b1bb1b00 Mon Sep 17 00:00:00 2001 From: cthomas Date: Tue, 6 May 2025 17:42:00 -0700 Subject: [PATCH] chore: upgrade poetry for deploy (#2049) --- .github/workflows/code_style_checks.yml | 2 +- .github/workflows/docker-integration-tests.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_style_checks.yml b/.github/workflows/code_style_checks.yml index 80283027..41e97280 100644 --- a/.github/workflows/code_style_checks.yml +++ b/.github/workflows/code_style_checks.yml @@ -24,7 +24,7 @@ jobs: uses: packetcoders/action-setup-cache-python-poetry@main with: python-version: ${{ matrix.python-version }} - poetry-version: "1.8.2" + poetry-version: "2.1.3" install-args: "-E dev -E postgres -E external-tools -E tests" # Adjust as necessary - name: Validate PR Title diff --git a/.github/workflows/docker-integration-tests.yaml b/.github/workflows/docker-integration-tests.yaml index 63886ffe..260b85e8 100644 --- a/.github/workflows/docker-integration-tests.yaml +++ b/.github/workflows/docker-integration-tests.yaml @@ -55,10 +55,10 @@ jobs: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} PYTHONPATH: ${{ github.workspace }}:${{ env.PYTHONPATH }} run: | - pipx install poetry==1.8.2 + pipx install poetry==2.1.3 poetry install -E dev -E postgres - poetry run pytest -s tests/test_client.py -# poetry run pytest -s tests/test_client_legacy.py + poetry run pytest -s tests/test_client.py +# poetry run pytest -s tests/test_client_legacy.py - name: Print docker logs if tests fail if: failure()