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

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -