We are trying to run xUnit tests correctly using TFS 2015 RC. We are trying to access the test runner stored in our NuGet package folder, which is located in the folder with the Build Agent drop-down list.
We are trying to reference the test runner using this path in the "Path to custom test adapters" $ (Build.SourcesDirectory) \ WebIZ \ packages \ xunit.runners.1.9.2 \ tools.The build can resolve the path in order (it used to be with an invalid path message), but now he cannot find a test runner
2015-06-09T20: 05: 40.4008595Z Executing powershell script: D: \ TFS \ Build_vNext \ AgentSchlitz \ agent \ tasks \ VSTest \ 1.0.8 \ VSTest.ps1
2015-06-09T20: 05: 41.9947507Z Warning: path "D: \ TFS \ Build_vNext \ AgentSchlitz \ 1c692895 \ WebIZ \ WebIZ \ packages \ xunit.runners.1.9.2 \ tools \ 'specified in' TestAdapterPath 'does not contain test adapters, provides a valid path and try again.extensions Example: vstest.console.exe myTests.dll / UseVsixExtensions: true
What should be the correct setting for "Path to custom test adapters"? If the correct setting is: $ (Build.SourcesDirectory) \ WebIZ \ Packages \ xunit.runners.1.9.2 \ tools * $ (Build.SourcesDirectory) \ WebIZ \ packages \ xunit.runners.1.9.2 \ tools *
source
share