Skip to content

fix: Use create=True in patch.object for app_manifest ClassVar #129

fix: Use create=True in patch.object for app_manifest ClassVar

fix: Use create=True in patch.object for app_manifest ClassVar #129

Workflow file for this run

name: E2E Tests
on:
push:
workflow_dispatch:
jobs:
e2e:
runs-on: ubuntu-latest
env:
TZ: America/Chicago
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v6
with:
python-version: "3.13"
- run: uv sync
- name: Run e2e tests
run: uv run nox -s e2e
- name: Upload test results
if: failure()
uses: actions/upload-artifact@v4
with:
name: e2e-test-results
path: test-results/
retention-days: 7