mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: bugfix: known failure cases cannot read files
This commit is contained in:
parent
919e674f6e
commit
4ffd458ddd
@ -52,7 +52,7 @@ class Runner(threading.Thread):
|
||||
@staticmethod
|
||||
def _get_config_cases(config_file):
|
||||
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
|
||||
|
||||
for line in open(config_file).readlines():
|
||||
|
Loading…
Reference in New Issue
Block a user