Misty De Méo 0f707dc02b
Some checks are pending
Python Formatting Check / formatting (push) Waiting to run
Tests / Run tests (3.12) (push) Waiting to run
Tests / Run tests (3.8) (push) Waiting to run
CI: extend daily job timeout
This was left at the default of six hours, but it timed out last
might. I'll set it at eight hours to see if this is more reliable.
2025-03-05 17:10:27 -08:00

24 lines
429 B
YAML

name: Full test suite
on:
schedule:
- cron: "0 6 * * *" # 10PM Pacific daily
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
timeout-minutes: 480
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: ./.github/workflows/setup
- name: Run tests
run: |
py.test --tb=native --verbose tests