From b4006b0a8d538351cca1c81044f8fc2b1659b588 Mon Sep 17 00:00:00 2001 From: introkun Date: Tue, 26 Mar 2024 00:17:46 -0300 Subject: [PATCH] disabled gui tests --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index 2dc03681..28fcf414 100644 --- a/tasks.py +++ b/tasks.py @@ -13,8 +13,8 @@ def coverage(c, details=False, gui=False): c.run("coverage erase") c.run("coverage run -m pytest --ignore tests-gui") - if gui: - c.run("coverage run -a -m unittest tests-gui.gui_app_test") + # if gui: + # c.run("coverage run -a -m unittest tests-gui.gui_app_test") if details: c.run("coverage report", pty=True)