Skip to content

Commit

Permalink
Update cassette submodule & fix current_score.json generation (#4601)
Browse files Browse the repository at this point in the history
* Update cassette submodule

* add a new line when building current_score.json
  • Loading branch information
waynehamadi committed Jun 6, 2023
1 parent 055806e commit 53efa8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Auto-GPT-test-cassettes
3 changes: 2 additions & 1 deletion tests/challenges/utils/build_current_score.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ def recursive_sort_dict(data: dict) -> dict:
sorted_data = recursive_sort_dict(merged_data)

with open(current_score_filename, "w") as f_current:
json.dump(sorted_data, f_current, indent=4)
json_data = json.dumps(sorted_data, indent=4)
f_current.write(json_data + "\n")

1 comment on commit 53efa8f

@vercel
Copy link

@vercel vercel bot commented on 53efa8f Jun 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deployment failed with the following error:

Resource is limited - try again in 41 minutes (more than 100, code: "api-deployments-free-per-day").

Please sign in to comment.