Skip to content

Commit

Permalink
Merge pull request #749 from eggapauli/fix-xunit2-force-build-server
Browse files Browse the repository at this point in the history
Force build server output if the user wishes to
  • Loading branch information
forki committed Apr 8, 2015
2 parents 9a95046 + 0c24ce1 commit eef68ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/FakeLib/UnitTest/XUnit2Helper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ let buildXUnit2Args parameters assembly =
|> append "-maxthreads"
|> append (sprintf "%i" parameters.MaxThreads)
|> appendIfFalse parameters.ShadowCopy "-noshadow"
|> appendIfTrue (buildServer = TeamCity) "-teamcity"
|> appendIfTrue (buildServer = AppVeyor) "-appveyor"
|> appendIfTrue (buildServer = TeamCity || parameters.Teamcity) "-teamcity"
|> appendIfTrue (buildServer = AppVeyor || parameters.Appveyor) "-appveyor"
|> appendIfTrue parameters.Wait "-wait"
|> appendIfTrue parameters.Silent "-silent"
|> appendIfTrue parameters.XmlOutput (sprintf "-xml\" \"%s" (dir @@ (name + ".xml")))
Expand Down

0 comments on commit eef68ec

Please sign in to comment.