-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run comment stage if commenting is enabled (#1785)
Co-authored-by: Melisa Bok <[email protected]>
- Loading branch information
1 parent
0c3809d
commit 1871388
Showing
7 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3311,7 +3311,8 @@ def test_ethics_review_stage(self, openreview_client, helpers, selenium, request | |
} | ||
} | ||
}, | ||
'release_submissions_to_ethics_reviewers': 'We confirm we want to release the submissions and reviews to the ethics reviewers' | ||
'release_submissions_to_ethics_reviewers': 'We confirm we want to release the submissions and reviews to the ethics reviewers', | ||
'enable_comments_for_ethics_reviewers': 'Yes, enable commenting for ethics reviewers.' | ||
}, | ||
forum=request_form.forum, | ||
referent=request_form.forum, | ||
|
@@ -3418,6 +3419,12 @@ def test_ethics_review_stage(self, openreview_client, helpers, selenium, request | |
assert invitation | ||
assert 'ICML.cc/2023/Conference/Submission52/Ethics_Reviewers' in invitation.invitees | ||
|
||
# comment invitations are created for all papers, with only PCs and ethics reviewers as invitees | ||
invitations = openreview_client.get_all_invitations(invitation='ICML.cc/2023/Conference/-/Official_Comment') | ||
assert len(invitations) == 100 | ||
invitation = openreview_client.get_invitation('ICML.cc/2023/Conference/Submission1/-/Official_Comment') | ||
assert invitation.invitees == ['ICML.cc/2023/Conference', 'openreview.net/Support', 'ICML.cc/2023/Conference/Submission1/Ethics_Reviewers'] | ||
|
||
def test_comment_stage(self, openreview_client, helpers): | ||
|
||
pc_client=openreview.Client(username='[email protected]', password=helpers.strong_password) | ||
|