Unittest presents only total time spent on running all tests but does not present time spent on each test separately.
How to add timing of each test when using unittest?
You can use pytest with --durations=0 and it will give you execution time for each test
--durations=0