Skip to content
This repository was archived by the owner on Apr 6, 2024. It is now read-only.

Commit 13ac5fb

Browse files
committed
Read issues in HTML format in integration tests
1 parent 45e106d commit 13ac5fb

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

tests/integration/tests.cake

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,18 @@ Task("CheckBinaryFilesTrackedByLfs")
3030
{
3131
var repoRootDir = MakeAbsolute(Directory("../../"));
3232

33-
var settings =
34-
new GitRepositoryIssuesSettings
35-
{
36-
CheckBinaryFilesTrackedByLfs = true
37-
};
38-
3933
var issues =
4034
ReadIssues(
41-
GitRepositoryIssuesAliases.GitRepositoryIssues(Context, settings),
42-
repoRootDir);
35+
GitRepositoryIssuesAliases.GitRepositoryIssues(
36+
Context,
37+
new GitRepositoryIssuesSettings
38+
{
39+
CheckBinaryFilesTrackedByLfs = true
40+
}),
41+
new ReadIssuesSettings(repoRootDir)
42+
{
43+
Format = IssueCommentFormat.Html
44+
});
4345

4446
var reportDir =
4547
repoRootDir.Combine("BuildArtifacts").Combine("TestResults").Combine("Integration");

0 commit comments

Comments
 (0)