Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
Windows64PGOTailcallBuild,
Windows64PGONoGilBuild,
Windows64PGONoGilTailcallBuild,
Windows64RefleakBuild,
Windows64ReleaseBuild,
MacOSArmWithBrewBuild,
MacOSArmWithBrewNoGilBuild,
Expand Down
7 changes: 4 additions & 3 deletions master/custom/release_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def decorated(*args, **kwargs):
raise _WrappedAttributeError(f'your error: {e!r}')
return decorated

class _WrappedAttributeError(Exception): pass
class _WrappedAttributeError(Exception):
pass


class DashboardObject:
Expand Down Expand Up @@ -447,9 +448,9 @@ def junit_results(self):
# We don't have a logger set up, this returns None on common failures
# (meaning failures won't show on the dashboard).
# TODO: set up monitoring and log failures (in the whole method).
except OSError as e:
except OSError:
return None
except ElementTree.ParseError as e:
except ElementTree.ParseError:
return None

result = JunitResult(self, {})
Expand Down