Skip to content
Snippets Groups Projects

add code without test coverage

Open Ansgar Burchardt requested to merge add-code-without-test-coverage into main
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
+ 3
3
@@ -15,9 +15,9 @@ def get_index() -> str:
@app.get("/hello")
def get_hello(name: Annotated[str, Query()] = "World") -> str:
match name:
# case "Bernd":
# logger.warn("Bernd was here.")
# return "Bye."
case "Bernd":
logger.warn("Bernd was here.")
return "Bye."
case "Janosch":
logger.info("The cat was here.")
return "Meow."
Loading