From 5d6332dfec076c6f0cb0ade4bb5343c4dc0726d3 Mon Sep 17 00:00:00 2001 From: Giovanni Ciatto Date: Sun, 5 May 2024 11:00:02 +0200 Subject: [PATCH] chore: disable ci check in gui tests --- tests/test_gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_gui.py b/tests/test_gui.py index 1211882..59df74b 100644 --- a/tests/test_gui.py +++ b/tests/test_gui.py @@ -2,8 +2,8 @@ import unittest -if "CI" in os.environ: - raise unittest.SkipTest("Skipping GUI tests in CI environment") +# if "CI" in os.environ: +# raise unittest.SkipTest("Skipping GUI tests in CI environment") from calculator.ui.gui import CalculatorApp