Skip to content

Missing Windows Support #119

@TriedAngle

Description

@TriedAngle

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._architecture

will 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.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions