Skip to content

Commit

Permalink
Fix the upload file
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzhao9 committed Jun 7, 2024
1 parent 9dee985 commit 6483b83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions userbenchmark/torchao/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ def post_ci_process(output_files: List[str]):

if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--test-file", type=str, help="Add file to test.")
parser.add_argument("--test-files", nargs='+', help="Add files to test.")
args = parser.parse_args()
post_ci_process([args.test_file])
post_ci_process(args.test_files)

0 comments on commit 6483b83

Please sign in to comment.