Skip to content

Commit 7b13962

Browse files
authored
Fix unintentional change in CI for removing created tar directory (#518)
* fix unintentional movement Signed-off-by: Chun-Wei Chen <[email protected]> * move remove inside loop block Signed-off-by: Chun-Wei Chen <[email protected]>
1 parent 26fe75e commit 7b13962

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workflow_scripts/test_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ def main():
7272
print('[FAIL] {}: {}'.format(model_name, e))
7373
failed_models.append(model_path)
7474
test_utils.remove_onnxruntime_test_dir()
75-
# remove the produced tar directory
76-
test_utils.remove_tar_dir()
75+
# remove the produced tar directory
76+
test_utils.remove_tar_dir()
7777

7878
if len(failed_models) == 0:
7979
print('{} models have been checked. '.format(len(model_list)))

0 commit comments

Comments
 (0)