VSTS and TFS integration

404

​In order to integrate your tests with VSTS/TFS, first you need to have docker installed on the VSTS/TFS agent.

Now, just follow these steps:

  1. Go to Build page
600

​2. Create a new build

591

​3. Select your repository

961
  1. Select empty job
961
  1. Add task
429
  1. Add Docker task
758
  1. Select Action: Run a Docker command
759
  1. Set the Command with the appropriate parameters, as described in the CLI page. Here is the basic command template.
run --rm -v $(Build.BinariesDirectory):/opt/testim-runner testim/docker-cli --token <TOKEN> --project <PROJECT-ID> --grid <GRID-NAME> --report-file /opt/testim-runner/testim-sanity-$(Build.BuildId)-report.xml
708

Note: For the grid name, read here how to set up your grid.

  1. In order for VSTS/TFS to store, analyze and show the results, we generate a standard JUnitXMLReporter XML file.
    For VSTS/TFS to use the file you need to add a Publish Test Results task
753
  1. Select Test result format: JUnit
659
  1. Set the Test results files value, according to the "report-file" parameter in section 8 and set the
654
  1. Set the Search folder $(Build.BinariesDirectory)
654
  1. Save the build settings
221