From 987d1a12102fc4771b21a849177ad4625b55fda5 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 2 Dec 2023 16:25:22 +0100 Subject: [PATCH] add docstring --- src/runner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runner.py b/src/runner.py index ce8db3b..46819ed 100644 --- a/src/runner.py +++ b/src/runner.py @@ -186,6 +186,7 @@ class Runner: @staticmethod def result_int_to_str(result_int: int) -> str: + """converts the pytest exit code (int) into a meaningful string""" match result_int: case -1: return "skipped"