xunit jenkins plugin not seeing skipped mstests -
i set mstest skipped ignore attribute: [ignore] public void skipthistest() { now when @ trx see this: <resultsummary outcome="failed"> <counters total="6" executed="5" passed="2" failed="3" error="0" timeout="0" aborted="0" inconclusive="0" passedbutrunaborted="0" notrunnable="0" notexecuted="0" disconnected="0" warning="0" completed="0" inprogress="0" pending="0" /> <output> <stdout>test 'skipthistest' skipped in test run.</stdout> </output> </resultsummary> here see in junit report after xunit publishes it: <case> <duration>nan</duration> <classname></classname> <testname>skipthistest</testname> <skipped>false</skipped> <failedsince>0</failedsince> </...