-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Jan 2023 rotation] New scriptworker ed25519 key #583
[Jan 2023 rotation] New scriptworker ed25519 key #583
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to dig into those test failures
Odd, the commit I made for this last time was pretty much identical: 27f58ba (other than black formatting) |
How odd... |
Looks like this is a Python change: Changing the method to |
I filed #584 to make the CI more reproducible. |
87f5ccb
to
92aada2
Compare
@@ -248,10 +248,10 @@ async def decorated_always_fail(*args, **kwargs): | |||
|
|||
# create_temp_creds {{{1 | |||
def test_create_temp_creds(): | |||
with mock.patch.object(utils, "createTemporaryCredentials") as p: | |||
p.return_value = {"one": b"one", "two": "two"} | |||
with mock.patch.object(utils, "createTemporaryCredentials") as patched: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
renamed p
to patched
as it conflicts with pdb p
command; took me longer than I'd like to admit to realize this is why I had issues debugging it 🥲
No description provided.