mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Skip "test_doctest_framework" from Github Actions / Windows
This commit is contained in:
@ -436,6 +436,10 @@ void unittest_uart_end(){}
|
|||||||
validate_cliresult(result)
|
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):
|
def test_doctest_framework(clirunner, tmp_path: Path):
|
||||||
project_dir = tmp_path / "project"
|
project_dir = tmp_path / "project"
|
||||||
project_dir.mkdir()
|
project_dir.mkdir()
|
||||||
|
Reference in New Issue
Block a user