Skip to content

Commit

Permalink
Fix codecov token
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Rey committed Nov 7, 2024
1 parent a65f200 commit 7acee99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion easychair_extra/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def generate_review_files(
threshold = 20 / len(all_submissions)
if person["role"] == "senior PC member":
threshold *= 2.5
if person["role"] == "associate chair":
elif person["role"] == "associate chair":
threshold *= 4
for submission in all_submissions:
if random.random() < 20 / len(all_submissions):
Expand Down
2 changes: 1 addition & 1 deletion examples/minimum_review_quota.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@
break
num_assigned_previous = num_assigned
else:
print(f"\tProblem solving the ILP...")
print("\tProblem solving the ILP...")
break

0 comments on commit 7acee99

Please sign in to comment.