Skip to content

Update pytest requirement from >=7.0.0 to >=9.0.3 #95

Update pytest requirement from >=7.0.0 to >=9.0.3

Update pytest requirement from >=7.0.0 to >=9.0.3 #95

Workflow file for this run

name: Smoke Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
python-smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install --upgrade -r requirements_web.txt
- run: python -m compileall backends test website-generator
- run: python -c "import json; from pathlib import Path; config = json.loads(Path('setup/config.json').read_text()); assert 'stable' in config and 'development' in config and 'deploy_paths' in config"