From 5cc316fee14feb596e74f984d91894b497cb4e26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Wed, 17 Nov 2021 16:05:11 +0100 Subject: [PATCH] Remove test code --- src/runboat/api.py | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/src/runboat/api.py b/src/runboat/api.py index fb994e6..794410e 100644 --- a/src/runboat/api.py +++ b/src/runboat/api.py @@ -216,36 +216,3 @@ async def eventsource_endpoint( ) -> EventSourceResponse: event_source = BuildEventSource(request, repo, build_name) return EventSourceResponse(event_source.events()) - - -eshtml = """ - - - - SSE Test - - -

SSE Test

- - - - -""" - - -@router.get("/estest") -async def get() -> HTMLResponse: - return HTMLResponse(eshtml)