I need to run nosetests on 2 packages separately. For instance:
nosetests --with-xunit --xunit-file=sample.xml test_sample.py
and
nosetests --with-xunit --xunit-file=sample1.xml test_sample1.py
Now, how can I combine sample.xml and sample1.xml files?
Is there any team for this? I need a combined test result file in xml so that I can use this file in jenkins configuration.
source
share