From 1e28e44e4e7923934c37dee27c6549eabf185c5a Mon Sep 17 00:00:00 2001 From: pedrocarlo Date: Tue, 24 Jun 2025 15:36:29 -0300 Subject: [PATCH] use uv run instead of uvx --- .github/workflows/python.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 5ee5fb857..89df16cf3 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -22,11 +22,7 @@ jobs: steps: - id: gen-matrix run: | - if [ ${{ github.event_name }} == "pull_request" ]; then - echo "python-versions=[\"3.13\"]" >> $GITHUB_OUTPUT - else - echo "python-versions=[\"3.9\",\"3.10\",\"3.11\",\"3.12\",\"3.13\"]" >> $GITHUB_OUTPUT - fi + echo "python-versions=[\"3.9\",\"3.10\",\"3.11\",\"3.12\",\"3.13\"]" >> $GITHUB_OUTPUT test: needs: configure-strategy @@ -64,7 +60,7 @@ jobs: run: uv sync --all-extras --dev --all-packages - name: Run Pytest - run: uvx pytest tests + run: uv run pytest tests lint: runs-on: blacksmith-4vcpu-ubuntu-2404