SERVER-48714 Send commit queue validation messages to stderr

This commit is contained in:
Lydia Stepanek
2020-06-25 14:19:50 -04:00
committed by Evergreen Agent
parent 5394c832f0
commit 021430190c
2 changed files with 10 additions and 21 deletions

View File

@@ -61,12 +61,6 @@ class ValidateCommitMessageTest(unittest.TestCase):
main([message]) == STATUS_ERROR
for message in interleave_new_format(INVALID_MESSAGES)))
def test_ignore_warnings(self):
self.assertTrue(
all(
main(["-i"] + [message]) == STATUS_OK
for message in interleave_new_format(INVALID_MESSAGES)))
def test_last_git_commit_success(self):
with patch(
ns("subprocess.check_output"),