From c6856803cdd0af0bb3ecbf02f8e64a0ba4c38721 Mon Sep 17 00:00:00 2001 From: Chirag taneja Date: Tue, 28 Apr 2026 05:03:16 +0530 Subject: [PATCH] Include slow tests in local coverage --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 5a78d34..93203ae 100644 --- a/tasks.py +++ b/tasks.py @@ -16,7 +16,7 @@ def test(ctx: Context, args: str = ""): @task(optional=["args"], help={"args": "pytest additional arguments"}) def test_cov(ctx: Context, args: str = ""): """run test vith coverage""" - ctx.run(f"coverage run -m pytest {args}", pty=use_pty) + ctx.run(f"coverage run -m pytest --runslow {args}", pty=use_pty) @task(optional=["html"], help={"html": "flag to export html report"})