mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-04-22 08:29:07 -04:00

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.
24 lines
429 B
YAML
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
|