Skip to content

Commit 0bbc721

Browse files
committed
Merge branch 'bugfix/known_failure_cases_read_file_error' into 'master'
ci: bugfix: known failure cases cannot read files See merge request espressif/esp-idf!12340
2 parents 4ce47b0 + 4ffd458 commit 0bbc721

File tree

1 file changed

+1
-1
lines changed
  • tools/ci/python_packages/tiny_test_fw/bin

1 file changed

+1
-1
lines changed

tools/ci/python_packages/tiny_test_fw/bin/Runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, test_case_paths, case_config, env_config_file=None, known_fai
5252
@staticmethod
5353
def _get_config_cases(config_file):
5454
res = set()
55-
if not config_file or os.path.isfile(config_file):
55+
if not config_file or not os.path.isfile(config_file):
5656
return res
5757

5858
for line in open(config_file).readlines():

0 commit comments

Comments
 (0)