diff --git a/tasks.py b/tasks.py index 1b261571..2dc03681 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