Switching from poetry to uv #3145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Numpy tests | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # This is required for requesting the JWT for S3 access | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.12'] | |
concurrency: | |
group: ${{ github.workflow }}-${{ matrix.python-version }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
HYPOTHESIS_PROFILE: ci | |
UPLOAD_TIMINGS: ${{ github.event_name == 'push' && matrix.python-version == '3.12' && 'true' || 'false' }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --no-cache-dir --upgrade pip setuptools wheel | |
pip install --no-cache-dir uv==0.5.23 | |
uv sync --all-extras | |
- name: Create durations file name | |
id: record_file | |
run: echo "filename=durations_$(date +%s)_$(git rev-parse --short HEAD).txt" >> "$GITHUB_OUTPUT" | |
- name: Run tests | |
run: | | |
set -o pipefail | |
uv run pytest tests --backend=numpy -p no:warnings --tb=native ${{ env.UPLOAD_TIMINGS == 'true' && '--durations=0 -vv ' || '' }}| tee durations.txt | |
set +o pipefail | |
- name: configure aws credentials | |
if: env.UPLOAD_TIMINGS == 'true' | |
uses: aws-actions/configure-aws-credentials@v3 | |
with: | |
role-to-assume: ${{ secrets.AWS_OIDC_ROLE_ARN }} | |
aws-region: ${{ vars.AWS_DEFAULT_REGION }} | |
- name: Copy durations to s3 | |
if: env.UPLOAD_TIMINGS == 'true' | |
env: | |
REF_NAME: ${{ github.ref_name }} | |
run: | | |
grep ' call ' durations.txt | awk '{print $3,$1}' > ${{ steps.record_file.outputs.filename }} | |
aws s3 cp ./${{ steps.record_file.outputs.filename }} s3://${{ secrets.AWS_TIMINGS_BUCKET }}/numpy_tests/$REF_NAME/ |