V4.10
Quality Gate / gate (push) Failing after 11s

This commit is contained in:
Jim Lancaster
2026-08-22 10:19:30 -05:00
parent bf2f3ac09c
commit cf49c3c127
35 changed files with 1029 additions and 161 deletions
+5 -4
View File
@@ -131,7 +131,7 @@ class TestDocumentsPageRendering:
assert "Edit Document" in response.text
@pytest.mark.asyncio
async def test_document_jobs_page_renders_job_links(self, app_client):
async def test_document_jobs_page_redirects_to_filtered_jobs(self, app_client):
_, client = app_client
async with session_scope() as session:
@@ -143,13 +143,14 @@ class TestDocumentsPageRendering:
session.add(job)
await session.commit()
doc_id = str(doc.id)
job_id = str(job.id)
_ = str(job.id)
response = client.get(f"/ui/documents/{doc_id}/jobs")
assert response.status_code == 200
assert "Jobs for Doc With Job" in response.text
assert f"Job ID: {job_id}" in response.text
assert "Jobs for Document" in response.text
assert "Create job" not in response.text
assert "Refresh" not in response.text
@pytest.mark.asyncio
async def test_document_edit_page_prefills_existing_values(self, app_client, seed_person_and_document):