From d1dfe148f68df02428d8f150b104a948eff39b49 Mon Sep 17 00:00:00 2001 From: pederhan Date: Wed, 6 Nov 2024 12:13:24 +0100 Subject: [PATCH] chore: remove unused `app_runner` function in conftest.py --- tests/conftest.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 01725416..e9f457a2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -21,10 +21,6 @@ def _app() -> Iterator[StatefulApp]: yield app -def app_runner(): - return runner.invoke(app, ["--help"]) - - @pytest.fixture def ctx(app: StatefulApp) -> typer.Context: """Create context for the main command."""