How can I display the amount of time taken for each test executed by pytest?
I've investigated pytest-timeout, pytest-timeit, and pytest-benchmark. pytest-benchmark is closest, but requires wrapping every test manually.
The most pressing need is to figure out why testing under Py 3.x takes almost twice as long as Py 2.7. There are 231 top-level tests in the package I want to test (as identified by pytest), so wrapping all of these is not trivial.