-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
Description
starting a benchmark on windows doesn't work.
this function specifically in generic.py:
@property
def architecture(self) -> str:
"""
Get the architecture of the platform.
Returns:
str: the architecture of the platform.
"""
if self._architecture is None:
self._architecture = self.comm.shell(
"uname -m",
print_input=False,
print_output=False,
).strip()
return self._architecturewill yield a FileNotFounderrror [WinError 2], which is also not handled by the current error handling and thus cannot have an "ignore_ret_codes". Just ignoring this function will create errors further down in the program.