You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main substantive change here is switching to using mktemp() to
pick a server socket name, instead of using the fixed name
"/tmp/test.sock". This should fixpython-triogh-447.
While I was at it, I also refactored the main test, and made it clean
up after itself more carefully.
Finally, I replaced
os.path.join(tempfile.gettempdir(), tempfile.mktemp())
with
tempfile.mktemp()
Because it turns out they're equivalent: mktemp() already returns an
absolute filename inside an appropriate directory.
Seen here: https://ci.cryptography.io/blue/rest/organizations/jenkins/pipelines/python-trio/pipelines/trio/branches/PR-446/runs/1/nodes/5/log/?start=0
The text was updated successfully, but these errors were encountered: