visual studio - VSTS Configuration to run xUnit tests for x64 platform -
i need make configuration run xunit test build x64 platform. how can that?
i found this article doesn't help. i've got
no test runs available build.
here properties in vsts:
test assemblies: **\*test*.dll !**\obj\** search folder: src/modules test platform version: visual studio 2017 build platform: x64 build configuration: release
refer these steps:
- change buildplatform variable x64
- nuget restore
build solution (platform:
$(buildplatform);configuration:$(buildconfiguration);visual studio version:visual studio 2017).net core (preview) (command:
test; projects:**/*test*.csproj; arguments:--configuration $(buildconfiguration) --logger "trx;logfilename=test-results.xml" /property:platform=$(buildplatform))- publish test results (test result format:
vstest; test results files:**/test-*.xml)
Comments
Post a Comment