Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ydshieh committed Aug 10, 2023
1 parent b39f159 commit 98772c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/create_circleci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def create_circleci_config(folder=None):
if test_list != "tests":
# we use `setup.py` of the latest commit on the `main` branch to compute the checksum for the cache
proc = subprocess.Popen("python3 utils/get_repo_info.py", stdout=subprocess.PIPE)
checksum = proc.stdout.read().decode().split(" ")[0]
checksum = proc.stdout.read().decode().split()[0]

jobs = []
all_test_file = os.path.join(folder, "test_list.txt")
Expand Down

0 comments on commit 98772c4

Please sign in to comment.