Skip to content

Commit

Permalink
Dont autoverify on BuildServer (#1341)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored Nov 28, 2021
1 parent ca72faa commit ad9f5ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Sentry.Testing/ApiExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static Task CheckApproval(this Assembly assembly, [CallerFilePath] string
var generatorOptions = new ApiGeneratorOptions { WhitelistedNamespacePrefixes = new[] { "Sentry" } };
var apiText = assembly.GeneratePublicApi(generatorOptions);
return Verifier.Verify(apiText, null, filePath)
.AutoVerify()
.AutoVerify(includeBuildServer: false)
.UniqueForTargetFrameworkAndVersion()
.ScrubEmptyLines()
.ScrubLines(l =>
Expand Down

0 comments on commit ad9f5ff

Please sign in to comment.