Python Forum

Full Version: unittest generates multiple files for each of my test case, how do I change to 1 file
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've build a framework using the data driven approach. Basically, a test case represents 1 file and each file can have several assertion points.
Currently unittest is creating a xml file for each testcase, what I want is to create 1 result file for all the test cases I run, instead of 1 for each file.

Is there a way to do this ?