From 0cf7aeeec91091a97aea608ddb20a161d2545126 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 8 May 2022 14:42:07 +0300 Subject: [PATCH] Fix test on Github Actions --- tests/commands/test_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/test_test.py b/tests/commands/test_test.py index 8d7aee75..466df517 100644 --- a/tests/commands/test_test.py +++ b/tests/commands/test_test.py @@ -437,7 +437,7 @@ void unittest_uart_end(){} @pytest.mark.skipif( - sys.platform == "win32" and os.environ.get("GITHUB_ACTIONS"), + sys.platform == "win32" and os.environ.get("GITHUB_ACTIONS") == "true", reason="skip Github Actions on Windows (MinGW issue)", ) def test_doctest_framework(clirunner, tmp_path: Path):