powershell - NUnit ConsoleRunner 3.7.0 place blank XML test result -


i'm upgrading nunit 2.6.4 latest 1 , have problem on jenkins.

we have kinda big suite of selenium tests (almost 1100) during full build of test results xmls're empty , build fails:

error: publisher 'publish xunit test result report' aborted due exception:  java.io.ioexception: remote file operation failed: hudson.util.ioexception2:  there problems during conversion junit reports: 

after log vm, found xmls're empty , thats why above error occur.

tests're fireup powershell script in loop

$arguments = `"tests.dll`" --test=`"$testcase`" --work=$work --result=nunit-result-$i.xml;format=nunit2 --framework=net-4.5 --noheader --timeout=1500000 --domain=multiple"  $process = $(start-process $nunit $arguments -passthru) 

when finish wait process end (wait-process)

i check test logs , executed.

any idea why empty xmls?

when run smaller batches (eq 100 tests) build finish success.


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -