From 732e1dbc7ce7cd3d9fc5372fc88c09944128010a Mon Sep 17 00:00:00 2001 From: introkun Date: Mon, 25 Mar 2024 23:56:54 -0300 Subject: [PATCH] removed deprecated coverage annotate --- tasks.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tasks.py b/tasks.py index 1b2615716..2dc036810 100644 --- a/tasks.py +++ b/tasks.py @@ -16,7 +16,6 @@ def coverage(c, details=False, gui=False): if gui: c.run("coverage run -a -m unittest tests-gui.gui_app_test") if details: - c.run("coverage annotate") c.run("coverage report", pty=True) @task