diff --git a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs index 742dfc7e..3857c0ab 100644 --- a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs +++ b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.WeirdSettingsSection.cs @@ -575,7 +575,7 @@ namespace CompatBot.Utils.ResultFormatters { var frameLimit = items["frame_limit"]; var vsync = items["vsync"] == EnabledMark; - if (ppuPatches.Count == 1) + if (ppuPatches.Any() && ppuPatches.Values.Max() > 1) { if (frameLimit == "Off") { diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9ac5ca43..46c0bd36 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,3 +1,7 @@ +trigger: +- master +pr: +- master jobs: - job: BuildAndTest displayName: 'Run tests' @@ -86,5 +90,4 @@ jobs: repository: $(DockerRegistry) command: 'buildAndPush' Dockerfile: 'Dockerfile' - tags: test-latest - + tags: test-latest \ No newline at end of file