mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 12:44:33 +02:00
ci: bugfix: known failure cases cannot read files
This commit is contained in:
@@ -52,7 +52,7 @@ class Runner(threading.Thread):
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def _get_config_cases(config_file):
|
def _get_config_cases(config_file):
|
||||||
res = set()
|
res = set()
|
||||||
if not config_file or os.path.isfile(config_file):
|
if not config_file or not os.path.isfile(config_file):
|
||||||
return res
|
return res
|
||||||
|
|
||||||
for line in open(config_file).readlines():
|
for line in open(config_file).readlines():
|
||||||
|
Reference in New Issue
Block a user