1

we are trying to execute unit tests with MSTest from command line and publishing the results at the TFS server. The problem is that MSTest is always returning:

Publishing results of test run buildmachine@XXX-XXXXXXX 2010-12-16 11:39:13_Release_Any CPU to http://xxxx:8080/Build/v1.0/PublishTestResultsBuildService2.asmx... ......................................................................................... Build 'xxx>xxx>x>x>x>xxxx>xxxx>x.x.x.xxx' does not include the specified configuration ('Release/Any CPU').

The problem is that the specified configuration should exist. We've build with the next MSBuild settings:

<ConfigurationToBuild Include="Release|Any CPU">
  <FlavorToBuild>Release</FlavorToBuild>
  <PlatformToBuild>Any CPU</PlatformToBuild>
</ConfigurationToBuild>

Any idea? I'm starting to be fed up with this.

afuzzyllama
  • 6,538
  • 5
  • 47
  • 64
Ignacio Soler Garcia
  • 21,122
  • 31
  • 128
  • 207

1 Answers1

0

The problem was that the build didn't succeeded and then MSTest couldn't publish the results. The error message could be better ...

Ignacio Soler Garcia
  • 21,122
  • 31
  • 128
  • 207