ci: fix daily run

I migrated our regular tests to use `uv`, but neglected to update
this config too.
This commit is contained in:
Misty De Méo 2025-07-18 15:10:28 -07:00 committed by Misty De Méo
parent 0f0ae4fbc3
commit 306e55d61a

View file

@ -12,12 +12,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
- uses: ./.github/workflows/setup
with:
python-version: '3.12'
- uses: ./.github/workflows/setup
- name: Run tests
run: |
py.test --tb=native --verbose tests
uv run py.test --tb=native --verbose tests