简体   繁体   中英

UWP unit testing with Jenkins

It is not really an issue I would like to ask today but I search best practices to unit testing a UWP application with Jenkins.

First, I created a Unit Test App for my main application and, on my development machine, I generated appx package using MSBuild command line tool. It works well and I can also execute unit tests with the VS Test console. Then I tried to automate it with Jenkins on my build server. But the MSBuild command does not work. I have no issue but it produces no output. After lot of research (without any success), my question is the following:

What is the best way to make UWP unit testing with a result dashboard using Jenkins?

Thanks

In order to make MSBuild work correctly, I had to create two subsequent build steps, one with command line argument:

-t:restore

in order to make it restore all the nuget dependencies, and a second one with command line arguments:

/t:Rebuild /p:Configuration=Release /p:UapAppxPackageBuildMode=StoreUpload

for the real release compilation and the creation of both sideload and storeUpload msix files

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM