On 4/3/25 08:18, Philippe Mathieu-Daudé wrote:
+Decorator to skip execution of a test if the current +host operating system does not match one of the permitted +ones. +Example + + @skipIfOperatingSystem("Linux", "Darwin") +''' +def skipIfOperatingSystem(*args): + return skipIf(platform.system() in args, + 'not running on one of the required OS(s) "%s"' %
s/required/prohibited/ ? With that, or similar wording, Reviewed-by: Richard Henderson <richard.hender...@linaro.org> r~