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:

  1. change buildplatform variable x64
  2. nuget restore
  3. build solution (platform: $(buildplatform); configuration: $(buildconfiguration); visual studio version: visual studio 2017)

  4. .net core (preview) (command: test; projects: **/*test*.csproj; arguments: --configuration $(buildconfiguration) --logger "trx;logfilename=test-results.xml" /property:platform=$(buildplatform))

  5. publish test results (test result format: vstest; test results files: **/test-*.xml)

Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -