ci: skip app downloader for host test cases

This commit is contained in:
Fu Hanxi
2025-07-16 10:35:21 +02:00
parent 158eb78555
commit 76181e5fce
4 changed files with 13 additions and 5 deletions

View File

@@ -150,6 +150,9 @@ class IdfLocalPlugin:
if 'esp32c2' in case.targets and 'xtal_26mhz' not in case.all_markers:
item.add_marker('xtal_40mhz')
if 'host_test' in case.all_markers:
item.add_marker('skip_app_downloader') # host_test jobs will build the apps itself
def pytest_custom_test_case_name(self, item: Function) -> str:
return item.funcargs.get('test_case_name', item.nodeid) # type: ignore