Skip "test_doctest_framework" from Github Actions / Windows

This commit is contained in:
Ivan Kravets
2022-05-07 17:55:32 +03:00
parent 3f46a97b6b
commit 5b00f6fb95

View File

@ -436,6 +436,10 @@ void unittest_uart_end(){}
validate_cliresult(result)
@pytest.mark.skipif(
sys.platform == "win32" and os.environ.get("GITHUB_ACTIONS"),
reason="skip Github Actions on Windows (MinGW issue)",
)
def test_doctest_framework(clirunner, tmp_path: Path):
project_dir = tmp_path / "project"
project_dir.mkdir()