mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-27 04:55:53 +00:00
feat(tools): Disable failing build system tests on Windows runner
This commit is contained in:
@@ -4,12 +4,14 @@ import logging
|
||||
import os
|
||||
import re
|
||||
import shutil
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
import pytest
|
||||
from test_build_system_helpers import EnvDict, IdfPyFunc, append_to_file, file_contains, run_cmake, run_cmake_and_build
|
||||
|
||||
|
||||
@pytest.mark.skipif(sys.platform == 'win32', reason='Failing on Windows runner. TODO')
|
||||
def test_build_custom_cmake_project(test_app_copy: Path) -> None:
|
||||
for target in ['esp32', 'esp32s3', 'esp32c6', 'esp32h2']:
|
||||
logging.info(f'Test build ESP-IDF as a library to a custom CMake projects for {target}')
|
||||
@@ -50,6 +52,7 @@ def test_build_cmake_library_psram_strategies(idf_py: IdfPyFunc, test_app_copy:
|
||||
(test_app_copy / 'sdkconfig').unlink()
|
||||
|
||||
|
||||
@pytest.mark.skipif(sys.platform == 'win32', reason='Failing on Windows runner. TODO')
|
||||
@pytest.mark.usefixtures('test_app_copy')
|
||||
@pytest.mark.usefixtures('idf_copy')
|
||||
def test_defaults_for_unspecified_idf_build_process_args(default_idf_env: EnvDict) -> None:
|
||||
|
||||
Reference in New Issue
Block a user