I'm tracking the files of my golang app
in a local TFS server
integrated with git
. I want to define build
, test
, and deploy
steps but I can't find any tool for that.
How can I define a build
and test
step for the project that shows the test results
in the Team's web site
? thank you.
You can use the vNext build system in TFS2017 and add Command Line task in the build definition to run the build and test just like what you do on local machine: And then add a "Publish Test Result" task to publish the test result to TFS so that you can check the test result from the TFS Website. A limitation is that "Publish Test Result" task only support four Test Result Format for now: JUnit, NUnit, VSTest and XUnit.