Printing test execution times and pinning down slow tests with py.test

前端 未结 2 1203
挽巷
挽巷 2020-12-23 20:14

I am running unit tests on a CI server using py.test. Tests use external resources fetched over network. Sometimes test runner takes too long, causing test runner to be abor

2条回答
  •  攒了一身酷
    2020-12-23 20:36

    I'm not sure this will solve your problem, but you can pass --durations=N to print the slowest N tests after the test suite finishes.

    Use --durations=0 to print all.

提交回复
热议问题