Dev-iL commented on code in PR #63598:
URL: https://github.com/apache/airflow/pull/63598#discussion_r2935380853
##########
.github/workflows/basic-tests.yml:
##########
@@ -145,6 +149,25 @@ jobs:
- name: "Run shared ${{ matrix.shared-distribution }} tests"
run: uv run --group dev pytest --color=yes -n auto
working-directory: shared/${{ matrix.shared-distribution }}
+ tests-scripts:
+ timeout-minutes: 10
+ name: Scripts tests
+ runs-on: ${{ fromJSON(inputs.runners) }}
+ if: inputs.run-scripts-tests == 'true'
+ steps:
+ - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #
v6.0.2
+ with:
+ fetch-depth: 1
+ persist-credentials: false
+ - name: "Install uv"
+ run: pip install "uv==${UV_VERSION}"
Review Comment:
```suggestion
curl -LsSf https://astral.sh/uv/${UV_VERSION}/install.sh | sh
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]