-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes for FAKE Xunit warning #922
Fixes for FAKE Xunit warning #922
Conversation
Fixes for the FAKE warning
Fixes for the FAKE warning
…es-for-fake-warning Conflicts: build.fsx
The build fails because of #904 |
✨ |
@@ -88,14 +88,14 @@ Target "ConventionTests" (fun _ -> | |||
!! (sprintf "./Octokit.Tests.Conventions/bin/%s/**/Octokit.Tests.Conventions.dll" buildMode) | |||
|> xUnit2 (fun p -> | |||
{p with | |||
OutputDir = testResultsDir }) | |||
HtmlOutputPath = Some (testResultsDir @@ "xunit.html") }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couldn't this affect someone? It's now outputting HTML instead of XML, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@khellang AFAIK it wasn't used. If it affects someone, I could change it to XML.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dunno. I thought maybe AppVeyor or someone might've picked it up. Just thought I'd ask 😄
The FAKE build has deprecated XUnit2Helper http://fsharp.github.io/FAKE/apidocs/fake-xunit2helper.html .
This fix replaces XUnit2Helper with XUnit2
http://fsharp.github.io/FAKE/apidocs/fake-testing-xunit2.html.