Delete InnerEye from workflows #9258
GitHub Actions / E2E Test Results
failed
Feb 20, 2024 in 0s
2 fail, 23 pass in 5s
25 tests 23 ✅ 5s ⏱️
1 suites 0 💤
1 files 2 ❌
Results for commit 1e48253.
Annotations
Check warning on line 0 in test_workspace_service_templates
github-actions / E2E Test Results
test_get_workspace_service_templates[tre-service-innereye] (test_workspace_service_templates) failed
artifacts/E2E Test (Smoke) Results/pytest_e2e_smoke.xml [took 0s]
Raw output
AssertionError: No tre-service-innereye template found
assert 'tre-service-innereye' in ['tre-service-guacamole', 'tre-service-databricks', 'tre-workspace-service-health', 'tre-service-mlflow', 'tre-workspace-service-gitea', 'tre-workspace-service-mysql', ...]
template_name = 'tre-service-innereye', verify = False
@pytest.mark.smoke
@pytest.mark.parametrize("template_name", workspace_service_templates)
async def test_get_workspace_service_templates(template_name, verify) -> None:
async with AsyncClient(verify=verify) as client:
admin_token = await get_admin_token(verify)
response = await client.get(f"{config.TRE_URL}{strings.API_WORKSPACE_SERVICE_TEMPLATES}", headers=get_auth_header(admin_token))
template_names = [templates["name"] for templates in response.json()["templates"]]
> assert (template_name in template_names), f"No {template_name} template found"
E AssertionError: No tre-service-innereye template found
E assert 'tre-service-innereye' in ['tre-service-guacamole', 'tre-service-databricks', 'tre-workspace-service-health', 'tre-service-mlflow', 'tre-workspace-service-gitea', 'tre-workspace-service-mysql', ...]
test_workspace_service_templates.py:29: AssertionError
Check warning on line 0 in test_workspace_service_templates
github-actions / E2E Test Results
test_get_workspace_service_template[tre-service-innereye] (test_workspace_service_templates) failed
artifacts/E2E Test (Smoke) Results/pytest_e2e_smoke.xml [took 0s]
Raw output
AssertionError: GET Request for tre-service-innereye failed
assert 404 == 200
+ where 404 = <Response [404 Not Found]>.status_code
+ and 200 = status.HTTP_200_OK
template_name = 'tre-service-innereye', verify = False
@pytest.mark.smoke
@pytest.mark.parametrize("template_name", workspace_service_templates)
async def test_get_workspace_service_template(template_name, verify) -> None:
admin_token = await get_admin_token(verify)
async with get_template(template_name, strings.API_WORKSPACE_SERVICE_TEMPLATES, admin_token, verify) as response:
> assert (response.status_code == status.HTTP_200_OK), f"GET Request for {template_name} failed"
E AssertionError: GET Request for tre-service-innereye failed
E assert 404 == 200
E + where 404 = <Response [404 Not Found]>.status_code
E + and 200 = status.HTTP_200_OK
test_workspace_service_templates.py:37: AssertionError
Check notice on line 0 in .github
github-actions / E2E Test Results
25 tests found
There are 25 tests, see "Raw output" for the full list of tests.
Raw output
test_provisioned_health_api ‑ test_health
test_shared_service_templates ‑ test_get_shared_service_template[tre-shared-service-admin-vm]
test_shared_service_templates ‑ test_get_shared_service_template[tre-shared-service-airlock-notifier]
test_shared_service_templates ‑ test_get_shared_service_template[tre-shared-service-certs]
test_shared_service_templates ‑ test_get_shared_service_template[tre-shared-service-firewall]
test_shared_service_templates ‑ test_get_shared_service_template[tre-shared-service-gitea]
test_shared_service_templates ‑ test_get_shared_service_template[tre-shared-service-sonatype-nexus]
test_shared_service_templates ‑ test_get_shared_service_templates[tre-shared-service-admin-vm]
test_shared_service_templates ‑ test_get_shared_service_templates[tre-shared-service-airlock-notifier]
test_shared_service_templates ‑ test_get_shared_service_templates[tre-shared-service-certs]
test_shared_service_templates ‑ test_get_shared_service_templates[tre-shared-service-firewall]
test_shared_service_templates ‑ test_get_shared_service_templates[tre-shared-service-gitea]
test_shared_service_templates ‑ test_get_shared_service_templates[tre-shared-service-sonatype-nexus]
test_ui ‑ test_ui
test_workspace_service_templates ‑ test_create_workspace_service_templates
test_workspace_service_templates ‑ test_get_workspace_service_template[tre-service-azureml]
test_workspace_service_templates ‑ test_get_workspace_service_template[tre-service-guacamole]
test_workspace_service_templates ‑ test_get_workspace_service_template[tre-service-innereye]
test_workspace_service_templates ‑ test_get_workspace_service_template[tre-workspace-service-gitea]
test_workspace_service_templates ‑ test_get_workspace_service_templates[tre-service-azureml]
test_workspace_service_templates ‑ test_get_workspace_service_templates[tre-service-guacamole]
test_workspace_service_templates ‑ test_get_workspace_service_templates[tre-service-innereye]
test_workspace_service_templates ‑ test_get_workspace_service_templates[tre-workspace-service-gitea]
test_workspace_templates ‑ test_get_workspace_template[tre-workspace-base]
test_workspace_templates ‑ test_get_workspace_templates[tre-workspace-base]
Loading