Py.test aggregation results of multiple test runs

I am running multiple instances pytest.main()

, and after they are all complete, I want to quickly see errors in all runs without using all the individual reports. How can i do this?

Should I parse text reports or can I get py.test to return an object with denied data? (as far as I've seen it just returns an integer)

+3


source to share





All Articles